I am trying to use the edge(I,'sobel') method inside a Matlab function block in Simulink(MATLAB 2013a). When I try to compile, I get the error "The function 'edge' is not supported for standalone code generation". I know there is an edge detector block , but I want to call the function with in the Matlab function block. How to get around this.

有帮助吗?

解决方案

If you have Computer Vision System toolbox you can use vision.EdgeDetector System object. If you have edge detector block then you already have this toolbox. This object supports code generation. The default edge detector method it uses is 'Sobel'. When you generate code for this object remember to set all properties using constructor arguments. You may not be able to change properties after construction when generating code.

edgeObj = vision.EdgeDetector;
edges = step(edgeObj, inputImage);

其他提示

You should be able to declare the function as an extrinsic:

coder.extrinsic('edge');

then it should work for simulation but not code generation.

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top