简体   繁体   中英

Error in running a binary file on ubuntu terminal

AM trying to run a binary file on ubuntu terminal but getting following error

cant find trained object detector file "object_detector.svm."

Well, obviously this file is missing or the program you are running can not locate it. What I will do: First check if the file really exists:

find . -name 'object_detector.svm'

or you can try to locate at any other folder. On the extreme search everything as root:

find / -name 'object_detector.svm'

Also, if you have the source code and not only the binaries, then you can try to locate where this file is calling from. Maybe it's a misconfiguration and you can fix it editing the congig files (if there are any). Try

grep -R 'object_detector.svm'

If you are lucky enough maybe you spot it.

More data from your side needed for further help.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM