Arduino icon indicating copy to clipboard operation
Arduino copied to clipboard

How to get OV2640_2MP_PLUS to return a BMP image instead of JPEG

Open adamxkabbara opened this issue 4 years ago • 1 comments

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.

adamxkabbara avatar Dec 07 '20 03:12 adamxkabbara

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().

BillyBee123 avatar Feb 15 '21 00:02 BillyBee123