3D_CNN_tensorflow icon indicating copy to clipboard operation
3D_CNN_tensorflow copied to clipboard

Bounding Box prediction

Open OneManArmy93 opened this issue 5 years ago • 3 comments

Can anyone tell me how the bounding boxes are predcition with the model? and which function does that? Thank you.

OneManArmy93 avatar Jul 17 '19 08:07 OneManArmy93

This architecture will provide you with eight points in the output, you can join the points accordingly to get the bounding box. In some cases neural network will provide with multiple bounding boxes, in that case you have to perform non maximun suppression.

ansabsheikh9 avatar Jul 17 '19 10:07 ansabsheikh9

@ansabsheikh9 can be kind enough to suggest how to join the points at the training process in order to predict the bbox? thank you

OneManArmy93 avatar Jul 17 '19 10:07 OneManArmy93

While training you dont need to provide the bounding box shape. You have to provide with regression targets for each instance of vehicle, like eight corners with centered zero.

ansabsheikh9 avatar Jul 17 '19 12:07 ansabsheikh9