Tagged Questions
The isight tag has no wiki summary.
5
votes
2answers
2k views
How can I capture iSight frames with Python in Snow Leopard?
I have the following PyObjC script:
from Foundation import NSObject
import QTKit
error = None
capture_session = QTKit.QTCaptureSession.alloc().init()
print 'capture_session', capture_session
device = ...
5
votes
8answers
6k views
Accessing iSight programatically?
Is it possible to access the iSight camera on a macbook programatically? By this I mean I would like to be able to just grab still frames from the iSight camera on command and then do something with ...
3
votes
1answer
51 views
how can I get information from every pixel from a CVImageBufferRef type?(OSX)
I'm trying to extract pixel data from individual frames of a QT Movie.
I think I need to use CV, because QTKit and NSImage would
be too slow...
I need to compare each pixel of the image in the ...
3
votes
0answers
455 views
What would be the equivalent to /dev/video0 in OSX Snow Leopard on a MacBook Pro (integrated iSight Camera) [closed]
I'm trying to do a live video stream of the webcam with ffserver and ffmpeg. I've found some resources on the net (#1 and #2), which more or less do the same thing.
I'm on a MacBook Pro running OS X ...
2
votes
1answer
729 views
How to capture frames from Apple iSight using Python and PyObjC?
I am trying to capture a single frame from the Apple iSight camera built into a Macbook Pro using Python (version 2.7 or 2.6) and the PyObjC (version 2.2).
As a starting point, I used this old ...
2
votes
4answers
1k views
Get webcam stream on Mac Os X in Java
I would like to get the webcam stream of my Macbook (the integrated iSight webcam).
I use Java, and I don't know anything about Objective-C so I'm looking for a "full-java" solution. I found some ...
2
votes
3answers
1k views
Exposure Lock in iSight
I am creating object-detection program on Mac.
I want to use iSight in manual exposure mode to improve detection quality.
I tried iGlasses & QTKit Capture to do that and it worked but program ...
1
vote
0answers
36 views
OSX Lion - iSight camera terminal usage triggers wake from display sleep?
I have 3 Macs - a MacBook Pro 15", MacBook Pro 13" & MacBook Air 11".
The 15" stays home all the time, the other 2 are used for mobile usage, so I want to use the 15" for remote video capture or ...
1
vote
0answers
91 views
Isight Camera + OpenCV + VMWARE
I'm running VMWARE on OS X to run Windows 7, and Visual Studio 2010. I'm using OpenCV to do some image and video processing software. I want to try and start doing processing to real time video.
...
1
vote
0answers
217 views
Trouble with the ffmpeg -ss flag when capturing one frame from a Macbook iSight webcam
For about five years I've used ffmpeg in a shell script to grab one frame from my linux'd-up Macbook's iSight:
ffmpeg -f video4linux2 -s 640x480 -r 15 -i /dev/video0 -an -vframes 1 -vcodec mjpeg -y ...
1
vote
1answer
186 views
Saving data with dataWithPDFInsideRect: just makes a black pdf
I have a QTCaptureView and Im trying to save the view as a picture. So far I have this:
NSRect rect = [outputView bounds];
NSData *viewData = [outputView dataWithPDFInsideRect:rect];
[viewData ...
1
vote
1answer
1k views
Is there a way to test HTTP Live Streaming via an iSight camera?
I'm working on an iPhone app that will use HTTP Live Streaming. Using Apple's provided tools (particularly mediafilesegmenter), I'm able to successfully segment and serve an archived video. Now I want ...
1
vote
1answer
704 views
Using QCView and iSight to capture image
I have a QCView that loads a Quartz file which gives you iSights feedback (basically like a QTCaptureView)
Everything displays fine
The button simply takes a snapshot using the following simple ...
0
votes
1answer
205 views
What is the best way to pass a jbyteArray from (objective-c) JNI to Java?
I'm currently retrieving image data from an iSight camera and I'd like to hand it over to Java for processing. I originally tried to put the data in a jbyteArray and return the jbyteArray. This works ...
0
votes
0answers
144 views
How can I use pycam_iface to capture my isight?
How can I use pycam_iface to capture my isight? It would take what it saw from the isight and process it. I tried running one of the demos and it failed with the following error:
Could not open ...
0
votes
0answers
73 views
Mac i-Sight camera in Qt
How can I employ and use Mac's iSight camera in a Qt application? preferably with Qt libs and standard libs. I have a method to use OpenCV.
0
votes
1answer
379 views
OpenCV capture from USB not iSight (OSX)
I am having trouble accessing the external USB camera instead of the built-in iSight when using OpenCV with a MacBook Pro under Mac OSX.
When passing an argument to the cvCaptureFromCAM(index) ...
0
votes
0answers
367 views
Unable to synchronize the audio input and output devices' sample rates - AudioQueue and Simulator
I have been having a problem playing audio out of the simulator for some time now, and I just avoided it by testing on the device, but now I have need to actually have it working on the simulator and ...
0
votes
2answers
435 views
Capture MacBook Pro iSight video with C++
i'd like to grab a frame from my MacBook Pro iSight in C++ and do some elaborations on it.
I already know how to do that in ObjC with QTKit, but is there any way to do the same thing in C++?
NOTE:
I ...
0
votes
0answers
282 views
QTCaptureView corrupting iSight?
I've been programming using OpenCV on the iSight feed and after building and running from Xcode 10 or so times somewhat quickly the MacBook Pro starts to not recognize the iSight (as in completely, ...