Add a small code to fix an error relate to pose_cls_dataset_convert.py when some times this condition while len(pose_sequences[object_id]) - frame_start >= sequence_length_min: was not met and the code add an extra None array to data_array. This generate a problem in the E2E inference in Pose Classification.
if data_array is not None:
data_arrays.append(data_array)
The other small code I added was in plot_e2e_inference.py. I just add this to draw the bbox without the presence of the variable "bbox" in the files:
Add a small code to fix an error relate to pose_cls_dataset_convert.py when some times this condition
while len(pose_sequences[object_id]) - frame_start >= sequence_length_min:
was not met and the code add an extra None array todata_array
. This generate a problem in the E2E inference in Pose Classification.The other small code I added was in
plot_e2e_inference.py
. I just add this to draw the bbox without the presence of the variable "bbox" in the files: