VPGNet icon indicating copy to clipboard operation
VPGNet copied to clipboard

some questions about "convert_driving_data.cpp "

Open weisili2016 opened this issue 7 years ago • 1 comments

@SeokjuLee VPGNet/caffe/tools/convert_driving_data.cpp
[line 115] int resize_height = std::max(0, FLAGS_resize_height); ///480+32=512 int resize_width = std::max(0, FLAGS_resize_width); ///640+32=672

original images are resized to 672*512, should coordinates of lines be reseized also??

[line 96] lines.push_back(std::make_pair(filename, boxes));

weisili2016 avatar May 07 '18 02:05 weisili2016

@weisili2016 It is padding parameter. You don't need to resize the labels.

SeokjuLee avatar May 08 '18 06:05 SeokjuLee