Spaces:
Sleeping
Sleeping
File size: 39,116 Bytes
2bd8ec6 48236a9 2bd8ec6 6f1421f 2bd8ec6 |
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 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 |
import os
import time
import tempfile
import json
from zipfile import ZipFile
import smtplib
from email.mime.text import MIMEText
from email.mime.multipart import MIMEMultipart
import cv2
import numpy as np
import pandas as pd
from PIL import Image
import streamlit as st
from fpdf import FPDF
from st_aggrid import AgGrid
from st_aggrid.grid_options_builder import GridOptionsBuilder
from techsolut_theme import apply_techsolut_theme
from ultralytics import YOLO, RTDETR
from streamlit_webrtc import webrtc_streamer, VideoTransformerBase
###############################################################################
# FONCTIONS LIEES AU MODELE
###############################################################################
@st.cache_resource()
def load_model(model_choice, custom_model_path=None):
"""
Chargement du modèle YOLO/RT-DETR en fonction du choix utilisateur,
avec mise en cache pour accélérer le rechargement.
"""
detection_models = [
"yolov5nu", "yolov5s", "yolov5m", "yolov5l", "yolov5x",
"yolov8n", "yolov8s", "yolov8m", "yolov8l", "yolov8x",
"yolov9c", "yolov9e",
"yolov10n", "yolov10s", "yolov10m", "yolov10l", "yolov10x",
"yolo11n", "yolo11s", "yolo11m", "yolo11l", "yolo11x",
"yolo12n", "yolo12s", "yolo12m", "yolo12l", "yolo12x",
"rtdetr-l", "rtdetr-x"
]
segmentation_models = [
"yolov8n-seg", "yolov8s-seg", "yolov8m-seg", "yolov8l-seg", "yolov8x-seg",
"yolov9c-seg", "yolov9e-seg",
"yolo11n-seg", "yolo11s-seg", "yolo11m-seg", "yolo11l-seg", "yolo11x-seg"
]
pose_models = [
"yolov8n-pose", "yolov8s-pose", "yolov8m-pose", "yolov8l-pose", "yolov8x-pose",
"yolo11n-pose", "yolo11s-pose", "yolo11m-pose", "yolo11l-pose", "yolo11x-pose"
]
# Choix du modèle
if model_choice in detection_models + segmentation_models + pose_models:
return YOLO(f"{model_choice}.pt")
elif model_choice == 'custom' and custom_model_path:
return YOLO(custom_model_path)
else:
# Exemple pour gérer plusieurs PT nommés 'best.pt' ...
model_paths = ["best.pt", "best2.pt", "best3.pt", "best5.pt"]
model_names = ["model1", "model2", "model3", "model4"]
idx = model_names.index(model_choice)
return YOLO(model_paths[idx])
def detect_objects(model,
image,
model_type,
conf,
iou,
classes_to_detect=None,
max_det=1000,
line_width=2,
agnostic_nms=False):
"""
Détection sur une image unique, en tenant compte des filtres de classe,
du paramètre max_det, de l'épaisseur de bounding box, et du agnostic_nms.
"""
image_np = np.array(image) if not isinstance(image, np.ndarray) else image
# Inférence YOLO/RT-DETR
results = model(
image_np,
conf=conf,
iou=iou,
classes=classes_to_detect if classes_to_detect else None,
max_det=max_det,
agnostic_nms=agnostic_nms
)
annotated_image = results[0].plot(line_width=line_width)
return annotated_image, results
def count_objects(results, model_type, class_names):
"""
Compte le nombre d'objets détectés par classe.
"""
object_counts = {}
classes = results[0].boxes.cls.cpu().numpy()
for cls_id in classes:
name = class_names[int(cls_id)]
object_counts[name] = object_counts.get(name, 0) + 1
return object_counts
###############################################################################
# FONCTIONS D'EXPORT (PDF, ZIP, CSV, JSON)
###############################################################################
def export_pdf(images):
"""
Exporte une liste d'images PIL en un seul PDF avec un bouton de téléchargement.
"""
with tempfile.NamedTemporaryFile(delete=False, suffix=".pdf") as tmpfile:
pdf_path = tmpfile.name
images[0].save(pdf_path, save_all=True, append_images=images[1:])
with open(pdf_path, "rb") as f:
st.download_button("📄 Télécharger le PDF", data=f, file_name="resultats.pdf")
def export_zip(images):
"""
Exporte une liste d'images PIL dans un ZIP avec un bouton de téléchargement.
"""
with tempfile.NamedTemporaryFile(delete=False, suffix=".zip") as tmpfile:
zip_path = tmpfile.name
with ZipFile(zip_path, 'w') as zipf:
for i, img in enumerate(images):
img_filename = f"image_{i}.png"
img.save(img_filename)
zipf.write(img_filename)
os.remove(img_filename)
with open(zip_path, "rb") as f:
st.download_button("🗜️ Télécharger le ZIP", data=f, file_name="resultats.zip")
def export_csv_rows(csv_rows):
"""
Exporte les détections dans un CSV avec un bouton de téléchargement.
"""
df = pd.DataFrame(csv_rows)
csv_data = df.to_csv(index=False).encode("utf-8")
st.download_button("📤 Télécharger CSV des détections", data=csv_data,
file_name="detections.csv", mime="text/csv")
###############################################################################
# AFFICHAGE DU TABLEAU (st_aggrid)
###############################################################################
def show_table(data, key=None):
"""
Affiche un tableau récapitulatif (classe / nombre d'objets détectés).
"""
df = pd.DataFrame(list(data.items()), columns=["Classe", "Nombre"])
gb = GridOptionsBuilder.from_dataframe(df)
gb.configure_pagination()
gb.configure_default_column(editable=False, groupable=True)
gb.configure_selection('multiple', use_checkbox=True)
grid_options = gb.build()
AgGrid(df, gridOptions=grid_options, theme="streamlit", key=key)
###############################################################################
# FONCTIONS ENVOI EMAIL & SAUVEGARDE SUR LE CLOUD
###############################################################################
def send_notification_smtp(to_email, message):
"""
Envoi d'un email via SMTP, nécessite des identifiants valides dans st.secrets.
"""
smtp_server = st.secrets.get("SMTP_SERVER", "smtp.gmail.com")
smtp_port = int(st.secrets.get("SMTP_PORT", 587))
smtp_user = st.secrets.get("SMTP_USER", "your_email@gmail.com")
smtp_pass = st.secrets.get("SMTP_PASS", "your_password")
try:
msg = MIMEMultipart("alternative")
msg["Subject"] = "YOLO Detection Notification"
msg["From"] = smtp_user
msg["To"] = to_email
part = MIMEText(message, "plain")
msg.attach(part)
with smtplib.SMTP(smtp_server, smtp_port) as server:
server.starttls()
server.login(smtp_user, smtp_pass)
server.sendmail(smtp_user, to_email, msg.as_string())
st.success(f"Email envoyé à {to_email} avec succès!")
except Exception as e:
st.error(f"Erreur lors de l'envoi du mail: {e}")
def save_to_cloud(file_data, service):
"""
Fonction illustrative pour sauvegarder des données sur Google Drive / Dropbox / OneDrive.
Remplacer avec du code d'API réel selon le service.
"""
if service == "Google Drive":
st.info("Exemple : utiliser PyDrive ou Google Drive API.")
elif service == "Dropbox":
st.info("Exemple : utiliser le SDK Dropbox pour l'upload.")
elif service == "OneDrive":
st.info("Exemple : utiliser le SDK OneDrive (MS Graph).")
st.success(f"Sauvegarde simulée sur {service} réalisée avec succès !")
###############################################################################
# TRANSFORMER POUR STREAMLIT_WEBRTC (VIDEO TEMPS REEL)
###############################################################################
class VideoTransformer(VideoTransformerBase):
def __init__(
self,
model,
conf=0.25,
iou=0.45,
show_fps=False,
auto_snapshot=False,
snapshot_interval=5,
output_format="RGB",
apply_filters=False,
advanced_filters=False,
rotation_angle=0,
resize_width=None,
resize_height=None,
detection_zone=None,
notification_email=None,
save_to_cloud=False,
morphological_ops=False,
equalize_hist=False,
classes_to_detect=None,
max_det=1000,
line_width=2,
record_output=False,
agnostic_nms=False
):
"""
Gère chaque frame de la webcam en temps réel, applique YOLO,
différents filtres, la rotation, la sauvegarde locale, etc.
"""
self.model = model
self.conf = conf
self.iou = iou
self.show_fps = show_fps
self.auto_snapshot = auto_snapshot
self.snapshot_interval = snapshot_interval
self.output_format = output_format.upper()
self.apply_filters = apply_filters
self.advanced_filters = advanced_filters
self.rotation_angle = rotation_angle
self.resize_width = resize_width
self.resize_height = resize_height
self.detection_zone = detection_zone
self.notification_email = notification_email
self.save_to_cloud = save_to_cloud
self.morphological_ops = morphological_ops
self.equalize_hist = equalize_hist
self.classes_to_detect = classes_to_detect
self.max_det = max_det
self.line_width = line_width
self.record_output = record_output
self.agnostic_nms = agnostic_nms
self.last_time = time.time()
self.last_snapshot_time = time.time()
self.latest_snapshot = None
self.last_frame = None
# Configuration pour l'enregistrement local si besoin
self.video_writer = None
if self.record_output:
self.output_filename = os.path.join(tempfile.gettempdir(),
f"webcam_record_{time.time()}.mp4")
def transform(self, frame):
image = frame.to_ndarray(format="bgr24")
self.last_frame = image.copy()
# Initialiser la sauvegarde si besoin
if self.record_output and self.video_writer is None:
fourcc = cv2.VideoWriter_fourcc(*"mp4v")
h, w, _ = image.shape
self.video_writer = cv2.VideoWriter(self.output_filename, fourcc, 20.0, (w, h))
# Application de filtres simples
if self.apply_filters:
image = cv2.cvtColor(image, cv2.COLOR_BGR2GRAY)
image = cv2.GaussianBlur(image, (5, 5), 0)
image = cv2.cvtColor(image, cv2.COLOR_GRAY2BGR)
# Filtres avancés (contraste, luminosité)
if self.advanced_filters:
image = cv2.convertScaleAbs(image, alpha=1.5, beta=30)
# Opérations morphologiques
if self.morphological_ops:
kernel = np.ones((3,3), np.uint8)
image = cv2.morphologyEx(image, cv2.MORPH_OPEN, kernel)
image = cv2.morphologyEx(image, cv2.MORPH_CLOSE, kernel)
# Egalisation d'histogramme
if self.equalize_hist:
yuv = cv2.cvtColor(image, cv2.COLOR_BGR2YUV)
yuv[:, :, 0] = cv2.equalizeHist(yuv[:, :, 0])
image = cv2.cvtColor(yuv, cv2.COLOR_YUV2BGR)
# Rotation
if self.rotation_angle != 0:
image = self.rotate_image(image, self.rotation_angle)
# Redimensionnement
if self.resize_width and self.resize_height:
image = cv2.resize(image, (self.resize_width, self.resize_height))
# Zone de détection
if self.detection_zone:
x, y, w, h = self.detection_zone
image = image[y:y+h, x:x+w]
# Inférence YOLO
results = self.model(
image,
conf=self.conf,
iou=self.iou,
classes=self.classes_to_detect if self.classes_to_detect else None,
max_det=self.max_det,
agnostic_nms=self.agnostic_nms
)
annotated_frame = results[0].plot(line_width=self.line_width)
# Affichage FPS
current_time = time.time()
dt = current_time - self.last_time
fps = 1.0 / dt if dt > 0 else 0.0
self.last_time = current_time
if self.show_fps:
cv2.putText(annotated_frame, f"FPS: {fps:.2f}", (10, 30),
cv2.FONT_HERSHEY_SIMPLEX, 1, (0, 255, 0), 2)
# Auto Snapshot
if self.auto_snapshot and (current_time - self.last_snapshot_time >= self.snapshot_interval):
self.last_snapshot_time = current_time
self.latest_snapshot = annotated_frame.copy()
# Enregistrement local
if self.record_output and self.video_writer is not None:
self.video_writer.write(annotated_frame)
# Format de sortie (RGB vs BGR)
if self.output_format == "RGB":
display_frame = cv2.cvtColor(annotated_frame, cv2.COLOR_BGR2RGB)
else:
display_frame = annotated_frame
# Notification email
if self.notification_email and any(results):
send_notification_smtp(self.notification_email, "Détection réalisée sur le flux webcam !")
# Sauvegarde sur le cloud si détection
if self.save_to_cloud and any(results):
_, buffer = cv2.imencode('.png', annotated_frame)
save_to_cloud(buffer.tobytes(), "Google Drive")
return display_frame
def rotate_image(self, image, angle):
(h, w) = image.shape[:2]
center = (w / 2, h / 2)
M = cv2.getRotationMatrix2D(center, angle, 1.0)
return cv2.warpAffine(image, M, (w, h))
def __del__(self):
if self.video_writer:
self.video_writer.release()
###############################################################################
# TRAITEMENT DE VIDEOS (FICHIER LOCAL)
###############################################################################
def process_video_file(
video_path,
model,
conf,
iou,
export_type,
classes_to_detect=None,
max_det=1000,
line_width=2,
agnostic_nms=False
):
"""
Traite une vidéo en local, affiche certaines frames annotées,
et propose l'exportation des résultats.
"""
cap = cv2.VideoCapture(video_path)
if not cap.isOpened():
st.error("🚫 Impossible d'ouvrir la vidéo.")
return
frame_count = int(cap.get(cv2.CAP_PROP_FRAME_COUNT))
st.info(f"🎞️ Vidéo chargée, {frame_count} frames trouvées.")
process_only_first = st.checkbox("Traiter seulement la première frame", value=True)
output_images = []
csv_rows = []
if process_only_first:
ret, frame = cap.read()
if ret:
pil_img = Image.fromarray(cv2.cvtColor(frame, cv2.COLOR_BGR2RGB))
annotated_frame, results = detect_objects(
model=model,
image=pil_img,
model_type="Vidéo",
conf=conf,
iou=iou,
classes_to_detect=classes_to_detect,
max_det=max_det,
line_width=line_width,
agnostic_nms=agnostic_nms
)
st.image(annotated_frame, channels="BGR", caption="🖼️ Première frame annotée")
output_images.append(Image.fromarray(cv2.cvtColor(annotated_frame, cv2.COLOR_BGR2RGB)))
counts = count_objects(results, "Vidéo", model.names if hasattr(model, 'names') else [])
for cls_name, count_val in counts.items():
csv_rows.append({"Image": "frame_0", "Classe": cls_name, "Nombre": count_val})
else:
st.error("🚫 Impossible de lire la première frame.")
else:
num_frames_to_process = st.slider("Nombre de frames à traiter", 1, min(frame_count, 50), 10)
frame_idx = 0
processed = 0
interval = max(1, frame_count // num_frames_to_process)
while processed < num_frames_to_process:
ret, frame = cap.read()
if not ret:
break
if frame_idx % interval == 0:
pil_img = Image.fromarray(cv2.cvtColor(frame, cv2.COLOR_BGR2RGB))
annotated_frame, results = detect_objects(
model=model,
image=pil_img,
model_type="Vidéo",
conf=conf,
iou=iou,
classes_to_detect=classes_to_detect,
max_det=max_det,
line_width=line_width,
agnostic_nms=agnostic_nms
)
st.image(annotated_frame, channels="BGR", caption=f"🖼️ Frame {frame_idx} annotée")
output_images.append(Image.fromarray(cv2.cvtColor(annotated_frame, cv2.COLOR_BGR2RGB)))
counts = count_objects(results, "Vidéo", model.names if hasattr(model, 'names') else [])
for cls_name, count_val in counts.items():
csv_rows.append({"Image": f"frame_{frame_idx}", "Classe": cls_name, "Nombre": count_val})
processed += 1
frame_idx += 1
cap.release()
# Export
if output_images:
if export_type == "PDF":
export_pdf(output_images)
elif export_type == "ZIP":
export_zip(output_images)
elif export_type == "CSV":
export_csv_rows(csv_rows)
elif export_type == "JSON":
json_data = json.dumps(csv_rows, indent=4)
st.download_button("📥 Télécharger JSON des détections",
data=json_data,
file_name="detections.json",
mime="application/json")
###############################################################################
# GESTION OPTIMISEE DES WEBCAMS: AFFICHER PLUSIEURS CAMERAS
###############################################################################
def display_webcam_streams(
selected_devices,
model,
conf,
iou,
show_fps,
auto_snapshot,
snapshot_interval,
output_format,
apply_filters,
advanced_filters,
rotation_angle,
resize_width,
resize_height,
detection_zone,
notification_email,
save_to_cloud,
morphological_ops,
equalize_hist,
classes_to_detect,
max_det,
line_width,
record_output,
agnostic_nms
):
"""
Affiche plusieurs webcams simultanément, organisées en lignes de 4 caméras max.
Chaque webcam possède sa propre instance de VideoTransformer.
"""
if not selected_devices:
st.warning("Aucune webcam sélectionnée.")
return
# Découper la liste de caméras en groupes de 4 pour l'affichage en grille
for row_start in range(0, len(selected_devices), 4):
row_devices = selected_devices[row_start:row_start+4]
cols = st.columns(len(row_devices))
for i, device_index in enumerate(row_devices):
with cols[i]:
st.markdown(f"**Caméra {device_index}**")
ctx = webrtc_streamer(
key=f"webcam-{device_index}",
video_transformer_factory=lambda m=model, c=conf, iou_val=iou: VideoTransformer(
m,
conf=c,
iou=iou_val,
show_fps=show_fps,
auto_snapshot=auto_snapshot,
snapshot_interval=snapshot_interval,
output_format=output_format,
apply_filters=apply_filters,
advanced_filters=advanced_filters,
rotation_angle=rotation_angle,
resize_width=resize_width,
resize_height=resize_height,
detection_zone=detection_zone,
notification_email=notification_email,
save_to_cloud=save_to_cloud,
morphological_ops=morphological_ops,
equalize_hist=equalize_hist,
classes_to_detect=classes_to_detect,
max_det=max_det,
line_width=line_width,
record_output=record_output,
agnostic_nms=agnostic_nms
),
rtc_configuration={"iceServers": [{"urls": ["stun:stun.l.google.com:19302"]}]},
media_stream_constraints={
"video": {"deviceId": {"exact": str(device_index)}},
"audio": False
}
)
# Bouton de snapshot manuel
if st.button(f"📸 Snapshot Caméra {device_index}", key=f"snap-{device_index}"):
if ctx.video_transformer:
frame = ctx.video_transformer.last_frame
if frame is not None:
st.image(frame, caption=f"Snapshot Caméra {device_index}", channels="BGR")
else:
st.warning("🚫 Aucune image capturée pour cette caméra.")
# Snapshot automatique téléchargeable
if auto_snapshot and ctx.video_transformer and ctx.video_transformer.latest_snapshot is not None:
ret, buffer = cv2.imencode('.png', ctx.video_transformer.latest_snapshot)
if ret:
snapshot_bytes = buffer.tobytes()
st.download_button(
label="📥 Télécharger Snapshot Auto",
data=snapshot_bytes,
file_name=f"snapshot_cam_{device_index}.png",
key=f"auto_snap_{device_index}"
)
###############################################################################
# GESTION CAMERA IP
###############################################################################
def display_ip_camera(
ip_url,
model,
conf,
iou,
show_fps,
auto_snapshot,
snapshot_interval,
output_format,
classes_to_detect=None,
max_det=1000,
line_width=2,
agnostic_nms=False
):
"""
Lit des frames depuis une caméra IP (RTSP), applique YOLO, et les affiche en temps réel.
"""
cap = cv2.VideoCapture(ip_url)
if not cap.isOpened():
st.error("🚫 Impossible d'ouvrir la caméra IP.")
return
frame_placeholder = st.empty()
last_time = time.time()
last_snapshot_time = time.time()
stop_button = st.button("⏹️ Arrêter le streaming IP")
while True:
if stop_button:
st.info("Arrêt du streaming IP.")
break
ret, frame = cap.read()
if not ret:
st.error("🚫 Erreur de lecture du flux IP.")
break
# Inférence YOLO
results = model(
frame,
conf=conf,
iou=iou,
classes=classes_to_detect if classes_to_detect else None,
max_det=max_det,
agnostic_nms=agnostic_nms
)
annotated_frame = results[0].plot(line_width=line_width)
# FPS
current_time = time.time()
dt = current_time - last_time
fps = 1.0 / dt if dt > 0 else 0.0
last_time = current_time
if show_fps:
cv2.putText(annotated_frame, f"FPS: {fps:.2f}", (10, 30),
cv2.FONT_HERSHEY_SIMPLEX, 1, (0, 255, 0), 2)
# Auto-snapshot
if auto_snapshot and (current_time - last_snapshot_time >= snapshot_interval):
last_snapshot_time = current_time
snapshot_bytes = cv2.imencode('.png', annotated_frame)[1].tobytes()
st.download_button(
"📥 Télécharger Snapshot Auto",
data=snapshot_bytes,
file_name="ip_snapshot.png",
key=f"ip_snapshot_{time.time()}"
)
# Format de sortie
if output_format.upper() == "RGB":
annotated_frame = cv2.cvtColor(annotated_frame, cv2.COLOR_BGR2RGB)
frame_placeholder.image(
annotated_frame,
channels="RGB" if output_format.upper()=="RGB" else "BGR"
)
cap.release()
###############################################################################
# APPLICATION PRINCIPALE
###############################################################################
def main():
apply_techsolut_theme()
# st.set_page_config(page_title="Plateforme de Vision par Ordinateur - TECHSOLUT", layout="wide")
# st.title("👁️ Vision par Ordinateur - TECHSOLUT (Multi-Webcams Optimisé)")
# 1) Choix du modèle
model_versions = {
"Détection": {
"YOLOv5": ["yolov5nu", "yolov5s", "yolov5m", "yolov5l", "yolov5x"],
"YOLOv8": ["yolov8n", "yolov8s", "yolov8m", "yolov8l", "yolov8x"],
"YOLOv9": ["yolov9c", "yolov9e"],
"YOLOv10": ["yolov10n", "yolov10s", "yolov10m", "yolov10l", "yolov10x"],
"YOLO11": ["yolo11n", "yolo11s", "yolo11m", "yolo11l", "yolo11x"],
"YOLO12": ["yolo12n", "yolo12s", "yolo12m", "yolo12l", "yolo12x"],
"RT-DETR": ["rtdetr-l", "rtdetr-x"]
},
"Segmentation": {
"YOLOv8": ["yolov8n-seg", "yolov8s-seg", "yolov8m-seg", "yolov8l-seg", "yolov8x-seg"],
"YOLOv9": ["yolov9c-seg", "yolov9e-seg"],
"YOLO11": ["yolo11n-seg", "yolo11s-seg", "yolo11m-seg", "yolo11l-seg", "yolo11x-seg"]
},
"Estimation de pose": {
"YOLOv8": ["yolov8n-pose", "yolov8s-pose", "yolov8m-pose", "yolov8l-pose", "yolov8x-pose"],
"YOLO11": ["yolo11n-pose", "yolo11s-pose", "yolo11m-pose", "yolo11l-pose", "yolo11x-pose"]
},
"Personnalisé": {
"Custom": ["custom"]
}
}
with st.sidebar:
with st.expander("🧠 Choix du modèle"):
task_type = st.selectbox("Type de tâche", list(model_versions.keys()))
model_family = st.selectbox("Famille de modèle", list(model_versions[task_type].keys()))
selected_model = st.selectbox("Version du modèle", model_versions[task_type][model_family])
custom_model_path = None
if selected_model == "custom":
uploaded_file = st.file_uploader("📥 Charger un modèle (.pt)", type=["pt"])
if uploaded_file:
with tempfile.NamedTemporaryFile(delete=False, suffix=".pt") as tmp:
tmp.write(uploaded_file.read())
custom_model_path = tmp.name
with st.expander("🎯 Paramètres"):
conf = st.slider("Confiance (confidence threshold)", 0.0, 1.0, 0.25)
iou = st.slider("IoU threshold", 0.0, 1.0, 0.45)
input_size = st.selectbox("Taille d'entrée du modèle",
options=[320, 416, 512, 640, 960, 1280],
index=3)
processing_mode = st.radio("Mode de traitement",
options=["Image par image", "Traitement par lot"],
horizontal=True)
show_fps = st.checkbox("Afficher le FPS sur la vidéo", value=False)
auto_snapshot = st.checkbox("Téléchargement automatique des snapshots", value=False)
output_format = st.selectbox("Format de sortie des frames", options=["BGR", "RGB"], index=1)
snapshot_interval = st.number_input("Sauvegarder une frame toutes les X secondes",
min_value=1, max_value=60, value=5, step=1)
apply_filters = st.checkbox("Appliquer des filtres (grayscale + flou)", value=False)
advanced_filters = st.checkbox("Appliquer des filtres avancés (contraste + luminosité)", value=False)
rotation_angle = st.number_input("Angle de rotation", min_value=0, max_value=360, value=0, step=1)
resize_width = st.number_input("Largeur de redimensionnement", min_value=1, value=640, step=1)
resize_height = st.number_input("Hauteur de redimensionnement", min_value=1, value=480, step=1)
detection_zone = st.checkbox("Définir une zone de détection")
if detection_zone:
x = st.number_input("Zone X", min_value=0, value=0, step=1)
y = st.number_input("Zone Y", min_value=0, value=0, step=1)
w = st.number_input("Zone Largeur", min_value=1, value=640, step=1)
h = st.number_input("Zone Hauteur", min_value=1, value=480, step=1)
detection_zone = (x, y, w, h)
else:
detection_zone = None
notification_email = st.text_input("Email pour notifications")
save_to_cloud_flag = st.checkbox("Sauvegarder les résultats sur le cloud")
with st.expander("🧩 Options Avancées"):
morphological_ops = st.checkbox("Opérations morphologiques (opening/closing)")
equalize_hist = st.checkbox("Égaliser l'histogramme (améliorer contraste)")
custom_classes = st.text_input("Lister les classes (ID, séparés par des virgules) à détecter ou laisser vide")
if custom_classes.strip():
classes_to_detect = [int(c.strip()) for c in custom_classes.split(",") if c.strip().isdigit()]
else:
classes_to_detect = None
max_det = st.number_input("Max Detections autorisées", min_value=1, max_value=10000, value=1000, step=50)
line_width = st.slider("Épaisseur des bounding boxes", 1, 10, 2)
record_output = st.checkbox("Enregistrer les flux webcam en local (format MP4)")
agnostic_nms = st.checkbox("Agnostic NMS (ignorer les classes lors du NMS)")
with st.expander("🖍️ Post-traitement"):
export_type = st.selectbox("Exporter sous", ["PDF", "ZIP", "CSV", "JSON"])
with st.expander("☁️ Sauvegarde Cloud"):
cloud_service = st.selectbox("Choisir un service", ["Google Drive", "Dropbox", "OneDrive"])
cloud_file = st.file_uploader("📤 Sélectionner un fichier à sauvegarder",
type=["pdf", "zip", "csv", "jpg", "png", "json"])
if cloud_file:
if st.button(f"Sauvegarder sur {cloud_service}"):
save_to_cloud(cloud_file.read(), cloud_service)
# -------------------------------------------------------------------------
# 2) CHARGEMENT DU MODELE
# -------------------------------------------------------------------------
model = load_model(selected_model, custom_model_path)
class_names = model.names if hasattr(model, 'names') else []
# -------------------------------------------------------------------------
# 3) SECTION CENTRALE: CHOIX DE LA SOURCE
# -------------------------------------------------------------------------
st.subheader("Source : 🖼️ Image, 🎥 Vidéo, 📷 Webcam, 🌐 Caméra IP ou 🔄 Relecture")
input_type = st.radio("Source", ["Image", "Vidéo", "Webcam", "Caméra IP", "Relecture"], horizontal=True)
# ================== 1) IMAGE ==================
if input_type == "Image":
uploaded_images = st.file_uploader("📁 Choisir des images", type=["jpg", "png"], accept_multiple_files=True)
if uploaded_images:
output_images = []
csv_rows = []
for img_file in uploaded_images:
image = Image.open(img_file).convert("RGB")
st.image(image, caption=f"🖼️ {img_file.name}")
annotated_image, results = detect_objects(
model=model,
image=image,
model_type=task_type,
conf=conf,
iou=iou,
classes_to_detect=classes_to_detect,
max_det=max_det,
line_width=line_width,
agnostic_nms=agnostic_nms
)
st.image(annotated_image, caption="🖼️ Image annotée")
# Convert BGR->RGB PIL pour stockage
output_images.append(Image.fromarray(cv2.cvtColor(annotated_image, cv2.COLOR_BGR2RGB)))
counts = count_objects(results, task_type, class_names)
for cls_name, count_val in counts.items():
csv_rows.append({"Image": img_file.name, "Classe": cls_name, "Nombre": count_val})
show_table(counts)
# Export
if output_images:
if export_type == "PDF":
export_pdf(output_images)
elif export_type == "ZIP":
export_zip(output_images)
elif export_type == "CSV":
export_csv_rows(csv_rows)
elif export_type == "JSON":
json_data = json.dumps(csv_rows, indent=4)
st.download_button("📥 Télécharger JSON des détections",
data=json_data,
file_name="detections.json",
mime="application/json")
if save_to_cloud_flag:
st.info("Exemple: sauvegarde ZIP des images sur Cloud.")
with tempfile.NamedTemporaryFile(delete=False, suffix=".zip") as tmpfile:
zip_path = tmpfile.name
with ZipFile(zip_path, 'w') as zipf:
for i, img in enumerate(output_images):
img_filename = f"cloud_image_{i}.png"
img.save(img_filename)
zipf.write(img_filename)
os.remove(img_filename)
with open(zip_path, "rb") as f:
zip_data = f.read()
save_to_cloud(zip_data, cloud_service)
os.remove(zip_path)
# ================== 2) VIDEO ==================
elif input_type == "Vidéo":
uploaded_video = st.file_uploader("📁 Choisir une vidéo", type=["mp4", "avi", "mov"], accept_multiple_files=False)
if uploaded_video is not None:
tfile = tempfile.NamedTemporaryFile(delete=False, suffix=".mp4")
tfile.write(uploaded_video.read())
tfile.close()
process_video_file(
video_path=tfile.name,
model=model,
conf=conf,
iou=iou,
export_type=export_type,
classes_to_detect=classes_to_detect,
max_det=max_det,
line_width=line_width,
agnostic_nms=agnostic_nms
)
os.unlink(tfile.name)
# ================== 3) MULTI-WEBCAM ==================
elif input_type == "Webcam":
st.info("Recherche de toutes les webcams disponibles...")
available_devices = []
# Scanner 0..20 pour découvrir potentiellement plus de webcams
for index in range(21):
cap = cv2.VideoCapture(index)
if cap.isOpened():
ret, _ = cap.read()
if ret:
available_devices.append(index)
cap.release()
if len(available_devices) == 0:
st.error("🚫 Aucune webcam détectée ou accessible.")
else:
st.success(f"Webcams détectées : {available_devices}")
selected_devices = st.multiselect(
"Sélectionner les caméras à utiliser (max 4 affichées par rangée)",
options=available_devices,
default=available_devices[:1],
format_func=lambda x: f"Caméra {x}"
)
if selected_devices:
display_webcam_streams(
selected_devices=selected_devices,
model=model,
conf=conf,
iou=iou,
show_fps=show_fps,
auto_snapshot=auto_snapshot,
snapshot_interval=snapshot_interval,
output_format=output_format,
apply_filters=apply_filters,
advanced_filters=advanced_filters,
rotation_angle=rotation_angle,
resize_width=resize_width,
resize_height=resize_height,
detection_zone=detection_zone,
notification_email=notification_email,
save_to_cloud=save_to_cloud_flag,
morphological_ops=morphological_ops,
equalize_hist=equalize_hist,
classes_to_detect=classes_to_detect,
max_det=max_det,
line_width=line_width,
record_output=record_output,
agnostic_nms=agnostic_nms
)
# ================== 4) CAMERA IP ==================
elif input_type == "Caméra IP":
st.info("Activation de la caméra IP...")
ip_url = st.text_input("Entrez l'URL RTSP", value="rtsp://")
if st.button("Démarrer le streaming IP"):
display_ip_camera(
ip_url=ip_url,
model=model,
conf=conf,
iou=iou,
show_fps=show_fps,
auto_snapshot=auto_snapshot,
snapshot_interval=snapshot_interval,
output_format=output_format,
classes_to_detect=classes_to_detect,
max_det=max_det,
line_width=line_width,
agnostic_nms=agnostic_nms
)
# ================== 5) RELECTURE ==================
elif input_type == "Relecture":
st.info("Relecture de vidéos enregistrées")
recorded_video = st.file_uploader("📁 Charger une vidéo enregistrée",
type=["mp4", "avi", "mov"],
accept_multiple_files=False)
if recorded_video is not None:
st.video(recorded_video)
###############################################################################
# LANCEMENT DU SCRIPT
###############################################################################
if __name__ == "__main__":
main()
|