selective_search.py
# Ce travail est publié sous licence MIT.
# Copyright (c) 2013-2023 OpenMV LLC. Tous droits réservés.
# https://github.com/openmv/openmv/blob/master/LICENSE
#
# Exemple de recherche sélective (Selective Search)
import csi
import time
csi0 = csi.CSI()
csi0.reset() # Réinitialiser et initialiser le capteur.
csi0.pixformat(csi.RGB565) # Définir le format de pixel sur RGB565 (ou GRAYSCALE)
csi0.framesize(csi.QVGA) # Définir la taille de l'image sur QVGA (320x240)
csi0.snapshot(time=2000) # Attendre que les réglages prennent effet.
csi0.auto_gain(False)
csi0.auto_exposure(False, exposure_us=10000)
clock = time.clock() # Créer un objet horloge pour suivre le FPS.
while True:
clock.tick() # Mettre à jour l'horloge FPS.
img = csi0.snapshot() # Prendre une photo et renvoyer l'image.
rois = img.selective_search(threshold=200, size=20, a1=0.5, a2=1.0, a3=1.0)
for r in rois:
img.draw_rectangle(r, color=(255, 0, 0))
# from random import randint
# img.draw_rectangle(r, color=(randint(100, 255), randint(100, 255), randint(100, 255)))
print(clock.fps())