Arduino
Arduino copied to clipboard
How to get OV2640_2MP_PLUS to return a BMP image instead of JPEG
I am on an Arduino Leonardo r3. I am able to get the image to display in jpeg using the ArduCAM_Mini_2MP_Plus_VideoStreaming project. However, I would like to get a bitmap version of it since it is easier to work with in image processing.
The sketch you referenced demonstrates the various features of the ArduCAM, but the following two lines set the camera format to bitmap:
myCAM.set_format(BMP); myCAM.InitCAM();
If your application is for bitmap only, these should appear in the sketch setup().