▣ 카메라 종류 : STC-MBE132U3V
▣ 카메라 메이커 : Omron sentech
위 모델의 카메라를 컴퓨터에 연결하고 아래와 같이 코드를 실행하면
에러메세지가 뜹니다. 이유가 뭘까요..?
▣ 소스 코드 :
#import numpy as np
import cv2 ## 카메라 출력
capture = cv2.VideoCapture(1 + cv2.CAP_DSHOW)
capture.set(cv2.CAP_PROP_FRAME_WIDTH, 1)
capture.set(cv2.CAP_PROP_FRAME_HEIGHT, 1)
while cv2.waitKey(1) < 0:
ret, frame = capture.read()
cv2.imshow("VideoFrame", frame)
capture.release()
cv2.destroyAllWindows()
▣ 에러메세지 :
An exception occurred.
File coaxlink.cti not found.
An exception occurred.
File KYFGLibGenTL_vc141.cti not found.
An exception occurred.
File siso_gentl.cti not found.
An exception occurred.
File TLActiveSilicon.cti not found.
An exception occurred.
File coaxlink.cti not found.
An exception occurred.
File KYFGLibGenTL_vc141.cti not found.
An exception occurred.
File siso_gentl.cti not found.
An exception occurred.
File TLActiveSilicon.cti not found.
Process finished with exit code 0