Open alejandrods opened 4 years ago
Hi,
I think there is a mistake in the order of the arguments in the main function of vbb2voc.py file. In the main function you call the parse_anno_file function:
main
vbb2voc.py
parse_anno_file
parse_anno_file(args.seq_dir, args.vbb_dir, frame_out, anno_out, person_type)
However, the arguments of this functions are:
def parse_anno_file(vbb_inputdir, seq_inputdir, vbb_outputdir, seq_outputdir, person_types=None):
I think there is a mistake in the sequence of these arguments. If you want I can open a pull request.
Thank you!
@alejandrods Thanks for pointing out this mistake!
Hi,
I think there is a mistake in the order of the arguments in the
main
function ofvbb2voc.py
file. In themain
function you call theparse_anno_file
function:parse_anno_file(args.seq_dir, args.vbb_dir, frame_out, anno_out, person_type)
However, the arguments of this functions are:
def parse_anno_file(vbb_inputdir, seq_inputdir, vbb_outputdir, seq_outputdir, person_types=None):
I think there is a mistake in the sequence of these arguments. If you want I can open a pull request.
Thank you!