AlexeyAB / darknet

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

OpenCV 3.4.2+ and NVIDIA Jetson Xavier support. #1754

Open kooscode opened 6 years ago

kooscode commented 6 years ago

The Makefile needs Arch 72 for Xavier..

# Jetson XAVIER
ARCH= -gencode arch=compute_72,code=[sm_72,compute_72]

AND the detector.c file also needs a #define for CV_RGB in order to support OpenCV 3.4.2 onwards #define CV_RGB(r, g, b) cvScalar( (b), (g), (r), 0 )

AlexeyAB commented 6 years ago

@kooscode Thanks, I added this fix.

AlexeyAB commented 5 years ago

@kooscode Hi,

What FPS can you get on Jetson Xavier and Yolo v3 full model?

kooscode commented 5 years ago

We use a modified yolov3. but I'll download some standard weights and do a quick test and let you know soon.