How can I implement image processing toolbox functions (like 'imfindcircles') in Simulink to process real-time video frames?
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
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.
0 Kommentare
Antworten (1)
Rahul punk
am 15 Feb. 2019
https://www.mathworks.com/matlabcentral/fileexchange/70220-rahulpunk?s_tid=prof_contriblnk
0 Kommentare
Siehe auch
Kategorien
Mehr zu Computer Vision with Simulink finden Sie in Help Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!