我试过int(),round(),还是无法解决
l46w 发布的帖子
-
RE: openmv灰度图转彩色图问题
@kidswong999 kidswong999 因为我在一个程序中要实现多个功能,开始识别有颜色的东西然后转换成grayscale灰度图去模板匹配,然后又要变成RGB565去识别颜色,就这样切换
-
RE: 神经网络训练模型问题
Edge Impulse - OpenMV Image Classification Example
import sensor, image, time, os, tf, uos, gc
sensor.reset() # Reset and initialize the sensor.
sensor.set_pixformat(sensor.RGB565) # Set pixel format to RGB565 (or GRAYSCALE)
sensor.set_framesize(sensor.QVGA) # Set frame size to QVGA (320x240)
sensor.set_windowing((240, 240)) # Set 240x240 window.
sensor.skip_frames(time=2000) # Let the camera adjust.net = None
labels = Nonetry:
# Load built in model
labels, net = tf.load_builtin_model('trained')
except Exception as e:
raise Exception(e)clock = time.clock()
while(True):
clock.tick()img = sensor.snapshot() # default settings just do one detection... change them to search the image... for obj in net.classify(img, min_scale=1.0, scale_mul=0.8, x_overlap=0.5, y_overlap=0.5): print("**********\nPredictions at [x=%d,y=%d,w=%d,h=%d]" % obj.rect()) img.draw_rectangle(obj.rect()) # This combines the labels and confidence values into a list of tuples predictions_list = list(zip(labels, obj.output())) for i in range(len(predictions_list)): print("%s = %f" % (predictions_list[i][0], predictions_list[i][1])) print(clock.fps(), "fps")
这是模型里跑出来的代码
-
想问一下更换摄像头模组的问题
现目前原装镜头根据项目所需有点大了,现想将镜头换小一点,用另一种z正点原子的的的ov5640模组,想请问一下,这个摄像头怎么和原装的搭一块,硬件方面要怎么设计
或者有帧率较高一点的,适配于openmv4 H7 Plus的摄像头推荐吗,非常感谢! -
RE: 为什么接收不到stm32发过来的信息
如果我要收32传过来的指令1在运行,可以这样写吗
while(True):
if (uart.read()==1):
print(1) -
为什么接收不到stm32发过来的信息
def uart_readline(): #串口接收数据
while(True):
if uart.any():
a = uart.readline()
return a
print(a)
break
while(True):
if (uart.read()==1):
print(1)
我想收到32发送过来的1之后就开始输出,但是32那边发过来的openmv收不到,我根据ascii码表格转换了一下,32那边发0x31,我这边还是收不到 -
RE: 有关定时器,外部中断的问题
我现在将多个函数放在一个程序里,实现多个功能,与32通信,但是,我想让32那边给我信息之后,我再运行我的程序,他那边每给我一个指令,我再一次运行我的下一个函数,这是要加外部中断吗,我对32不太懂, 不太了解这些,希望你能帮我解答一下,非常感谢!你能理解我的意思吗