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

7 次查看(过去 30 天)
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.

采纳的回答

Walter Roberson
Walter Roberson 2017-9-27

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 MATLAB Coder 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by