diff --git a/.gitignore b/.gitignore index 44462f4..649f51c 100644 --- a/.gitignore +++ b/.gitignore @@ -171,8 +171,6 @@ pyrightconfig.json # Additional item -_models/ -images/ results/ video/ models/ diff --git a/images/.gitkeep b/images/.gitkeep new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/images/.gitkeep diff --git a/images/body/BodyB.png b/images/body/BodyB.png new file mode 100644 index 0000000..53e7efc --- /dev/null +++ b/images/body/BodyB.png Binary files differ diff --git a/images/body/BodyF.png b/images/body/BodyF.png new file mode 100644 index 0000000..b940d17 --- /dev/null +++ b/images/body/BodyF.png Binary files differ diff --git a/main.py b/main.py index 4d4fed1..12deb59 100644 --- a/main.py +++ b/main.py @@ -309,6 +309,7 @@ rows = [] normalized_rows = [] + yolox_inferencer = init_yolox() for image_file_name in png_files: print(f"Processing image: {image_file_name}") image_path = os.path.join(base_dir, image_file_name) @@ -367,9 +368,6 @@ ) pose_overlay_img = visualizer.get_image() - # YOLOXの部分を修正 - yolox_inferencer = init_yolox() - if MobileNetV1SSD_ENABLED: stethoscope_overlay_img, stethoscope_x, stethoscope_y = ears_ai.ssd_detect( frame, None