diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/argaze/AreaOfInterest/AOIFeatures.py | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/argaze/AreaOfInterest/AOIFeatures.py b/src/argaze/AreaOfInterest/AOIFeatures.py index 1a439eb..9ab22d3 100644 --- a/src/argaze/AreaOfInterest/AOIFeatures.py +++ b/src/argaze/AreaOfInterest/AOIFeatures.py @@ -263,11 +263,6 @@ class AreaOfInterest(numpy.ndarray): for A, B in zip(pixels, pixels[1:]): cv2.line(image, A, B, color, border_size) - # Draw center - center_pixel = numpy.rint(self.center).astype(int) - cv2.circle(image, center_pixel, 1, color, -1) - - class AOIScene(): """Define AOI scene as a dictionary of AOI.""" |