Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
N
Nekoma Tech
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Chevalier Paul
Nekoma Tech
Commits
1926de94
Commit
1926de94
authored
1 week ago
by
Paul Chevalier
Browse files
Options
Downloads
Patches
Plain Diff
ajout du code perdu
parent
35cf1f56
Branches
main
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
code_perdu.py
+98
-0
98 additions, 0 deletions
code_perdu.py
with
98 additions
and
0 deletions
code_perdu.py
0 → 100644
+
98
−
0
View file @
1926de94
import
cv2
import
tkinter
as
tk
from
tkinter
import
ttk
from
PIL
import
Image
,
ImageTk
import
threading
class
CameraSelector
:
def
__init__
(
self
,
root
):
self
.
root
=
root
self
.
root
.
title
(
"
Sélection de caméra
"
)
self
.
cameras
=
[]
self
.
current_camera
=
None
self
.
video_source
=
None
# Détection des caméras disponibles
self
.
detect_cameras
()
# Interface graphique
self
.
create_widgets
()
def
detect_cameras
(
self
):
"""
Détecte toutes les caméras disponibles jusqu
'
à l
'
index 10
"""
self
.
cameras
=
[]
for
i
in
range
(
10
):
# Vous pouvez augmenter ce nombre si nécessaire
cap
=
cv2
.
VideoCapture
(
i
)
if
cap
.
isOpened
():
self
.
cameras
.
append
(
i
)
cap
.
release
()
def
create_widgets
(
self
):
"""
Crée l
'
interface utilisateur
"""
# Cadre principal
main_frame
=
ttk
.
Frame
(
self
.
root
,
padding
=
10
)
main_frame
.
pack
()
# Sélection de caméra
ttk
.
Label
(
main_frame
,
text
=
"
Caméras détectées:
"
).
pack
()
self
.
camera_var
=
tk
.
StringVar
()
self
.
cam_selector
=
ttk
.
Combobox
(
main_frame
,
textvariable
=
self
.
camera_var
)
self
.
cam_selector
[
'
values
'
]
=
[
f
"
Caméra
{
i
}
"
for
i
in
self
.
cameras
]
self
.
cam_selector
.
pack
(
pady
=
5
)
# Bouton de confirmation
ttk
.
Button
(
main_frame
,
text
=
"
Ouvrir
"
,
command
=
self
.
start_camera
).
pack
(
pady
=
5
)
# Zone d'affichage vidéo
self
.
video_label
=
ttk
.
Label
(
main_frame
)
self
.
video_label
.
pack
()
def
start_camera
(
self
):
"""
Démarre le flux vidéo de la caméra sélectionnée
"""
if
self
.
current_camera
is
not
None
:
self
.
stop_camera
()
selected
=
self
.
cam_selector
.
current
()
if
selected
==
-
1
:
return
self
.
video_source
=
self
.
cameras
[
selected
]
self
.
current_camera
=
cv2
.
VideoCapture
(
self
.
video_source
)
# Démarrer l'affichage vidéo dans un thread séparé
self
.
thread
=
threading
.
Thread
(
target
=
self
.
show_video
)
self
.
thread
.
daemon
=
True
self
.
thread
.
start
()
def
show_video
(
self
):
"""
Affiche le flux vidéo dans le label
"""
while
self
.
current_camera
.
isOpened
():
ret
,
frame
=
self
.
current_camera
.
read
()
if
ret
:
# Conversion de l'image pour Tkinter
frame
=
cv2
.
cvtColor
(
frame
,
cv2
.
COLOR_BGR2RGB
)
img
=
Image
.
fromarray
(
frame
)
imgtk
=
ImageTk
.
PhotoImage
(
image
=
img
)
# Mise à jour de l'interface
self
.
video_label
.
configure
(
image
=
imgtk
)
self
.
video_label
.
image
=
imgtk
else
:
break
def
stop_camera
(
self
):
"""
Arrête le flux vidéo
"""
if
self
.
current_camera
is
not
None
:
self
.
current_camera
.
release
()
self
.
video_label
.
configure
(
image
=
''
)
self
.
video_label
.
image
=
None
def
on_close
(
self
):
self
.
stop_camera
()
self
.
root
.
destroy
()
if
__name__
==
"
__main__
"
:
root
=
tk
.
Tk
()
app
=
CameraSelector
(
root
)
root
.
protocol
(
"
WM_DELETE_WINDOW
"
,
app
.
on_close
)
root
.
mainloop
()
\ No newline at end of file
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment