Matlab coder cannot convert 'imfilter' to C/C++

7 views (last 30 days)
With Image Processing Toolbox in my Matlab, I can program with 'imfilter' keyword. My example code is as below:
function output = imfilterHaar(BoolChoice)
J = ones(32,46);
F = ones(29,30);
if(BoolChoice)
oput = imfilter(J,F,'same', 'circular')%output is 32x46 matrix
else
oput = ones(32,46);
end
output=oput(:);
end
I tried to use Matlab Coder to convert the code to C without success. Below is the details:
??? The function 'imfilter' is not supported for standalone code generation. See the documentation for coder.extrinsic to learn how you can use this function in simulation.
My question is, Is there a comprehensive list of Matlab keywords that are supported/unsupported by Matlab Coder? My Matlab version is MATLAB R2013a.

Accepted Answer

Walter Roberson
Walter Roberson on 27 Sep 2017

More Answers (0)

Categories

Find more on MATLAB Coder in Help Center and File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!