-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcamera_blender
58 lines (44 loc) · 1.61 KB
/
camera_blender
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
import sys
import os
import time
import bpy
import bmesh
import cv2
# Adicionar o caminho do site-packages do Python do sistema
sys.path.append(r'C:\Users\marce\AppData\Roaming\Python\Python312\site-packages')
#-----------------------------------------------
bpy.ops.object.select_all(action='SELECT')
bpy.ops.object.delete(use_global=False)
bpy.ops.mesh.primitive_cube_add(size=2, location=(0, 0, 0))
cubo = bpy.context.active_object
cubo.location = (3, 3, 3)
#-----------------------------------------------
# Configuração do OpenCV
rosto = cv2.CascadeClassifier(cv2.data.haarcascades + 'haarcascade_frontalface_default.xml')
cap = cv2.VideoCapture(0)
if not cap.isOpened():
print("Não foi possível abrir a câmera")
exit()
while True:
ret, frame = cap.read()
if not ret:
print("Não foi possível receber a imagem...")
break
gray = cv2.cvtColor(frame, cv2.COLOR_BGR2GRAY)
# Detecção de rosto
leitura_rosto = rosto.detectMultiScale(gray, 1.1, 8)
for (rx, ry, rw, rh) in leitura_rosto:
img_rosto = cv2.rectangle(frame, (rx, ry), (rx + rw, ry + rh), (255, 0, 0), 2)
cinza = gray[ry:ry + rh, rx:rx + rw]
# Verifica se há rostos detectados
if len(leitura_rosto) > 0:
bpy.ops.object.select_all(action='SELECT')
bpy.ops.object.delete(use_global=False)
bpy.ops.mesh.primitive_cube_add(size=2, location=(5, 5, 5))
# Mostra a imagem com a detecção de rosto
cv2.imshow('img_rosto', frame)
# Fecha a janela se pressionar 'f'
if cv2.waitKey(1) == ord('f'):
break
cap.release()
cv2.destroyAllWindows()