ijkguo / mx-rcnn

Parallel Faster R-CNN implementation with MXNet.
Other
669 stars 292 forks source link

How does C++ call the mxnet fasterrcnn model for detection? #117

Open gulingfengze opened 5 years ago

gulingfengze commented 5 years ago

I want to use C++ to invoke the trained model for detection, but there is an error in initialization during detection. Referring to the way the SSD calls the model in C++, the model requires a deploy conversion. So does the faster RCNN model need to be transformed as well? How do you convert?

Hope for help!

ijkguo commented 5 years ago

Not all steps for inference are written with mxnet native operators. Gluon-CV model is actually written with only native operators so exporting symbol is possible.