Skip to content

Commit

Permalink
add yolov8-obb bytetrack
Browse files Browse the repository at this point in the history
  • Loading branch information
unknown committed Jan 21, 2024
1 parent a304e9f commit fe3dfc4
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 0 deletions.
14 changes: 14 additions & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,20 @@ add_custom_target(
COMMAND ./pro yolo_seg
)

add_custom_target(
yolo_obb
DEPENDS pro
WORKING_DIRECTORY ${PROJECT_SOURCE_DIR}/workspace
COMMAND ./pro yolo_obb
)

add_custom_target(
bytetrack
DEPENDS pro
WORKING_DIRECTORY ${PROJECT_SOURCE_DIR}/workspace
COMMAND ./pro bytetrack
)

add_custom_target(
rtdetr
DEPENDS pro
Expand Down
6 changes: 6 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,12 @@ yolo_cls : workspace/pro
yolo_seg : workspace/pro
@cd workspace && ./pro yolo_seg

yolo_obb : workspace/pro
@cd workspace && ./pro yolo_obb

bytetrack : workspace/pro
@cd workspace && ./pro bytetrack

rtdetr : workspace/pro
@cd workspace && ./pro rtdetr

Expand Down

0 comments on commit fe3dfc4

Please sign in to comment.