-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgrab_flir.py
49 lines (40 loc) · 1.34 KB
/
grab_flir.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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
# import PySpin
import EasyPySpin
import cv2
import sys
import time
# Number of images to be grabbed.
countOfImagesToGrab = 120
cam_id = 0
# The exit code of the sample application.
exitCode = 0
start_t = time.perf_counter()
# try:
cap = EasyPySpin.VideoCapture(cam_id)
# cap.set_pyspin_value("AdcBitDepth", "Bit12")
cap.set_pyspin_value("PixelFormat", "Mono8")
cap.set_pyspin_value("Height", 1280)
cap.set_pyspin_value("Width", 1280)
cap.set_pyspin_value("frame_rate_auto", 'Off')
cap.set_pyspin_value("AcquisitionFrameRateEnable", True)
cap.set_pyspin_value("AcquisitionFrameRate", 70)
# cap.set_pyspin_value("Frame Rate", 120)
# fps = cap.set(cv2.CAP_PROP_FPS, 60)
width = cap.get(cv2.CAP_PROP_FRAME_WIDTH)
# width = cap.get_pyspin_value("Width")
height = cap.get(cv2.CAP_PROP_FRAME_HEIGHT)
fps = cap.get(cv2.CAP_PROP_FPS)
# cap.get_pyspin_value("GammaEnable")
name = cap.get_pyspin_value("DeviceModelName")
fps = cap.get_pyspin_value("AcquisitionFrameRate")
print(f'name: {name}, width: {width}, height: {height}, fps: {fps}')
for i in range(countOfImagesToGrab):
ret, frame = cap.read()
cv2.imshow('flir cam', frame)
k = cv2.waitKey(1)
if i % 30 == 0:
print(f'name: {name}, width: {width}, height: {height}, fps: {fps}')
if k in [27, ord('q')]:
break
print(f'elapsed time: {time.perf_counter() - start_t}')
cap.release()