ArduCAM / MIPI_Camera

223 stars 107 forks source link

Jetvariety control #176

Open cehkop opened 1 year ago

cehkop commented 1 year ago

Hi, i have ov2311 and Jetson Xavier NX with jetpack 5.02. I try to read video from camera and processing it in opencv-python.

First, i tried to use nvarguscamerasrc, but there was a lot of errors. So i met this: https://github.com/ArduCAM/MIPI_Camera/issues/68#issuecomment-713348279

Does nvarguscamerasrc support jetvariety now, it’s been 3 years..? And if doesn’t, how can i manage camera settings, like exposure and pixelformat?

I use now:

cap = cv2.VideoCapture(0, cv2.CAP_V4L2)
cap.set(cv2.CAP_PROP_AUTO_EXPOSURE, 0.75)
cap.set(cv2.CAP_PROP_EXPOSURE, 1/100),

I can see image, but exposure doesn’t change. How can i control settings?