我想将此 MATLAB 代码转换为 c++
function [ c ] = main()
%#codegen
coder.inline('never');
c = imread('focus.jpg');
但它给了我这个error : The function 'imread' is not supported for standalone code generation. See the documentation for coder.extrinsic
??!!
我想将此 MATLAB 代码转换为 c++
function [ c ] = main()
%#codegen
coder.inline('never');
c = imread('focus.jpg');
但它给了我这个error : The function 'imread' is not supported for standalone code generation. See the documentation for coder.extrinsic
??!!