Example #1
0
 def weighted_moments(self):
     return _moments.central_moments(self._intensity_image_double, 0, 0, 3)
Example #2
0
 def moments(self):
     return _moments.central_moments(self._image_double, 0, 0, 3)
Example #3
0
 def weighted_central_moments(self):
     row, col = self.weighted_local_centroid
     return _moments.central_moments(self._intensity_image_double, row, col,
                                     3)
Example #4
0
 def central_moments(self):
     row, col = self.local_centroid
     return _moments.central_moments(self._image_double, row, col, 3)
Example #5
0
 def weighted_moments(self):
     return _moments.central_moments(self._intensity_image_double, 0, 0, 3)
Example #6
0
 def weighted_central_moments(self):
     row, col = self.weighted_local_centroid
     return _moments.central_moments(self._intensity_image_double,
                                     row, col, 3)
Example #7
0
 def moments(self):
     return _moments.central_moments(self._image_double, 0, 0, 3)
Example #8
0
 def central_moments(self):
     row, col = self.local_centroid
     return _moments.central_moments(self._image_double, row, col, 3)