Beispiel #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;
 }
Beispiel #2
0
        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);
        }
Beispiel #3
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);
        }
Beispiel #4
0
        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;
        }