image-to-3d-bbox icon indicating copy to clipboard operation
image-to-3d-bbox copied to clipboard

3D Box Regression problem

Open weisili2016 opened this issue 8 years ago • 3 comments

hi, in your code , global object orientation is regressed by CNN , from only the contents of the 2D detection result, but , I found that the author of the paper[https://arxiv.org/abs/1612.00496] suggested that ,local orientation is regressed. Did I get it wrong?

weisili2016 avatar Feb 28 '18 01:02 weisili2016

Can you point me to the lines to those 2 statements? It's so long that I forget most of the details.

experiencor avatar Mar 01 '18 05:03 experiencor

@experiencor 3D Box Regression.ipynb

///////////Preprocessing stuff/////////////// def compute_anchors(angle): ///input angle anchors = [] wedge = 2.*np.pi/BIN l_index = int(angle/wedge) r_index = l_index + 1 ...... What does the input angle mean? global object orientation or local orientation

weisili2016 avatar Mar 01 '18 07:03 weisili2016

I think it's the local orientation described in Figure 3 of the paper.

experiencor avatar Mar 02 '18 14:03 experiencor