Hi,
I can load Faster_Rcnn model with C#, and get outputdata from Evaluate.
I got clsPred/rois/vbboxR list data and reference python code to generate input for NMS.
cntk provide nms function to use for C#?
python can import utils.cython_modules.cpu_nms.
C# has the same way?
thanks for your help.
Please check the doc for NMS library source.
There are several ways to do it:
pyd files are actually just dll in Windows. You may use P/Invoke to call function directly
You may compile a C++ nms lib from cython then, according to this, and then wrap it up in C#
Since both 1 and 2 would have dependency on python dlls, a better solution might be writing a native C++ implementation for NMS. We have it in our backlog.
Hi, I can load Faster_Rcnn model with C#, and get outputdata from Evaluate. I got clsPred/rois/vbboxR list data and reference python code to generate input for NMS. cntk provide nms function to use for C#? python can import utils.cython_modules.cpu_nms. C# has the same way? thanks for your help.