Hi Erik Thanks for your response. Right now even a simple code where i am just displaying video from Right Mono Camera is not working. It is giving both of the above errors on Jetson Nano. Below is the given code.
import cv2
pipeline = dai.Pipeline()
cam = pipeline.create(dai.node.MonoCamera)
cam.setBoardSocket(dai.CameraBoardSocket.RIGHT)
cam.setFps(6)
cam.setResolution(dai.MonoCameraProperties.SensorResolution.THE_800_P)
xoutRight = pipeline.create(dai.node.XLinkOut)
xoutRight.setStreamName('right')
cam.out.link(xoutRight.input)
with dai.Device(pipeline) as device:
qRight = device.getOutputQueue(name="right", maxSize=4, blocking=False)
while True:
inRight = qRight.get()
if inRight is not None:
cv2.imshow("right", inRight.getCvFrame())
if cv2.waitKey(1) == ord('q'):
break`