-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcamera.py
35 lines (23 loc) · 813 Bytes
/
camera.py
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
from PIL import Image, ImageTk
import cv2
class Camera(cv2.VideoCapture):
__mirror = False
def read(self):
"""
Retorna um PhotoImage e o tamanho da imagem.
"""
# Obtém frame da câmera.
status , frame = super().read()
if not status: return
# Obtém a imagem.
frame = cv2.cvtColor(frame, cv2.COLOR_BGR2RGB)
frame = Image.fromarray(frame)
# Se a opção de efeito espelho estiver ativa, a imagem será invertida.
if self.__mirror:
frame = frame.transpose(Image.FLIP_LEFT_RIGHT)
return ImageTk.PhotoImage(frame) , frame.size
def mirror(self):
"""
Habilita ou desabilita o efeito espelho.
"""
self.__mirror = not self.__mirror