필터 지우기
필터 지우기

need help about this error

조회 수: 1 (최근 30일)
TUSHAR MURATKAR
TUSHAR MURATKAR 2017년 7월 22일
댓글: James Tursa 2017년 7월 22일
function [ output_args ] = detectCopyMove( im,b ); in this i am getting error not enough input arguments. how to over come it.

답변 (1개)

James Tursa
James Tursa 2017년 7월 22일
The function detectCopyMove apparently takes more than two input arguments. Look at this function to determine what the required inputs are.
  댓글 수: 2
TUSHAR MURATKAR
TUSHAR MURATKAR 2017년 7월 22일
ok.....but how to give more than 2 input arguments. i mean what has to be typed??
James Tursa
James Tursa 2017년 7월 22일
Sorry, I misread your question. It looks like the function detectCopyMove takes two arguments per your post, but you are passing in only 0 or 1 argument. E.g.,
detectCopyMove; % <-- will generate the error
detectCopyMove(x); % <-- will generate the error
Pushing the green arrow run button in the editor is the equivalent of calling the function with no input arguments, and will also generate the error.
So, how are you calling the function? I.e., what are you doing that is calling the function? Do you have code that is calling it? Are you trying to call it from the command line? Or ...?

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Image Processing Toolbox에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by