mxnet-ssd.cpp
mxnet-ssd.cpp copied to clipboard
is this useful in real-time detection?
hello, deep learning newbie here. can this be used in real time detection? and if so, is it API rewriting? which function do I use to try and get it to work?
see #6
thanks, the rewrite api files are in the include folder right?
Yes, but you may not need to rewrite it, just use it for frame by frame processing.
frame by frame processing works for real-time detection as well? woah, I had no idea, so I can get it to detect on a webcam and such?
Well, if you want real-time, you need a gpu at least. refer to https://github.com/zhreshold/mxnet-ssd
I got a pretty good gpu at the moment, object detection on videos work well, how do I begin with real-time detection? Thanks for being so helpful 👍
You need to enable GPU in mxnet, but it's not written in makefile right now.
oh alright, so all I have to do is enable GPU in the makefile? I'd gladly do so, but the only thing is I can't see the makefile in the directory
mxnet/amagamation
the amalgamation folder is not the windows branch, could it still work if I use the makefile from the master branch?
the win branch is what I pre-built with visual studio, you can use amalgamation or simply build the entire lib using VS, either one is ok. The latter have an official tutorial on dmlc/mxnet