Skip to content

Commit 3b083e1

Browse files
committed
Added example with asynchronous detector and tracker
1 parent 1e88cf8 commit 3b083e1

15 files changed

Lines changed: 1033 additions & 161 deletions

File tree

CMakeLists.txt

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,11 @@ if (BUILD_CARS_COUNTING)
3636
add_subdirectory(cars_counting)
3737
endif(BUILD_CARS_COUNTING)
3838

39+
option(BUILD_ASYNC_DETECTOR "Should compiled async example with low fps Detector?" OFF)
40+
if (BUILD_ASYNC_DETECTOR)
41+
add_subdirectory(async_detector)
42+
endif(BUILD_ASYNC_DETECTOR)
43+
3944
option(BUILD_YOLO_LIB "Should compiled standalone yolo_lib with original darknet?" OFF)
4045
if (BUILD_YOLO_LIB)
4146
add_subdirectory(src/Detector/darknet)

0 commit comments

Comments
 (0)