Creating app with C++ instead of C

Hi. I’m kinda new to this field with the embeded programming. I’d like to know if it is feasible to port my C++ software with dependecy ( only opencv ) to the flipper. I could rewrite it in C, but I don’t really know how to solve the opencv. If it is feasible, can you send something to start with ( like a youtube video or a blog post )

Thank you in advance.

1 Like

I don’t see a practical path. C++ is an extended version of C. It uses concepts like objects that aren’t supported in C. Do you have any alternative to OpenCV?

I don’t think OpenCV will work properly on a Flipper MCU. But if you have a way to communicate with an external node, you could use the C API: OpenCV: C API

For testing: Until Version 1.0, OpenCV was written in C.
It has less functions, but maybe it is feature-rich enough for a POC, if the project will work.

1 Like

I didn’t see mention of that. The old version sounds like a valid option assuming it has the needed features.