3D Box orientation Regression problem
weisili2016 opened this issue · 3 comments
weisili2016 commented
hi,
in your code , global object orientation is regressed by CNN , from only the contents of the 2D bboxs result,
but , I found that the author of the paper[https://arxiv.org/abs/1612.00496] suggested that ,local orientation is regressed, not the global object orientation.
Did I get it wrong?
smallcorgi commented
Hi @weisili2016 ,
The CNN will predict the local object orientation, not the global object orientation.
So in testing phase, θlocal will add with θray.
Line 252 in c409d46
weisili2016 commented
@smallcorgi
data_processing.py
line 14.
def compute_anchors(angle):
....
so, in training phase ,the input angle is the local object orientation?
smallcorgi commented
@weisili2016
Yes.