Ask Your Question
0

Error :SyntaxError: 'break' outside loop

asked Aug 18 '13

Zoya gravatar image

updated Aug 18 '13

Guanta gravatar image

python 2.7.5 opencv

after Run this code , i got :SyntaxError: 'break' outside loop

what is problem???

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()
Preview: (hide)

1 answer

Sort by » oldest newest most voted
2

answered Aug 18 '13

Guanta gravatar image

It tells you what is wrong: the break is outside the loop, you have to fix the indentation of your python code!

Preview: (hide)

Question Tools

Stats

Asked: Aug 18 '13

Seen: 2,120 times

Last updated: Aug 18 '13