schwittlick / ofxDarknet

darknet neural network addon for openFrameworks
MIT License
496 stars 89 forks source link

COCO dataset #36

Open wearenocomputer opened 6 years ago

wearenocomputer commented 6 years ago

Hi,

I can't seem to get the COCO dataset working. Everything compiles and runs fine but there is no detection going on (using Windows)

I am using this setup: std::string cfgfile = ofToDataPath( "cfg/yolo.cfg" ); std::string weightfile = ofToDataPath( "yolo.weights" ); std::string nameslist = ofToDataPath( "cfg/coco.names" ); darknet.init( cfgfile, weightfile, nameslist );

I am using the coco.names file because I can't seem to find the names.list file.

Everything works fine with the VOC model.

Thank you so much for your help.

GuidaGG commented 6 years ago

Hello, did you manage to fix your problem? I am stuck on the same. Thank you