Second commit of ROI method, not sure if the first one worked

This commit is contained in:
2022-08-27 21:30:50 +02:00
parent a75fba93fd
commit c532f9ad2d

View File

@@ -92,6 +92,7 @@ class ROI:
@property
def rows(self):
return slice(self.bottom, self.top)
@property
def LeftRightBottomTop(self):
return [self.left, self.right, self.bottom, self.top]