Exemple #1
0
 def __init__(self):
     BaseFeature.__init__(self)
     self.width_incr = 3
     #always odd no.
     self.height_incr = 3
     #always odd no.
     self.weights = [-1, -1, -1, -1, 8]
     self.isRotated = False
Exemple #2
0
 def __init__(self):
     BaseFeature.__init__(self)
     self.width_incr = 1
     self.height_incr = 3
     self.weights = [-1, 2, -1]
     self.isRotated = False
Exemple #3
0
 def __init__(self):
     BaseFeature.__init__(self)
     self.width_incr=3;#always odd no.
     self.height_incr=3;#always odd no.
     self.weights=[-1,-1,-1,-1,8];
     self.isRotated=False;
Exemple #4
0
 def __init__(self):
     BaseFeature.__init__(self)
     self.width_incr=1;
     self.height_incr=3;
     self.weights=[-1,2,-1]
     self.isRotated=False;
Exemple #5
0
 def __init__(self):
     BaseFeature.__init__(self);
     self.width_incr=4;
     self.height_incr=1;
     self.weights=[-1,1,-1];
     self.isRotated=False;