WongKinYiu / yolov7

Implementation of paper - YOLOv7: Trainable bag-of-freebies sets new state-of-the-art for real-time object detectors
GNU General Public License v3.0
13.36k stars 4.22k forks source link

Questions about detect.py #1633

Open TsaiCC0420 opened 1 year ago

TsaiCC0420 commented 1 year ago

When doing verification, I want to output the joint data of keypoints, what should I do?

TusharChauhaan commented 1 year ago

The script detect.py is using plot_one_box in it. So you can use the arguments in the function to get the required points.

TsaiCC0420 commented 1 year ago

OK, thanks!