MATLAB: How to deal unsupporeted function in matlab?

Computer Vision Toolboxi am newone with matlab codermatlab coder

… imshow inseershape imopen

Best Answer

I assume from your tag (which ideally should just be a list of simple tags!) you are trying to use Matlab Coder.
What would you expect Matlab Coder to do with something like imshow though?
It requires graphics handling which is not part of porting code into C++ as far as I am aware. Matlab Coder is generally used for converting algorithmic code to C or C++ in order to run faster.
Matlab Compiler would allow you to build a standalone executable of your Matlab program if that is what you are wanting to do.