I have followed your README instructions and successfully got an output file like 000001.txt in ./avod/data/outputs/[configname]_val/predictions/final_boxes_box_4ca_and_scores/val/120000/. That file would be like:
I (briefly) read your paper so I know what each column means. (four corners of the bottom plane and heights: Δx1, ..., Δx4, Δz1, ..., Δz4, h1, h2, score, type) However, I can't get any information about what VALUES MEAN AND ITS UNIT. Consequently, my questions are:
Is it in pixels or meters?
From where? Is it from the center or upper left of the image? or the camera(which took this image)?
I want just to draw boxes on the image. How can I do that? I found some functions in your /demos folder but they are needed to set many options. Accordingly, I will need to spend many hours to operate those functions. Could you give me some other ways to do it?
demos/show_predictions_2d.py will draw the boxes projected into the image. This script uses the boxes_3d format which should also be available in the predictions output folder.
Firstly, thanks for the beautiful paper and repo!
I have followed your README instructions and successfully got an output file like 000001.txt in
./avod/data/outputs/[configname]_val/predictions/final_boxes_box_4ca_and_scores/val/120000/
. That file would be like:It is an output of KITTI-stereo-test-000001.png
I (briefly) read your paper so I know what each column means. (four corners of the bottom plane and heights: Δx1, ..., Δx4, Δz1, ..., Δz4, h1, h2, score, type) However, I can't get any information about what VALUES MEAN AND ITS UNIT. Consequently, my questions are:
/demos
folder but they are needed to set many options. Accordingly, I will need to spend many hours to operate those functions. Could you give me some other ways to do it?Thank you in advance.