mirror of
https://gitcode.com/gh_mirrors/es/esp32-opencv.git
synced 2025-08-06 18:24:38 +08:00
12 lines
560 B
Markdown
12 lines
560 B
Markdown
# Esp32 opencv example
|
|
|
|
This example uses opencv library on the Esp32. Only the modules `core`, `imgproc` and `imgcodecs` of opencv are compiled.
|
|
|
|
|
|
|
|
The example tests:
|
|
|
|
* some matrices initialization, then basic image processing functions on these matrices.
|
|
* Reading a 470x400 pixels PNG image from the SPIFFS filesystem of the Esp32. For now, only PNG files are supported.
|
|
* Perform grayscale conversion and then binary threshold on the image, then write it on the spi flash
|
|
* Perform a canny edges detection on the image and the write it on the spi flash |