Is it possible to do image processing on a microcontroller unit using c++ and raw image from a camera sensor as input? Useless sentence because quality standards.
Asked
Active
Viewed 175 times
0
-
Can you please rephrase that? – Stepan May 19 '16 at 14:24
-
What do you mean by this: "Useless sentence because quality standards." Please provide more information on your embedded system and the image... – Piglet May 19 '16 at 14:28
-
I want to compress images using a microcntroller programmed in c++. Does the language permit it? – user6710 May 19 '16 at 14:29
-
1you can do whatever you want with c++ question is if you have enough memory for that and if your mcu is fast enough to do the job in the required time. – Piglet May 19 '16 at 14:34
-
Now that's another problem. – user6710 May 19 '16 at 14:36
-
you can try RLE compression (like PCX) that does not need to have whole image loaded in memory and require just few variables and is fast. The main problem would be color quantization but you can use [dithering](http://stackoverflow.com/a/36820654/2521214) if you do not need lossless compression. – Spektre May 20 '16 at 06:28