OpenMV Cam Information
omv — OpenMV Cam Information
The omv module is used to get OpenMV Cam information.
Functions
omv.version_major
omv.version_major() -> intReturns the major version number (int).
omv.version_minor
omv.version_minor() -> intReturns the minor version number (int).
omv.version_patch
omv.version_patch() -> intReturns the patch version number (int).
omv.version_string
omv.version_string() -> strReturns the version string (e.g. “2.8.0”).
omv.arch
omv.arch() -> strReturns the board architecture string. This string is really just meant for OpenMV IDE but you can get it with this function.
omv.board_type
omv.board_type() -> strReturns the board type string. This string is really just meant for OpenMV IDE but you can get it with this function.
omv.board_id
omv.board_id() -> strReturns the board id string. This string is really just meant for OpenMV IDE but you can get it with this function.
omv.disable_fb
omv.disable_fb(disable: bool | None = None) -> boolWhen disable is set to True the OpenMV Cam will no longer jpeg compress images and stream
them to OpenMV IDE. The IDE may still poll for images unless Disable FB is checked in OpenMV
IDE. You may wish to disable the frame buffer when streaming images over to another system while
debugging you script with OpenMV IDE. If no arguments are passed this function will return
True if the frame buffer is disabled and False if not.
Note
This is a different flag than the Disable FB button in OpenMV IDE.
