Closed greyowl closed 5 years ago
@greyowl Hey, I'm sort of new to TF, did you resolve this finally? How did you get the actual bbox coordinates from the output layers?
I don't have the code but I ended up implementing the output -> bbox coordinates in tensorflow
I'll look that up, thanks a lot!
@nishanthcgit Hi, were you able to figure out how to get bounding boxes? I tried referencing other repositories including model.py, but I always got zero bounding boxes. Any help will be appreciated. Thanks
I had looked into how tensorflow itself does the output -> coordinates transformation in its own models - its not actually too hard, just poke around in all the functions called. I don't have the exact name of the function now but I had found one in there that does the same and used it.. Check out the tensorflow object detection API, it is 100% in there, I am just not sure of the exact function name now
yolo layers seem to have an output shape of
where height and width are size of the grid.
this is what I've tried referencing model.py
overlaying these bbox to the original image seems to be off quite a bit I am not sure what I am doing wrong. Any help is appreciated