formal specification:In computer science, formal specifications are mathematically based techniques whose purpose are to help with the implementation ...
分类:
编程语言 时间:
2014-12-02 22:23:30
阅读次数:
158
Feature Detection and DescriptionGeneral Libraries:VLFeat– Implementation of various feature descriptors (including SIFT, HOG, and LBP) and covariant ...
分类:
其他好文 时间:
2014-12-02 22:10:05
阅读次数:
327
Attributes and Semantic FeaturesRelative Attributes– Modified implementation of RankSVM to train Relative Attributes (ICCV 2011).Object Bank– Implemen...
分类:
其他好文 时间:
2014-12-02 22:08:02
阅读次数:
320
在我们创建一个新的.h 和 .m文件时,我们会看到.h:@implementation TestViewController- (void)viewDidLoad { [super viewDidLoad]; // Do any additional setup after loadin...
分类:
其他好文 时间:
2014-12-02 20:42:38
阅读次数:
122
#import
@interface UILabel (dynamicSize)
-(float)resizeToFit;
-(float)expectedHeight;
@end
#import "UILabel+dynamicSize.h"
@implementation UILabel (dynamicSize)
-(float)resizeToFit{
float ...
分类:
其他好文 时间:
2014-12-02 19:15:19
阅读次数:
186
Spring API Doc的说明如下: ?? RowMapper implementation that converts a row into a new instance of the specified mapped target class. The mapped target class must be a top-level class and it must...
分类:
数据库 时间:
2014-12-01 19:34:29
阅读次数:
196
直接上代买吧:
@implementation ViewController
- (void)viewDidLoad {
a = [NSArray arrayWithObjects:@"ant",@"alpaca",@"albatross", nil];
b = [NSArray arrayWithObjects:@"badger",@"bat",@"bear", nil];
...
分类:
移动开发 时间:
2014-12-01 17:36:24
阅读次数:
148
顾名思义,boost::shared_ptr是可以共享所有权的智能指针,首先让我们通过一个例子看看它的基本用法:
#include
#include
#include
class implementation
{
public:
~implementation() { std::cout <<"destroying implementation\n"; }
void d...
分类:
编程语言 时间:
2014-12-01 16:00:11
阅读次数:
163
function [P, L, U] = plu(A)
% The implementation of PLU Factorization
% L is lower triangular and U is upper triangular
% P is permutation matrix
% Author: Zhenlin Du(Johnsondu)
% Email: qlduzhlin@...
分类:
其他好文 时间:
2014-11-30 23:19:21
阅读次数:
297
function [Q,R] = gram_schmidt_qr(A)
% Formation: A = QR
% The implementation of QR Factorization(classical Gram-Schmidt method)
% Q is orthonormal basis for R(A)
% R is an upper-triangular matrix wit...
分类:
其他好文 时间:
2014-11-30 23:18:22
阅读次数:
286