Python (バージョン 2.7 または 2.6) と PyObjC (バージョン 2.2) を使用して、Macbook Pro に組み込まれた Apple iSight カメラから単一のフレームをキャプチャしようとしています。
出発点として、この古い StackOverflow の質問を使用しました。それが理にかなっていることを確認するために、基になっていると思われるApple の MyRecorder の例と相互参照しました。残念ながら、私のスクリプトは機能しません。
私の大きな質問は次のとおりです。
- カメラを正しく初期化していますか?
- イベントループを正しく開始していますか?
- 私がすることになっていた他のセットアップはありましたか?
以下に貼り付けたスクリプトの例では、startImageCapture() を呼び出した後、CaptureDelegate から「フレームを取得しました...」というメッセージの出力を開始する必要があるという操作が意図されています。ただし、カメラのライトは点灯せず、デリゲートのコールバックは実行されません。
また、startImageCapture() 中にエラーは発生せず、すべての関数が成功したと主張し、iSight デバイスを正常に検出します。pdb でセッション オブジェクトを分析すると、有効な入力オブジェクトと出力オブジェクトがあり、出力にデリゲートが割り当てられており、デバイスが別のプロセスで使用されておらず、startRunning() が呼び出された後にセッションが実行中としてマークされていることがわかります。
コードは次のとおりです。
#!/usr/bin/env python2.7
import sys
import os
import time
import objc
import QTKit
import AppKit
from Foundation import NSObject
from Foundation import NSTimer
from PyObjCTools import AppHelper
objc.setVerbose(True)
class CaptureDelegate(NSObject):
def captureOutput_didOutputVideoFrame_withSampleBuffer_fromConnection_(self, captureOutput,
videoFrame, sampleBuffer,
connection):
# This should get called for every captured frame
print "Got a frame: %s" % videoFrame
class QuitClass(NSObject):
def quitMainLoop_(self, aTimer):
# Just stop the main loop.
print "Quitting main loop."
AppHelper.stopEventLoop()
def startImageCapture():
error = None
# Create a QT Capture session
session = QTKit.QTCaptureSession.alloc().init()
# Find iSight device and open it
dev = QTKit.QTCaptureDevice.defaultInputDeviceWithMediaType_(QTKit.QTMediaTypeVideo)
print "Device: %s" % dev
if not dev.open_(error):
print "Couldn't open capture device."
return
# Create an input instance with the device we found and add to session
input = QTKit.QTCaptureDeviceInput.alloc().initWithDevice_(dev)
if not session.addInput_error_(input, error):
print "Couldn't add input device."
return
# Create an output instance with a delegate for callbacks and add to session
output = QTKit.QTCaptureDecompressedVideoOutput.alloc().init()
delegate = CaptureDelegate.alloc().init()
output.setDelegate_(delegate)
if not session.addOutput_error_(output, error):
print "Failed to add output delegate."
return
# Start the capture
print "Initiating capture..."
session.startRunning()
def main():
# Open camera and start capturing frames
startImageCapture()
# Setup a timer to quit in 10 seconds (hack for now)
quitInst = QuitClass.alloc().init()
NSTimer.scheduledTimerWithTimeInterval_target_selector_userInfo_repeats_(10.0,
quitInst,
'quitMainLoop:',
None,
False)
# Start Cocoa's main event loop
AppHelper.runConsoleEventLoop(installInterrupt=True)
print "After event loop"
if __name__ == "__main__":
main()
ご協力いただきありがとうございます。