Matlab Error Message
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Hi
My algorithm is strangely not working. Please help I get the below error:
??? Undefined variable Best_Predicted_Frame_mov.
Error in ==> MotionEstimationV2_salesman at 99
imwrite((Best_Predicted_Frame_mov(1,c).cdata),filename,'jpg');
0 Kommentare
Antworten (3)
the cyclist
am 29 Jul. 2011
Sounds like the variable "Best_Predicted_Frame_mov" has not been defined at line 99 of "MotionEstimationV2_salesman". I suggest you breakpoint your code there to see what the workspace looks like.
0 Kommentare
James
am 29 Jul. 2011
2 Kommentare
the cyclist
am 29 Jul. 2011
It sounds like that variable has not yet been created. Can you trace back and understand why you thought it would be there, and why it isn't?
Walter Roberson
am 29 Jul. 2011
Before you first assign to Best_Predicted_Frame_mov add the statement
global Best_Predicted_Frame_mov
Then, just before you try to imwrite() it, again have the statement
global Best_Predicted_Frame_mov
If that solves the problem then either you could just leave it that way, or it would give us useful information towards tracking down why what you had was not working for you.
0 Kommentare
Siehe auch
Kategorien
Mehr zu Audio and Video Data finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!