Duankaiwen / CenterNet

Codes for our paper "CenterNet: Keypoint Triplets for Object Detection" .
MIT License
1.86k stars 384 forks source link

How to use CenterNet in my project? #90

Open mochechan opened 5 years ago

mochechan commented 5 years ago

How to use CenterNet in my project? Using CornerNet-Lite in Your Project

mochechan commented 5 years ago

After reviewing CenterNet codes and CornerNet_Lite codes, to implement the centernet_inference(db, nnet, image, decode_func=decode) function is likely necessary to use CenterNet in my project. https://github.com/princeton-vl/CornerNet-Lite/blob/master/core/test/cornernet.py#L75

Due to match necessary interfaces, some other files have to be refactored. https://github.com/princeton-vl/CornerNet-Lite/blob/master/core/models/CornerNet.py

Cornernet_Lite provides interfaces to apply to general object detection purposes, however the structure of codes in Cornernet_Lite is different from the structure of codes in Cornernet.