diff --git a/examples/YOLO/YOLO_CoreS3.ino b/examples/YOLO_CoreS3/YOLO_CoreS3.ino similarity index 99% rename from examples/YOLO/YOLO_CoreS3.ino rename to examples/YOLO_CoreS3/YOLO_CoreS3.ino index 7214353..0e28abc 100644 --- a/examples/YOLO/YOLO_CoreS3.ino +++ b/examples/YOLO_CoreS3/YOLO_CoreS3.ino @@ -74,7 +74,6 @@ DetectionResult parseDetection(String& jsonStr) JsonDocument doc; deserializeJson(doc, jsonStr); JsonObject obj = doc.as(); - USBSerial.println(jsonStr); if (obj["bbox"].is() && obj["class"].is() && obj["confidence"].is()) { detection.class_name = obj["class"].as(); detection.confidence = atof(obj["confidence"].as()); diff --git a/examples/YOLO/YOLO_UVC.ino b/examples/YOLO_UVC/YOLO_UVC.ino similarity index 100% rename from examples/YOLO/YOLO_UVC.ino rename to examples/YOLO_UVC/YOLO_UVC.ino