fixed typo

This commit is contained in:
2024-06-30 11:52:09 +02:00
parent 7e4f0ab6dc
commit dbedea3afd
+1 -1
View File
@@ -25,7 +25,7 @@ class DrawLineWidget(object):
cv2.line(self.work, self.image_coordinates[0], (x, y), (36, 255, 12), 2)
cv2.imshow("image", self.work)
# Record ending (x,y) coordintes on left mouse bottom release
# Record ending (x,y) coordinates on left mouse bottom release
elif event == cv2.EVENT_LBUTTONUP:
self.clone = self.work.copy()
self.image_coordinates = []