walktree / libtorch-yolov3

A Libtorch implementation of the YOLO v3 object detection algorithm
452 stars 131 forks source link

build error ('isspace': is not a member of 'std') #39

Closed ahmadalzoubi13579 closed 4 years ago

ahmadalzoubi13579 commented 4 years ago

after executing this command: cmake -G "Visual Studio 15 2017 Win64" -DCMAKE_PREFIX_PATH=C:/Program Files/libtorch .. i open yolo-app.sln with visual studio in order to build the project and generate yolo-app.exe but i can't build because there is some errors in Darknet.cpp file :

Untitled

Any Help :)

ahmadalzoubi13579 commented 4 years ago

i fix error 'isspace': is not a member of 'std' by include this at the top #include <cctype> , but i got another build errors walktreelibtorch-yolov3#40