vincentgong7 / VG_AlexeyAB_darknet

A forked AlexeyAB Darknet repo with extra convenient functions.
https://darknet.gong.im
Other
84 stars 41 forks source link

detect only people and change the font of label #4

Open Jarvah opened 5 years ago

Jarvah commented 5 years ago

Hi, how can I use this repo to detect only people in the image and change the word font on the bounding box?

vincentgong7 commented 5 years ago

I actually is working on exactly the same thing. In my work I would like to count the number of a specific object presenting in a set of images, such as people. The way I did this is: step1: use yolo (this repo) to detect objects in each image and save the result file ( a list of objects in an image). step2: I wrote a script to extract and sum the count of an object from the result file generated in the step 1.

How about that?

with regard to changing the word font on the bounding box, I have not yet studied on it, because I do not have such requirement. But I think it's possible and easy, just some changes in the sourcing code about image annotation.