not enough input Arguments
조회 수: 1 (최근 30일)
이전 댓글 표시
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/612320/image.jpeg)
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!