この Python スクリプトを使用して Web カメラを表示しています。
from opencv.cv import *
from opencv.highgui import *
import sys
cvNamedWindow("w1", CV_WINDOW_AUTOSIZE)
camera_index = 0
capture = cvCreateCameraCapture(camera_index)
def repeat():
global capture #declare as globals since we are assigning to them now
global camera_index
frame = cvQueryFrame(capture)
cvShowImage("w1", frame)
c = cvWaitKey(10)
if c == "q":
sys.exit(0)
if __name__ == "__main__":
while True:
repeat()
うまく機能していますが、Qt アプリケーション内でこの表示を設定したいと考えています。IplImage
OpenCV イメージを Qtに使用するにはどうすればよいVideoWidget
ですか?