From c3b7ca1a3e663615c5347a0a933e0833a9912fe3 Mon Sep 17 00:00:00 2001 From: Jacob Date: Sat, 4 Jan 2025 20:09:59 -0500 Subject: [PATCH] Main --- src/main.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main.cpp b/src/main.cpp index f4f5853..a1c163d 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -31,11 +31,11 @@ int main(int argc, char** argv) { std::string label_fname = reext(argv[1]); - yolo_write_labels(label_fname, boxes); + //yolo_write_labels(label_fname, boxes); // Show image with bounding boxes. - // imshow("Bounding Boxes", img); - // waitKey(0); + imshow("Bounding Boxes", img); + waitKey(0); return 0; }