简体   繁体   中英

attributeeeror: opencv python on raspberry pi

When I try to run my code on python shell I'm getting following: Attributeerror:'picamera' object has no attribute 'capature' please help

 import time
 import picamera

with picamera.PiCamera() as camera:
camera.resolution = (1024, 768)
camera.start_preview()
# Camera warm-up time
time.sleep(2)
camera.capture('foo.jpg')

In the recipe from the picamera website, line 5 thru 9 are indented as they are part of the python 'with' statement.

Suggest you check the code is indented and correct. Your error message has a misspelling.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM