Esempio n. 1
0
 public PeaksFeature(HogsMaker sh, FeatureApplicationScheme windower)
 {
     SharedHogs = sh;
     Windower = windower;
 }
Esempio n. 2
0
 public AverageRGBFeature(FeatureApplicationScheme windower)
 {
     Windower = windower;
 }
Esempio n. 3
0
 public MomentFeature(HogsMaker sh, FeatureApplicationScheme windower, int moment)
 {
     SharedHogs = sh;
     Windower = windower;
     Moment = moment;
 }
Esempio n. 4
0
 public RightAngleFeature(HogsMaker sh, FeatureApplicationScheme windower, int num_peaks)
 {
     SharedHogs = sh;
     Windower = windower;
     NumPeaks = num_peaks;
 }