How can I implement image processing toolbox functions (like 'imfindcircles') in Simulink to process real-time video frames?
조회 수: 5 (최근 30일)
이전 댓글 표시
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
답변 (1개)
Rahul punk
2019년 2월 15일
https://www.mathworks.com/matlabcentral/fileexchange/70220-rahulpunk?s_tid=prof_contriblnk
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Computer Vision with Simulink에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!