Train notebook
@ -1,5 +1,5 @@
|
||||
"""
|
||||
STEP 1 ─ prepare_dataset.py
|
||||
STEP 1 ─ 1_prepare_dataset.py
|
||||
===========================
|
||||
Run this FIRST. It creates the required folder structure and
|
||||
a dataset.yaml that YOLOv8 expects.
|
||||
@ -1,5 +1,5 @@
|
||||
"""
|
||||
STEP 2 — augment.py
|
||||
STEP 2 — 2_augment.py
|
||||
====================
|
||||
Expands your small labeled dataset using augmentations tuned
|
||||
specifically for retail shelf / packaged-goods detection.
|
||||
224
4_detect.py
Normal file
@ -0,0 +1,224 @@
|
||||
"""
|
||||
SETP 4 - detect.py
|
||||
====================
|
||||
Run detection on a single image, a folder, or a webcam stream.
|
||||
Draw bounding boxes, prints a per-class count summary, and
|
||||
saves an annotated result image.
|
||||
|
||||
Usage:
|
||||
python detect.py --source scene.jpg
|
||||
python detect.py --source images/
|
||||
python detect.py --source 0
|
||||
python detect.py --source scene.jpg --conf 0.5 --wieghts best.pt
|
||||
"""
|
||||
|
||||
import argparse
|
||||
import sys
|
||||
import os
|
||||
import cv2
|
||||
import numpy as np
|
||||
|
||||
from pathlib import Path
|
||||
from collections import defaultdict
|
||||
from ultralytics import YOLO
|
||||
|
||||
# ── Defaults ──────────────────────────────────────────────────────────────────
|
||||
DEFAULT_WEIGHTS = "runs/detect/coffee_v1/weights/best.pt"
|
||||
DEFAULT_CONF = .35 # lower = more detections and more false positives.
|
||||
DEFAULT_IOU = .45 # NMS IoU threshold.
|
||||
DEFAULT_IMGSZ = 640
|
||||
OUTPUT_DIR = Path("detections")
|
||||
|
||||
|
||||
# ── Colour palette (one BGR colour per class index) ──────────────────────────
|
||||
PALETTE = [
|
||||
( 0, 200, 0), # green
|
||||
( 0, 120, 255), # orange
|
||||
(255, 50, 50), # blue
|
||||
(200, 0, 200), # magenta
|
||||
( 0, 200, 200), # yellow
|
||||
( 80, 200, 80),
|
||||
(200, 100, 0),
|
||||
( 0, 80, 200),
|
||||
(150, 0, 150),
|
||||
(100, 200, 0),
|
||||
( 0, 150, 150),
|
||||
(200, 50, 100),
|
||||
( 50, 50, 200),
|
||||
]
|
||||
|
||||
def get_color(class_id: int):
|
||||
return PALETTE[class_id % len(PALETTE)]
|
||||
|
||||
# ── Drawing ──────────────────────────
|
||||
def draw_box(img, box, class_name, conf, class_id):
|
||||
x1, y1, x2, y2 = map(int, box)
|
||||
color = get_color(class_id)
|
||||
|
||||
cv2.rectangle(img, (x1, y1), (x2, y2), color, 2)
|
||||
|
||||
label = f"{class_name} {conf: .0%}"
|
||||
(tw, th), baseline = cv2.getTextSize(label, cv2.FONT_HERSHEY_SIMPLEX, 0.55, 1)
|
||||
cv2.rectangle(
|
||||
img,
|
||||
(x1, y1 - th - baseline - 6),
|
||||
(x1 + tw + 4, y1),
|
||||
color, cv2.FILLED
|
||||
)
|
||||
|
||||
cv2.putText(
|
||||
img,
|
||||
label,
|
||||
(x1 + 2, y1 - baseline -2),
|
||||
cv2.FONT_HERSHEY_SIMPLEX,
|
||||
0.55,
|
||||
(0, 0, 0), 1, cv2.LINE_AA
|
||||
)
|
||||
|
||||
def draw_summary(img, counts: dict):
|
||||
""" Overlay a product count table in the top-right corner."""
|
||||
if not counts:
|
||||
return
|
||||
|
||||
lines = ["── Count ──"] + [f"{n:>2}x {name}" for name, n in sorted(counts.items())]
|
||||
|
||||
x = img.shape[1] - 200
|
||||
y = 16
|
||||
for line in lines:
|
||||
(tw, th), _ = cv2.getTextSize(line, cv2.FONT_HERSHEY_SIMPLEX, 0.5, 1)
|
||||
cv2.rectangle(img, (x - 4, y - th - 2), (x + tw + 4, y + 4), (30, 30, 30), cv2.FILLED)
|
||||
cv2.putText(img, line, (x, y), cv2.FONT_HERSHEY_SIMPLEX, 0.5, (240, 240, 240), 1, cv2.LINE_AA)
|
||||
y += th + 8
|
||||
|
||||
|
||||
# ── Single image inference ────────────────────────────────────────────────────
|
||||
def detect_image(model, img_path: Path, conf: float, iou: float, imgsz: int):
|
||||
img = cv2.imread(str(img_path))
|
||||
if img is None:
|
||||
print(f"[WARN] Cannot read {img_path}")
|
||||
return
|
||||
results = model.predict(
|
||||
source=str(img_path),
|
||||
conf=conf,
|
||||
iou=iou,
|
||||
imgsz=imgsz,
|
||||
verbose=False,
|
||||
)[0]
|
||||
|
||||
counts = defaultdict(int)
|
||||
|
||||
for box in results.boxes:
|
||||
cid = int(box.cls)
|
||||
name = model.names[cid]
|
||||
score = float(box.conf)
|
||||
draw_box(img, box.xyxy[0].tolist(), name, score, cid)
|
||||
counts[name] += 1
|
||||
|
||||
draw_summary(img, counts)
|
||||
|
||||
OUTPUT_DIR.mkdir(exist_ok=True)
|
||||
out_path = OUTPUT_DIR / img_path.name
|
||||
cv2.imwrite(str(out_path), img)
|
||||
|
||||
# Console Summary
|
||||
print(f"\n{img_path.name}")
|
||||
if counts:
|
||||
for name, n in sorted(counts.items()):
|
||||
print(f" {n:>2}x {name}")
|
||||
else:
|
||||
print(" (no detections)")
|
||||
print(f" -> saved: {out_path}")
|
||||
|
||||
return img, counts
|
||||
|
||||
# ── Webcam / video stream ─────────────────────────────────────────────────────
|
||||
def detect_stream(model, source, conf: float, iou: float, imgsz: int):
|
||||
cap = cv2.VideoCapture(int(source) if source.isdigit() else source)
|
||||
if not cap.isOpened():
|
||||
print(f"[ERROR] Cannot open source: {source}")
|
||||
return
|
||||
|
||||
print("Streaming - press Q to quit")
|
||||
while True:
|
||||
ret, frame = cap.read()
|
||||
if not ret:
|
||||
break
|
||||
|
||||
results = model.predict(
|
||||
source = frame,
|
||||
conf = conf,
|
||||
iou = iou,
|
||||
imgsz = imgsz,
|
||||
verbose = False
|
||||
)[0]
|
||||
|
||||
counts = defaultdict(int)
|
||||
for box in results.boxes:
|
||||
cid = int(box.cls)
|
||||
name = model.names[cid]
|
||||
draw_box(frame, box.xyxy[0].tolist(), name, float(box.conf), cid)
|
||||
counts[name] += 1
|
||||
|
||||
draw_summary(frame, counts)
|
||||
cv2.imshow("Coffee Detector", frame)
|
||||
if cv2.waitKey(1) & 0xFF == ord("q"):
|
||||
break
|
||||
|
||||
cap.release()
|
||||
cv2.destroyAllWindows()
|
||||
|
||||
|
||||
# ── Entry point ─────────────────────────────────────────────────────
|
||||
def main():
|
||||
parser = argparse.ArgumentParser(description="Coffee Product Detector")
|
||||
parser.add_argument("--source" , default="scene.jpg" , help="Image path, folder, or 0 for webcam")
|
||||
parser.add_argument("--weights", default=DEFAULT_WEIGHTS, help="Path to *.pt")
|
||||
parser.add_argument("--conf" , default=DEFAULT_CONF , type=float, help="Confidence threshold (0-1)")
|
||||
parser.add_argument("--iou" , default=DEFAULT_IOU , type=float, help="NMS IoU threshold (0-1)")
|
||||
parser.add_argument("--imgsz" , default=DEFAULT_IMGSZ , type=int , help="Inference image size")
|
||||
|
||||
args = parser.parse_args()
|
||||
|
||||
if not Path(args.weights).exists():
|
||||
print(f"[ERROR] Weights not found: {args.weights}")
|
||||
print(" Run train.py first.")
|
||||
sys.exit(1)
|
||||
|
||||
print(f"Loading model: {args.weights}")
|
||||
model = YOLO(args.weights)
|
||||
print(f"Classes: {list(model.names.values())}\n")
|
||||
|
||||
source = Path(args.source)
|
||||
|
||||
# Webcam / video
|
||||
if args.source.isdigit() or str(source).endswith((".mp4", ".avi", ".mov")):
|
||||
detect_stream(model, args.source, args.conf, args.iou, args.imgsz)
|
||||
return
|
||||
|
||||
# Folder
|
||||
if source.is_dir():
|
||||
exts = {".jpg", ".jpeg", ".png", ".bmp", ".webp"}
|
||||
images = sorted([p for p in source.iterdir() if p.suffix.lower() in exts])
|
||||
print(f"Processing {len(images)} images from {source}...")
|
||||
total_counts = defaultdict(int)
|
||||
for img_path in images:
|
||||
_, counts = detect_image(model, img_path, args.conf, args.iou, args.imgsz)
|
||||
if counts:
|
||||
for k, v in counts.items():
|
||||
total_counts[k] += v
|
||||
|
||||
print("\n── Total across all images ──")
|
||||
for name, n in sorted(total_counts.items()):
|
||||
print(f" {n:>3}x {name}")
|
||||
return
|
||||
|
||||
# Single image
|
||||
if source.exists():
|
||||
detect_image(model, source, args.conf, args.iou, args.imgsz)
|
||||
return
|
||||
|
||||
print(f"[ERROR] Source not found: {source}")
|
||||
sys.exit(1)
|
||||
|
||||
if __name__ == "__main__":
|
||||
main()
|
||||
BIN
detections/01.jpeg
Normal file
|
After Width: | Height: | Size: 464 KiB |
BIN
detections/02.jpeg
Normal file
|
After Width: | Height: | Size: 414 KiB |
BIN
detections/03.jpeg
Normal file
|
After Width: | Height: | Size: 424 KiB |
BIN
detections/04.jpeg
Normal file
|
After Width: | Height: | Size: 222 KiB |
BIN
detections/05.jpeg
Normal file
|
After Width: | Height: | Size: 326 KiB |
BIN
detections/06.jpeg
Normal file
|
After Width: | Height: | Size: 410 KiB |
BIN
detections/07.jpeg
Normal file
|
After Width: | Height: | Size: 317 KiB |
BIN
detections/08.jpeg
Normal file
|
After Width: | Height: | Size: 410 KiB |
BIN
detections/09.jpeg
Normal file
|
After Width: | Height: | Size: 229 KiB |
BIN
detections/10.jpeg
Normal file
|
After Width: | Height: | Size: 224 KiB |
BIN
detections/11.jpeg
Normal file
|
After Width: | Height: | Size: 271 KiB |
BIN
detections/12.jpeg
Normal file
|
After Width: | Height: | Size: 252 KiB |
BIN
detections/13.jpeg
Normal file
|
After Width: | Height: | Size: 174 KiB |
BIN
detections/14.jpeg
Normal file
|
After Width: | Height: | Size: 228 KiB |
BIN
detections/15.jpeg
Normal file
|
After Width: | Height: | Size: 148 KiB |
BIN
detections/16.jpeg
Normal file
|
After Width: | Height: | Size: 225 KiB |
BIN
detections/17.jpeg
Normal file
|
After Width: | Height: | Size: 317 KiB |
BIN
detections/18.jpeg
Normal file
|
After Width: | Height: | Size: 222 KiB |
BIN
detections/19.jpeg
Normal file
|
After Width: | Height: | Size: 189 KiB |
BIN
detections/20.jpeg
Normal file
|
After Width: | Height: | Size: 414 KiB |
BIN
detections/21.jpeg
Normal file
|
After Width: | Height: | Size: 464 KiB |
BIN
detections/22.jpeg
Normal file
|
After Width: | Height: | Size: 410 KiB |
BIN
detections/23.jpeg
Normal file
|
After Width: | Height: | Size: 326 KiB |
BIN
detections/24.jpeg
Normal file
|
After Width: | Height: | Size: 410 KiB |
BIN
detections/25.jpeg
Normal file
|
After Width: | Height: | Size: 424 KiB |
BIN
detections/26.jpeg
Normal file
|
After Width: | Height: | Size: 212 KiB |
BIN
detections/27.jpeg
Normal file
|
After Width: | Height: | Size: 260 KiB |
BIN
detections/28.jpeg
Normal file
|
After Width: | Height: | Size: 352 KiB |
BIN
detections/29.jpeg
Normal file
|
After Width: | Height: | Size: 288 KiB |
BIN
detections/30.jpeg
Normal file
|
After Width: | Height: | Size: 290 KiB |
BIN
detections/31.jpeg
Normal file
|
After Width: | Height: | Size: 283 KiB |
BIN
detections/32.jpeg
Normal file
|
After Width: | Height: | Size: 188 KiB |
BIN
detections/33.jpeg
Normal file
|
After Width: | Height: | Size: 317 KiB |
BIN
detections/34.jpeg
Normal file
|
After Width: | Height: | Size: 354 KiB |
BIN
detections/35.jpeg
Normal file
|
After Width: | Height: | Size: 374 KiB |
BIN
detections/36.jpeg
Normal file
|
After Width: | Height: | Size: 176 KiB |
BIN
detections/37.jpeg
Normal file
|
After Width: | Height: | Size: 310 KiB |
BIN
detections/38.jpeg
Normal file
|
After Width: | Height: | Size: 189 KiB |
BIN
detections/39.jpeg
Normal file
|
After Width: | Height: | Size: 245 KiB |
BIN
detections/40.jpeg
Normal file
|
After Width: | Height: | Size: 499 KiB |
BIN
detections/41.jpeg
Normal file
|
After Width: | Height: | Size: 308 KiB |
BIN
detections/42.jpeg
Normal file
|
After Width: | Height: | Size: 298 KiB |
BIN
detections/43.jpeg
Normal file
|
After Width: | Height: | Size: 381 KiB |
BIN
detections/44.jpeg
Normal file
|
After Width: | Height: | Size: 332 KiB |
BIN
detections/45.jpeg
Normal file
|
After Width: | Height: | Size: 296 KiB |
BIN
detections/46.jpeg
Normal file
|
After Width: | Height: | Size: 323 KiB |
BIN
detections/47.jpeg
Normal file
|
After Width: | Height: | Size: 263 KiB |
BIN
detections/48.jpeg
Normal file
|
After Width: | Height: | Size: 350 KiB |
BIN
detections/49.jpeg
Normal file
|
After Width: | Height: | Size: 246 KiB |
BIN
detections/50.jpeg
Normal file
|
After Width: | Height: | Size: 326 KiB |
BIN
detections/51.jpeg
Normal file
|
After Width: | Height: | Size: 364 KiB |
BIN
detections/52.jpeg
Normal file
|
After Width: | Height: | Size: 367 KiB |
BIN
detections/53.jpeg
Normal file
|
After Width: | Height: | Size: 243 KiB |
BIN
detections/54.jpeg
Normal file
|
After Width: | Height: | Size: 455 KiB |
BIN
detections/55.jpeg
Normal file
|
After Width: | Height: | Size: 321 KiB |
BIN
detections/56.jpeg
Normal file
|
After Width: | Height: | Size: 409 KiB |
BIN
detections/57.jpeg
Normal file
|
After Width: | Height: | Size: 303 KiB |
BIN
detections/58.jpeg
Normal file
|
After Width: | Height: | Size: 368 KiB |
BIN
detections/59.jpeg
Normal file
|
After Width: | Height: | Size: 369 KiB |
BIN
detections/60.jpeg
Normal file
|
After Width: | Height: | Size: 532 KiB |
BIN
detections/61.jpeg
Normal file
|
After Width: | Height: | Size: 294 KiB |
BIN
detections/62.jpeg
Normal file
|
After Width: | Height: | Size: 413 KiB |
BIN
detections/63.jpeg
Normal file
|
After Width: | Height: | Size: 384 KiB |
BIN
detections/64.jpeg
Normal file
|
After Width: | Height: | Size: 323 KiB |
1
shelf-products-detection-train-yolov8n.ipynb
Normal file
BIN
test/01.jpeg
Normal file
|
After Width: | Height: | Size: 179 KiB |
BIN
test/02.jpeg
Normal file
|
After Width: | Height: | Size: 161 KiB |
BIN
test/03.jpeg
Normal file
|
After Width: | Height: | Size: 156 KiB |
BIN
test/04.jpeg
Normal file
|
After Width: | Height: | Size: 121 KiB |
BIN
test/05.jpeg
Normal file
|
After Width: | Height: | Size: 171 KiB |
BIN
test/06.jpeg
Normal file
|
After Width: | Height: | Size: 155 KiB |
BIN
test/07.jpeg
Normal file
|
After Width: | Height: | Size: 121 KiB |
BIN
test/08.jpeg
Normal file
|
After Width: | Height: | Size: 165 KiB |
BIN
test/09.jpeg
Normal file
|
After Width: | Height: | Size: 75 KiB |
BIN
test/10.jpeg
Normal file
|
After Width: | Height: | Size: 79 KiB |
BIN
test/11.jpeg
Normal file
|
After Width: | Height: | Size: 86 KiB |
BIN
test/12.jpeg
Normal file
|
After Width: | Height: | Size: 85 KiB |
BIN
test/13.jpeg
Normal file
|
After Width: | Height: | Size: 56 KiB |
BIN
test/14.jpeg
Normal file
|
After Width: | Height: | Size: 83 KiB |
BIN
test/15.jpeg
Normal file
|
After Width: | Height: | Size: 55 KiB |
BIN
test/16.jpeg
Normal file
|
After Width: | Height: | Size: 81 KiB |
BIN
test/17.jpeg
Normal file
|
After Width: | Height: | Size: 121 KiB |
BIN
test/18.jpeg
Normal file
|
After Width: | Height: | Size: 121 KiB |
BIN
test/19.jpeg
Normal file
|
After Width: | Height: | Size: 71 KiB |
BIN
test/20.jpeg
Normal file
|
After Width: | Height: | Size: 161 KiB |
BIN
test/21.jpeg
Normal file
|
After Width: | Height: | Size: 179 KiB |
BIN
test/22.jpeg
Normal file
|
After Width: | Height: | Size: 155 KiB |
BIN
test/23.jpeg
Normal file
|
After Width: | Height: | Size: 171 KiB |
BIN
test/24.jpeg
Normal file
|
After Width: | Height: | Size: 165 KiB |
BIN
test/25.jpeg
Normal file
|
After Width: | Height: | Size: 156 KiB |
BIN
test/26.jpeg
Normal file
|
After Width: | Height: | Size: 87 KiB |
BIN
test/27.jpeg
Normal file
|
After Width: | Height: | Size: 91 KiB |
BIN
test/28.jpeg
Normal file
|
After Width: | Height: | Size: 128 KiB |
BIN
test/29.jpeg
Normal file
|
After Width: | Height: | Size: 105 KiB |