2018AICity_TeamUW
2018AICity_TeamUW copied to clipboard
sequence naming of images in TC_Tracker
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,...
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
.