特征点检测一定要在sensor.set_framesize(sensor.VGA) 的条件下吗?
-
特征点检测一定要在sensor.set_framesize(sensor.VGA) sensor.set_windowing((320, 240))的条件下吗?
改成sensor.set_framesize(sensor.QQVGA)不行吗?
-
可以直接QQVGA,图像的距离不一样而已。
-
import sensor, time, image # Reset sensor sensor.reset() # Sensor settings sensor.set_contrast(3) sensor.set_gainceiling(16) sensor.set_framesize(sensor.QQVGA) #sensor.set_windowing((320, 240)) sensor.set_pixformat(sensor.GRAYSCALE)
但是这样子它都不画出特征点了
-
如果涉及代码,需要全部代码文本,否则我没办法运行。