Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #!/usr/bin/env python3
- import cv2
- import depthai as dai
- from depthai_sdk.fps import FPSHandler
- # Create pipeline
- pipeline = dai.Pipeline()
- # Define sources and output
- camRgb = pipeline.create(dai.node.ColorCamera)
- # Properties
- camRgb.setBoardSocket(dai.CameraBoardSocket.RGB)
- camRgb.setResolution(dai.ColorCameraProperties.SensorResolution.THE_12_MP)
- camRgb.setFps(30)
- camRgb.setIspScale(1, 2)
- camRgb.setPreviewKeepAspectRatio(keep=False)
- # Linking
- xoutRgb = pipeline.create(dai.node.XLinkOut)
- xoutRgb.setStreamName('rgb')
- camRgb.isp.link(xoutRgb.input)
- # Connect to device and start pipeline
- with dai.Device(pipeline) as device:
- print('Connected cameras:', device.getConnectedCameraFeatures())
- # Print out usb speed
- print('Usb speed:', device.getUsbSpeed().name)
- # Bootloader version
- if device.getBootloaderVersion() is not None:
- print('Bootloader version:', device.getBootloaderVersion())
- # Device name
- print('Device name:', device.getDeviceName())
- fps = FPSHandler()
- # Output queue will be used to get the rgb frames from the output defined above
- qRgb = device.getOutputQueue(name="rgb", maxSize=4, blocking=False)
- while True:
- inRgb = qRgb.get() # blocking call, will wait until a new data has arrived
- fps.nextIter()
- print(fps.fps())
- # Retrieve 'bgr' (opencv format) frame
- # cv2.imshow("rgb", inRgb.getCvFrame())
- if cv2.waitKey(1) == ord('q'):
- break
Add Comment
Please, Sign In to add comment