not enough input Arguments
1 回表示 (過去 30 日間)
古いコメントを表示
What should i do about this error "Not enough input arguments".Please help
1 件のコメント
Walter Roberson
2021 年 5 月 9 日
The code in the error message does not appear in your posted code.
The line number in the error message is after the last line of posted code.
採用された回答
Jonas
2021 年 5 月 9 日
you tried to call your function odDetect without an input argument although you need one. you have give the inage to the function, i.e. you have to load it as a variable / create it somehow and give that variable to the function
4 件のコメント
Walter Roberson
2021 年 5 月 9 日
編集済み: Walter Roberson
2021 年 5 月 9 日
example
img = imread('flamingos.jpg');
out = odDectect(img) ;
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Environment and Settings についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!