Skip to content

Commit 8a05c19

Browse files
authored
in python, false should be False
1 parent 2c1b4f5 commit 8a05c19

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

samples/dnn/mobilenet_ssd_python.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
while True:
4242
# Capture frame-by-frame
4343
ret, frame = cap.read()
44-
blob = cv.dnn.blobFromImage(frame, inScaleFactor, (inWidth, inHeight), meanVal, false)
44+
blob = cv.dnn.blobFromImage(frame, inScaleFactor, (inWidth, inHeight), meanVal, False)
4545
net.setInput(blob)
4646
detections = net.forward()
4747

0 commit comments

Comments
 (0)