示例#1
0
 public object Clone()
 {
     detection_data dat = new detection_data();
     dat.c = c;
     dat.intvl = intvl;
     dat.octv = octv;
     dat.r = r;
     dat.scl_octv = scl_octv;
     dat.subintvl = subintvl;
     return dat;
 }
示例#2
0
文件: sift.cs 项目: Lionel1204/MyCode
        Feature new_feature()
        {
            Feature feat = new Feature();
            detection_data ddata = new detection_data();

            feat.feature_data = ddata;
            feat.type = feature_type.FEATURE_LOWE;

            return feat;
        }