Posts by Gledson Leal • 21 points
2 posts
-
0
votes1
answer245
viewsQ: How to adjust focus using Opencv and Python?
Hello. I’m building a robot that moves through acquired images. However, when it is in motion, it gets lost due to the image being out of focus. I ask if there is any configuration within Opencv…
-
2
votes1
answer721
viewsQ: Transform int to python byte
Hello, Need to transform a value int to byte. I tried to do it this way: import serial ser = serial.Serial('/dev/ttyACM0', 9600) angulo = 90 ser.write(angulo) #while 1 : print ser.readline() I need…