How can I implement image processing toolbox functions (like 'imfindcircles') in Simulink to process real-time video frames?
Afficher commentaires plus anciens
I tried it with a Matlab function block:
function centers = fcn(image)
%#codegen
coder.extrinsic('imfindcirlces')
centers = imfindcircles(image,30);
and got the Coder Error:
The function 'imfindcircles' is not supported for standalone code generation. See the documentation for coder.extrinsic to learn how you can use this function in simulation.
Thank you very much in advance and merry christmas and a happy new year.
Réponses (1)
Rahul punk
le 15 Fév 2019
0 votes
https://www.mathworks.com/matlabcentral/fileexchange/70220-rahulpunk?s_tid=prof_contriblnk
Catégories
En savoir plus sur Video Formats and Interfaces dans Centre d'aide et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!