필터 지우기
필터 지우기

"Undefined variable" error even though variable is defined

조회 수: 17 (최근 30일)
LaraS
LaraS 2024년 2월 22일
답변: Steven Lord 2024년 2월 23일
I'm using part of a code I borrowed from @imageanalyst where I'm trying to run through frames of a video to look at how the intensity changes over time. I'd like to perform a background subtraction with the code below
if frame1 == 1
Background1 = thisFrame1;
else
for t=1:frame1
% Change background slightly at each frame
Background1 = (1-alpha1)* thisFrame1 + alpha1 * Background1;
end
end
I get an error stating:
"Unrecognized function or variable 'Background1'.
Background1 = (1-alpha1)* thisFrame1 + alpha1 * Background1;"
even though I have the function defined. when I run the same line of code with a different file, it works fine, even though they're the same file type. any idea as to why this is happening? thanks!
  댓글 수: 1
Stephen23
Stephen23 2024년 2월 22일
편집: Stephen23 2024년 2월 22일
""Undefined variable" error even though variable is defined"
But is it really defined? On the first loop iteration, what value does Background1 have?

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

채택된 답변

Steven Lord
Steven Lord 2024년 2월 23일
I'm guessing that you want to initialize Background1 when t is equal to 1 and to use the formula to update Background1 when t is greater than 1. In that case:
for t=1:frame1
if t == 1
Background1 = thisFrame1;
else
% Change background slightly at each frame
Background1 = (1-alpha1)* thisFrame1 + alpha1 * Background1;
end
end
Except that when t is 2, Background1 will be (1-alpha1)*thisFrame1 + alpha1*thisFrame1 = thisFrame1 (assuming there's no code later in the for loop after the if / else block that changes Background1. So perhaps if you describe in more detail what you want to do we can suggest some modifications to your code to achieve your goal.

추가 답변 (1개)

Walter Roberson
Walter Roberson 2024년 2월 23일
if frame1 == 1
Background1 = thisFrame1;
else
This does not define Background1 if frame1 ~= 1
  댓글 수: 4
LaraS
LaraS 2024년 2월 23일
편집: LaraS 2024년 2월 23일
I actually tried correcting that while debugging (after posting this), but that didn't seem to help. Essentially what I'm trying to do is have the code update and adapt the background to each frame while it's running. It's really odd because it was running fine before when I was only running one video file. But I'm trying to update the script to run multiple files but it just throws this error about the undefined function now
DGM
DGM 2024년 2월 23일
Well without knowing what the code or process is, there really isn't much I can suggest.

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

카테고리

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