2018AICity_TeamUW icon indicating copy to clipboard operation
2018AICity_TeamUW copied to clipboard

sequence naming of images in TC_Tracker

Open Ali-Parsa opened this issue 4 years ago • 1 comments

Thank you again for your interesting code. How should be the sequence naming of images in the img_folder for TC_Tracker? I have the following error in my implementation. What is the problem?

Index exceeds the number of array elements (0).

Error in TC_tracker (line 8) temp_img = imread([img_folder,'',img_list(1).name]);

Error in demo (line 30) TC_tracker(img_path,det_path,ROI_path,param,img_save_path,seq_name,...

Ali-Parsa avatar May 02 '20 19:05 Ali-Parsa

It seems the length of the array is 0, which means you fed an empty directory. The images should be named as '%06.jpg' % frame_index.

zhengthomastang avatar May 02 '20 19:05 zhengthomastang