MemoryError: Out of fast Frame Buffer Stack Memory! Please reduce the resolution of the image you are running this algorithm on to bypass this issue!
OpenMV v4.4.2; MicroPython v1.19-omv-r6; OPENMV3-STM32F765
Type "help()" for more information.
F
fxiw
@fxiw
0
声望
7
楼层
567
资料浏览
0
粉丝
0
关注
fxiw 发布的帖子
-
训练自己的模型当运行时代码为何会报如下错误?
-
为什么回出现以下错误?
wifi连接例程
这个例子展示了如何将你的OpenMV Cam与WiFi扩展连接到网络。
import network
SSID='lab-319' # Network SSID
KEY='happydog' # Network key初始化wlan模块并连接到网络
print("Trying to connect... (may take a while)...")
wlan = network.WINC()
wlan.connect(SSID, key=KEY, security=wlan.MODE_STA)#我们现在通过DHCP应该有一个有效的IP
print(wlan.ifconfig())
错误提示:OSError: could not connect to ssid=lab-319, sec=0, key=happydog