AlexeyAB / darknet

YOLOv4 / Scaled-YOLOv4 / YOLO - Neural Networks for Object Detection (Windows and Linux version of Darknet )
http://pjreddie.com/darknet/
Other
21.56k stars 7.94k forks source link

question in video processing #743

Open fjutsisejc opened 6 years ago

fjutsisejc commented 6 years ago

How can I compare the central points of the same object box of the two frames before and after when video processing? I just want to count the different kinds of objects in the video.

AlexeyAB commented 6 years ago

Try to compile with LIBSO=1 in the Makefile: https://github.com/AlexeyAB/darknet#how-to-compile-on-linux

And then run: LD_LIBRARY_PATH=./:$LD_LIBRARY_PATH ./uselib test.mp4

fjutsisejc commented 6 years ago

Thank you for your reply so fast! But I don't want to compile on linux , I want to compile on windows. I just want to calculate the different of the same BB between two frames in the video. How to programe? @AlexeyAB