You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jan 20, 2024. It is now read-only.
I was able to successfully run an old version of MaixPy3 on a generic IP camera (v831).
However, the new versions of the library (camera) seem to be strongly coupled to the need to have a display.
It would be interesting to have some parameter in cam.config(size, display=True), which would serve to activate or not the display.
from maix import camera
camera.config(size=(640, 480), display=False)
I was able to successfully run an old version of MaixPy3 on a generic IP camera (v831).
However, the new versions of the library (camera) seem to be strongly coupled to the need to have a display.
It would be interesting to have some parameter in
cam.config(size, display=True), which would serve to activate or not the display.