https://www.arducam.com/product/b0242-arducam-imx477-hq-camera/

https://docs.arducam.com/UVC-Camera/Adjust-the-minimum-exposure-time/?utm_source=chatgpt.com#instruction

cv2.CAP_PROP_EXPOSURE을 이용하는 방식

image.png

import cv2

# open video0
cap = cv2.VideoCapture(0, cv2.CAP_MSMF)

# Turn off auto exposure
cap.set(cv2.CAP_PROP_AUTO_EXPOSURE, 1)
# set exposure time
cap.set(cv2.CAP_PROP_EXPOSURE, 0)

while(True):
    # Capture frame-by-frame
    ret, frame = cap.read()
    # Display the resulting frame
    cv2.imshow('frame', frame)
    if cv2.waitKey(1) & 0xFF == ord('q'):
        break

# When everything done, release the capture
cap.release()
cv2.destroyAllWindows()

이런 방식으로 조절할 수 있다고 하는데, 실제로 해보면 적용이 안됨. On Window system이라는 문구가 있는걸로 보아 윈도우에서만 적용되는 걸 수도 있거나, minimum exposure time을 정하는 거고 maximum은 강제할 수 없어서 그러는 걸 수 있음

v4l2-ctl을 이용하는 방식

image.png

v4l2-ctl -c exposure_auto=1
v4l2-ctl -c exposure_absolute=10

단위는 0.1 ms라고 함. 이것도 minimum exposure time을 조정하는 것. exposure_absolute=1로 설정한 후 모니터 밝기를 최대로 키워서 촬영해봤을 때, 움직이면서 촬영해도 모션 블러가 거의 없는 것을 확인

20241113_100900_405236.jpg

gstreamer를 이용하는 방식

유일하게 maximum exposure time을 조정할 수 있는 방식. 그러나 USB 방식으로 연결했을 때는 사용할 수 없고, CSI 케이블을 이용해 연결했을 때에만 사용 가능해 테스트해보지 못함.

image.png

gst-launch-1.0 nvarguscamerasrc sensor-mode=3 exposuretimerange="34000 358733000" ! 'video/x-raw(memory:NVMM), width=1920, height=1080, format=NV12, framerate=30/1' ! nveglglessink -e

이런식으로 입력해서 exposuretimerange의 min과 max를 모두 설정할 수 있음. 그대신 gstreamer 코드와 추론 코드를 연동하는 작업이 필요함.