Matlab coder cannot convert 'imfilter' to C/C++
7 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Vatana An
le 27 Sep 2017
Réponse apportée : Walter Roberson
le 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 commentaires
Réponse acceptée
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur MATLAB Coder dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!