关于识别物块
-
各位大神大家好,我在使用识别颜色的时候遇到了一点问题:我想实现检测到的物体为竖直的时候发送信号,请问关于弧度的语句该怎么写呢?是不是if(rotation()==0)
.。。。。。。 print(123)呢,麻烦大家解答一下!!
-
你应该是没搞懂python 的 类 对象 方法,这三个概念。
blob.rotation()
-
我的基础识别程序是这个:
while(True): clock.tick() img = sensor.snapshot() for blob in img.find_blobs([thresholds[threshold_index]], pixels_threshold=200, area_threshold=200, merge=True): img.draw_rectangle(blob.rect()) img.draw_cross(blob.cx(), blob.cy())
-
-
你应该学一下python的语法,尤其是面向对象编程的思路。
-
好的,辛苦您了,我会多看看语法相关的资料的。