gpt4 book ai didi

python - 树莓派 + 摄像头 + 步进电机 + Opencv

转载 作者:太空宇宙 更新时间:2023-11-03 23:07:49 26 4
gpt4 key购买 nike

我编写了一个程序,基本上使用步进电机 + a4988 驱动程序将托盘放在连接到 Raspberry Pi 的相机下方。代码将托盘带到起始位置,迈出一步,拍照并重复 10 次。然后托盘返回到起始位置。我应该得到托盘每个部分的 10 张照片以及托盘上的任何东西。

但是,我得到的是 7 张完全相同的照片,然后是 3 张不同的照片,我不知道为什么。

我认为相机拍摄照片的速度比托盘移动的速度快,但从代码中我看不出为什么会这样。

我使用 openCV 来获取照片,因为我计划在收到每张照片时对其进行分析。

谢谢!!

这是我的代码:

from time import sleep
import RPi.GPIO as GPIO
import cv2

cam = cv2.VideoCapture(0)

DIR = 20 # Direction GPIO Pin
STEP = 21 # Step GPIO Pin
CW = 1 # Clockwise Rotation
CCW = 0 # Counterclockwise Rotation
SPR = 200 # Steps per Revolution (360 / 1.8)

GPIO.setwarnings(False)
GPIO.setmode(GPIO.BCM)
GPIO.setup(DIR, GPIO.OUT)
GPIO.setup(STEP, GPIO.OUT)
GPIO.output(DIR, CW)

MODE = (14, 15, 18) # Microstep Resolution GPIO Pins
GPIO.setup(MODE, GPIO.OUT)
RESOLUTION = {'Full': (0, 0, 0),
'Half': (1, 0, 0),
'1/4': (0, 1, 0),
'1/8': (1, 1, 0),
'1/16': (1, 1, 1),}

GPIO.output(MODE, RESOLUTION['1/16'])
delay2 = 0.0208/32
GPIO.output(DIR, CCW)
for x in range (1500): # Brings Tray to level of first photo
GPIO.output(STEP, GPIO.HIGH)
sleep(delay2)
GPIO.output(STEP, GPIO.LOW)
sleep(delay2)
sleep(.5)
for a in range (0,9): # Begins 10 photos
for b in range (250): #Motor steps between photos
GPIO.output(STEP, GPIO.HIGH)
sleep(delay2)
GPIO.output(STEP, GPIO.LOW)
sleep(delay2)
sleep(.5)

ret, frame = cam.read() #Sets up cam for photo
cv2.imwrite("image"+str(a)+".jpg", frame) #Write photo to file
sleep(2)

GPIO.output(DIR, CW)
for x in range(3750): # Pushes Tray out to original starting position
GPIO.output(STEP, GPIO.HIGH)
sleep(delay2)
GPIO.output(STEP, GPIO.LOW)
sleep(delay2)
sleep(.5)

cam.release()
GPIO.cleanup()

最佳答案

感谢 Mark 和 Matt 解决了这个问题。感谢你的帮助。通过在每个电机步骤调用视频捕获然后每次释放它来解决。

代码如下:

for a in range(1,10):
cam=cv2.VideoCapture(0)
ret, frame = cam.read()
cv2.imwrite('iamge'+str(a)+"jpg", frame)
cam.release

……等等等等

所以对于每一步,相机都会被调用和释放,这似乎解决了这个问题

谢谢大家

关于python - 树莓派 + 摄像头 + 步进电机 + Opencv,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55550785/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com