I am doing a image processing project(small one). I am coding algorithms in matlab and testing them in MCR. But my idea is to port this algorithm to my android device build a nice application and implement my concept on the host device, so that the application will be portable and can be used anywhere.
I am doing a image processing project(small one). I am coding algorithms in matlab
Share
I think you need to be a bit more specific as there are some MATLAB products that would let you convert a subset of MATLAB into C code that you could later use.
For instance the MATLAB coder which:
However, be aware that not every function available in the Image Processing Toolbox can be used in the MATLAB coder:
So you would need to build your algorithms using that subset in order for you to be able to generate C or C++ code from it.
Hope this helps.