1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43
| import os import cv2 from ultralytics import YOLO
model = YOLO('D:\Demo\python\pythonProject6\\runs\detect\\train\weights\last.pt')
def annotate_images(directory, output_dir): os.makedirs(output_dir, exist_ok=True)
for filename in os.listdir(directory): if filename.endswith(('.png', '.jpg', '.jpeg', '.bmp', '.tiff')): image_path = os.path.join(directory, filename) output_path = os.path.join(output_dir, os.path.splitext(filename)[0] + '.txt')
image = cv2.imread(image_path)
results = model(image,save=True)
predictions = results[0].boxes
with open(output_path, 'w') as f: for pred in predictions: class_id = int(pred.cls) x_center, y_center, width, height = pred.xywh[0] confidence = pred.conf
f.write(f"{class_id} {x_center} {y_center} {width} {height}\n")
print(f"Annotated {image_path} and saved to {output_path}")
annotate_images('C:\\Users\联想\Desktop\IMG3', 'D:\Demo\python\pythonProject7\\train\labels')
|