mirror of
https://github.com/openmv/openmv.git
synced 2025-11-04 14:49:50 +08:00
OpenMV固件源码
*Changed subimg to copy. *Made blend work the same way as all our other double image argument functions. *Changed bilt to replace (the name of bilt is way to esoteric). Replace gives you the basic assignment op. * Removed scale/sacled. I removed this code because we don't want to encourage people to scale things and allocate additional images in memory. I decided to keep copy() for completeness sakes... but, I don't see anyone using it. (By completeness sakes I mean that we now have the assignment op, copy op, etc. for an image object). * Removed rainbow. This feature is built into the FIR module now. Moving on, compress needs to be renamed to compressed and a new compress function will need to be added. The compress() function will compress the image (or frame buffer, etc) and not return a new object. The compressed() function will return a new object and not compress the original image. The compress function will make it easier for users to compress images once they are done working on them before sending the image some where. I don't see compressed() being used much then after adding the compress() function. Since the compress() function won't use up heap space this makes it very good. |
||
|---|---|---|
| design | ||
| eagle | ||
| firmware | ||
| imgs | ||
| scad | ||
| src | ||
| udev | ||
| usr | ||
| util | ||
| .gitignore | ||
| .gitmodules | ||
| CHANGELOG.md | ||
| LICENSE | ||
| README.md | ||
###OpenMV (Open Machine Vision Module)
OpenMV is an open-source tiny machine vision module based on the STM32F4xx ARM Cortex-M4 MCU and the OV2640 JPEG sensor.
OpenMV is programmable in Python3 (MicroPython) and capable of doing face detection and tracking, keypoint extraction, color tracking and more..The board has USB, a uSD connector and an expansion header (USART/SPI/I2C).
A Python IDE with syntax highlighting is available for the camera, it can run/upload scripts to the camera, view the framebuffer and update the firmware.