How can I use image processing functions such as imfindcircles in a simulink matlab function block? I get an error when I use this function.
Ältere Kommentare anzeigen
here is the function:
if true
% code
end
function y = fcn(u)
I1=u;
I2=imadjust(I1,[0.1 0.3],[0 1]);
[centers, radii] = imfindcircles(I2,[10 30],'ObjectPolarity','dark', 'Sensitivity',0.85);
diameter=radii.*2;
y = diameter;
here is the simulink 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.
Function 'MATLAB Function' (#31.59.147), line 4, column 1: "[centers, radii] = imfindcircles(I2,[10 30],'ObjectPolarity','dark', 'Sensitivit" Launch diagnostic report. Component: MATLAB Function | Category: Coder error
Antworten (2)
Steven Lord
am 19 Aug. 2015
0 Stimmen
Did you do as the Simulink error suggested and take a look at the documentation for coder.extrinsic?
3 Kommentare
Jessica du Toit
am 20 Aug. 2015
Steven Lord
am 20 Aug. 2015
Taking a closer look at the tags, you're trying to generate code for a Raspberry Pi from this Simulink model? I'm not sure that will work; from the error message, Simulink doesn't know how to create the code to run on that processor for this function written as MATLAB code.
I'm not really familiar with Simulink code generation, that's just my assessment based on the text of the error, so take it with a grain of salt (and perhaps contact Technical Support to see if there is an alternative function you can use that is supported for code generation.)
Jessica du Toit
am 20 Aug. 2015
Sean de Wolski
am 20 Aug. 2015
0 Stimmen
You could also use an interpreted matlab function block so that Simulink doesn't generate code for it. You'll take a performance hit but it will run.
1 Kommentar
Jessica du Toit
am 20 Aug. 2015
Kategorien
Mehr zu Simulink Functions finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!