diff --git a/ocv_drawline.py b/ocv_drawline.py index 079b767..b77b75f 100644 --- a/ocv_drawline.py +++ b/ocv_drawline.py @@ -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 = []