These are a series of very simple single-purpose apps to show how to use the DarkHelp C++ API. These are meant to be used as a starting point for people who want to use Darknet and DarkHelp. They are not meant to be final production or commercial-ready applications.
Find the one that seems to do what you want, and modify it as needed. The examples as shown below are typically done with the Rolodex example dataset.
When running these example apps on Windows, note the DLL files in the
C:\Program Files\Darknet\bin\
andC:\Program Files\DarkHelp\bin\
directories. The examples in this directory will need access to the same dependencies (OpenCV, Darknet, possibly CUDA and cuDNN, etc).
process_single_image.cpp
Loads a neural network, call predict()
on a single image, and display the results on the console. Should look similar to this:src-apps/process_single_image Rolodex.cfg Rolodex.names Rolodex_best.weights page_70.png
display_single_image.cpp
Loads a neural network, call predict()
on a single image, annotate the image with the results, and display using a GUI window.src-apps/display_single_image Rolodex.cfg Rolodex.names Rolodex_best.weights page_70.png
display_single_image_snapping.cpp
Similar to the previous app, but enables the "snapping" feature.src-apps/display_single_image_snapping Rolodex.cfg Rolodex.names Rolodex_best.weights page_70.png
display_single_image_custom_settings.cpp
Similiar to the previous app, shows how to customize a number of the DarkHelp and Darknet settings.src-apps/display_single_image_custom_settings Rolodex.cfg Rolodex.names Rolodex_best.weights page_70.png
process_video_webcam.cpp
Loads a neural network, open the first webcam, and continuously apply the network to every video frame. Press ESC
to exit.src-apps/process_video_webcam yolov4-tiny.cfg coco.names yolov4-tiny.weights
save_webcam_to_video.cpp
Similar to the previous app, but the output is saved back out to disk, named out.mp4
. Press ESC
to stop recording and exit.src-apps/save_webcam_to_video yolov4-tiny.cfg coco.names yolov4-tiny.weights
rotate_images.cpp
Detects image rotation, rotates the images back to level, and then re-runs the neural network to get more accurate detections.src-apps/rotate_image Perfs.cfg Perfs.names Perfs_best.weights ~/nn/Perfs/set_01/film*.jpg
video_display_realtime.cpp
Loads a video file and displays it at the exact speed it was recorded, running the neural network on each frame.src-apps/video_display_realtime animals.cfg animals.names animals_best.weights zoo.m4v
video_object_counter.cpp
Combines predictions and object tracker to count the number of objects.src-apps/video_object_counter pigs.cfg pigs.names pigs_best.weights farm.m4v
using_c_api.cpp
Demonstrates how to use the C API.src-apps/using_c_api Rolodex.cfg Rolodex.names Rolodex_best.weights page_70.png
process_many_images_on_threads.cpp
Demonstrates how to use the DHThreads class to load multiple copies of a neural network to process many image files at once.src-apps/process_many_images_on_threads yolov4-tiny.cfg coco.names yolov4-tiny.weights images/
display_using_bundle.cpp
Demonstrates how to use a .dh combined bundle file with DarkHelp. Run DarkHelpCombine
to create the .dh file. Compare this code against display_single_image.cpp
.DarkHelpCombine password Rolodex.cfg Rolodex.names Rolodex_best.weights
followed by display_using_bundle Rolodex.dh password page_70.png
resize_corners.cpp
Looks for classes named "TL", "TR", "BR", "BL" and resizes those annotations to a fixed size.src-apps/resize_corners ~/nn/animals/animals.names