Hi, I am trying to test some of my own images to your code,
but I found that the input of your model is a crop image instead of a raw image.
So does it mean that I have to do 2D bounding box with my own raw image,
and then input each crop image to your model to get 3D bounding Box?
I am new to deep learning, hope you won't think it is a silly question~
Thanks.
Yes, you should run some object detection method like faster RCNN to extract the object 2D box. For each cropped box, you should resize them to 224*224 and then apply my code.
Hi, I am trying to test some of my own images to your code, but I found that the input of your model is a crop image instead of a raw image. So does it mean that I have to do 2D bounding box with my own raw image, and then input each crop image to your model to get 3D bounding Box? I am new to deep learning, hope you won't think it is a silly question~ Thanks.