From 48e06828ea3d3cdea0b965154a8f4c6579a48a8a Mon Sep 17 00:00:00 2001 From: mht Date: Thu, 6 Mar 2025 15:04:31 +0330 Subject: [PATCH] added capture card --- cvStreamer.py | 52 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 52 insertions(+) create mode 100644 cvStreamer.py diff --git a/cvStreamer.py b/cvStreamer.py new file mode 100644 index 0000000..8143f01 --- /dev/null +++ b/cvStreamer.py @@ -0,0 +1,52 @@ +import cv2 +from pywt.version import release + + +class cvStreamer(): + def __init__(self, idx): + self.cap = cv2.VideoCapture(idx) + self.idx = idx + + def isOpened(self): + isOpen = self.cap.isOpened() + + if not isOpen: + self.release() + else: + print(f"usb cam open at {self.idx}") + + + return isOpen + + def release(self): + self.cap.release() + + def get_frame(self): + _, frame = self.cap.read() + + # Get the original dimensions of the frame + height, width = frame.shape[:2] + + # Define the maximum dimensions + max_width = 1920 + max_height = 1080 + + # Calculate the aspect ratio + aspect_ratio = width / height + + # Resize the frame if it exceeds the maximum dimensions + if width > max_width or height > max_height: + if aspect_ratio > 1: # Landscape orientation + new_width = max_width + new_height = int(new_width / aspect_ratio) + else: # Portrait orientation + new_height = max_height + new_width = int(new_height * aspect_ratio) + + # Resize the frame + frame = cv2.resize(frame, (new_width, new_height)) + + return frame + + def __del__(self): + self.release()