[Tutor] Error :SyntaxError: 'break' outside loop

Zoya Tavakkoli zoyatvkl at gmail.com
Sun Aug 18 19:18:06 CEST 2013


Hi everyone

I write this code for color segmentation ,but after Run I recived this
error:

SyntaxError: 'break' outside loop

I could not resolve that ,could you please help me?

python.2.7.5

import cv2
import numpy as np

cap = cv2.VideoCapture("C:\Users\Zohreh\Desktop\Abdomen.MST")

while (1):
 _, frame = cap.read()
hsv = cv2.cvtColor(frame, cv2.COLOR_BGR2HSV)

lower_blue = np.array([110,50,50])
upper_blue = np.array([130,255,255])

mask = cv2.inRange(hsv, lower_blue, upper_blue)
res = cv2.bitwise_and(frame,frame, mask= mask)

cv2.imshow("frame",frame)
cv2.imshow("mask",mask)
cv2.imshow("res",res)


k = cv2.waitkey(5) & 0xFF
if k == 27:

 break


cv2.destroyWindow()
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.python.org/pipermail/tutor/attachments/20130818/50e6f3ae/attachment.html>


More information about the Tutor mailing list