Не понимаю это SyntaxError: недопустимая цель для аннотации - PullRequest
0 голосов
/ 12 декабря 2018

У меня есть несколько простых if ... elif ... в моем python3.6 (и OpenCV 4.0), но независимо от того, что я делаю, я получаю странные сообщения об ошибках.

Мне нужно обрезать некоторыефото в соответствии с некоторыми ограничивающими рамками.

# the image to be cropped loads here:
tobecropped= cv2.imread(img)
images.append(tobecropped)
(imageheight, imagewidth) = tobecropped.shape[:2]

# sample bounding box:
y = 833 # center vertically
x = 183 # center horizontally
width = 172
height = 103

# calculation of cropping values adding 10% extra:
y1 = y-(height/2*1.1)
y2 = y+(height/2*1.1)
x1 = x-(width/2*1.1)
x2 = x+(width/2*1.1)

# return values to int:
y1 = int(y1)
y2 = int(y2)
x1 = int(x1)
x2 = int(x2)

# move the cropping inside the original image:
If (y1 < 0): y_movedown()
Elif (y2 > imageheight): y_moveup()
Elif (x1 < 0) : x_moveright()
Elif (x2 > imagewidth): x_moveleft()

# actually cropping the image:
cropped = tobecropped[y1:y2, x1:x2]
cv2.imshow("cropped", cropped)

# functions to move the complete bounding box inside the image boundaries:
def y_movedown():
    y2=y2-y1
    y1=0
    print("moved down!")

def y_moveup():
    y1=y1-(y2-imageheight)
    y2=imageheight
    print("moved up!")

def x_moveright():
    x2=x2-x1
    x1=0
    print("moved right!")

def x_moveleft():
    x1=x1-(x2-imagewidth)
    x2=imagewidth
    print("moved left!")

сообщение об ошибке выглядит так:

File "image_import2.py", line 121
   If (y1 < 0): y_movedown()
   ^
SyntaxError: illegal target for annotation

Кто-нибудь видит, что я здесь не так делаю?Не могу найти упоминаний о такой ошибке ...

1 Ответ

0 голосов
/ 12 декабря 2018

Посмотрите на эти строки:

If (y1 < 0): y_movedown()
Elif (y2 > imageheight): y_moveup()
Elif (x1 < 0) : x_moveright()
Elif (x2 > imagewidth): x_moveleft()

If, Elif являются названными словами, когда они должны быть в нижнем регистре, так что:

if (y1 < 0): y_movedown()
elif (y2 > imageheight): y_moveup()
elif (x1 < 0) : x_moveright()
elif (x2 > imagewidth): x_moveleft()

Вместо.

...