Matlab coder cannot convert 'imfilter' to C/C++
7 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Vatana An
am 27 Sep. 2017
Beantwortet: Walter Roberson
am 27 Sep. 2017
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.
0 Kommentare
Akzeptierte Antwort
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu MATLAB Coder finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!