From ec0f9011530ee3a95d8536a4c2375698a63f6231 Mon Sep 17 00:00:00 2001 From: Renato Florentino Garcia Date: Tue, 21 Jul 2015 14:54:06 -0300 Subject: [PATCH] Remove an unneeded semicolon. --- samples/python2/camshift.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/samples/python2/camshift.py b/samples/python2/camshift.py index 6e94020..72c7908 100755 --- a/samples/python2/camshift.py +++ b/samples/python2/camshift.py @@ -83,7 +83,7 @@ class App(object): hsv_roi = hsv[y0:y1, x0:x1] mask_roi = mask[y0:y1, x0:x1] hist = cv2.calcHist( [hsv_roi], [0], mask_roi, [16], [0, 180] ) - cv2.normalize(hist, hist, 0, 255, cv2.NORM_MINMAX); + cv2.normalize(hist, hist, 0, 255, cv2.NORM_MINMAX) self.hist = hist.reshape(-1) self.show_hist() -- 2.7.4