如何在python中调用或启动或停止处理代码

时间:2019-02-03 14:56:04

标签: python-2.7 processing raspberry-pi3

我正在用python 2.7编写我的基本代码的代码,该代码有2种状态,一种状态是使用haar级联方法进行火情检测,其中摄像头借助伺服电机自动旋转,并通过键盘的“键”切换到手动模式用于控制马达定位相机的模式。我已经准备了可以满足要求的预编写处理代码。所以我想知道如何在python中调用此处理代码。 PS。使用处理代码,因为用python编写代码时会产生巨大的串行通信延迟。大约1.5秒

if state:
    ip()
if not state:
    cv2.imshow('img',img)
    processing_code()

k=cv2.waitKey(30) & 0xff
if k==ord('s'):
    state = not state
elif k==27:
    break

ip()函数包含自动图像检测。 我想要的是processing_code()的语法,其中将执行在处理中编写的特定代码。 谢谢!

0 个答案:

没有答案