The avcapture tag has no wiki summary.
1
vote
0answers
17 views
AVCaptureSession preview screen orientation in iOS5
I asked this question a while back. I accepted the answer because it worked... until I tried it out on iOS5.
My app is landscape only. Opening the camera preview and holding the device with the home ...
-1
votes
1answer
15 views
AVCaptureVideoPreviewLayer connection crash on iOS5 only [closed]
I'm using some code from Apple's "SquareCam" source code. It runs fine on iOS6, but on iOS5 I get a crash:
AVCaptureSession *session = [AVCaptureSession new];
[session ...
0
votes
0answers
22 views
Can't add a nil AVCaptureInput
I have a beta tester getting this error when trying to start a video session on our iPad app using the OpenTok iOS WebRTC SDK. The app crashes every time. User is on an iPad 2 with iOS 6.1.3. Does ...
0
votes
0answers
32 views
AVCaptureVideoPreviewLayer not filling screen
I read about one million threads about how to make a VideoPreviewLayer filling the complete screen of an iPhone but nothing works ... maybe you can help me because I'm really stuck.
This is my ...
0
votes
1answer
93 views
Change iPhone Camera Shutter Sound in App
How can I change the sound that plays when an image is captured with an iPhone? I am using AVCapture and I want to capture still images (rather than grabbing frames from video) for image quality sake.
...
0
votes
0answers
40 views
Shoot photo in high quality, while capturing video
Hello,
Is it possible to take a image in high quality, while viewing video with AVCapture in low quality? The problem is that i need to analyze the video (with a special algorithm, which takes too ...
0
votes
1answer
94 views
How do i save a video (mp4 format) using AVCaptureVideoDataOutput?
I have set up the input, and the output for the AVCapture session and also the delegate
- (void)captureOutput:(AVCaptureOutput *)captureOutput didOutputSampleBuffer:(CMSampleBufferRef)sampleBuffer ...
2
votes
1answer
380 views
AVCaptureVideoPreviewLayer orientation - need landscape
My app is landscape only. I'm presenting the AVCaptureVideoPreviewLayer like this:
self.previewLayer = [[AVCaptureVideoPreviewLayer alloc] initWithSession:session];
[self.previewLayer ...
1
vote
1answer
198 views
Exporting AVCaptureSession video in a size that matches the preview layer
I'm recording video using AVCaptureSession with the session preset AVCaptureSessionPreset640x480. I'm using an AVCaptureVideoPreviewLayer in a non-standard size (300 x 300) with the gravity set to ...
0
votes
1answer
91 views
Positioning content in a CALayer
How do I position content in a CALayer so that it scales to fit the width (preserving aspect ratio) and is positioned at the top of the layer?
More specifically, I'm trying to achieve this ...
1
vote
1answer
97 views
Getting actual NSString of AvCaptureVideoDataOutput availableVideoCVPixelFormatTypes
I am trying to find the accepted formats on an AVFoundation output:
self.theOutput=[[AVCaptureVideoDataOutput alloc]init];
if ([self.theSession canAddOutput:self.theOutput])
...
0
votes
1answer
174 views
AVCaptureSession, multiple AVCaptureAudioDataOutputs
Enviroment
iphone
arm7/sdk6.0
xcode 4.5
Use-case
Based on the AVCam sample
Capture A/V into a file using AVCaptureMovieFileOutput
Add an additional AVCaptureAudioDataOutput to intercept the ...
0
votes
0answers
53 views
How to get AVCaptureDeviceWasConnectedNotification notifications
I noticed something funny about getting AVCaptureDeviceWasConnectedNotification notifications in OSX. When I listen for the notifications like this:
[[NSNotificationCenter defaultCenter] ...
0
votes
0answers
160 views
AVFoundation slow motion
I am trying to get a method whereby I can record videos and play them back in super slow motion
I found where with AVFoundation (AVCaptureConnection) you can set the minFrameDuration
//Our ...
2
votes
1answer
134 views
How to trigger a bright flash like the Camera app?
The way I am attempting to do a flash is this:
1) Calling
[device setTorchMode:AVCaptureTorchModeOn];
[device setFlashMode:AVCaptureFlashModeOn];
2) After 0.1 seconds I call
[device ...
1
vote
2answers
255 views
Can't use dispatch_sync in c++ class with Objective-C++ code
I need to use Objective-C++ code in inherited C++ class which works with video recording from iPhone camera (getting CMSampleBufferRef through an other native-objective-c class Wrapper with ...
0
votes
1answer
274 views
How can you set a custom frame size for AV Foundation camera capture?
I am working from the AVCam sample application, which uses AV Foundation for camera capture.
When I use the following preset:
[self.captureSession setSessionPreset:AVCaptureSessionPresetMedium];
I ...
0
votes
0answers
231 views
AVCaptureDevice result image size
I'm using AVCaptureDevice to get photo from device (iPhone/iPad/iPod) camera. Is there any way to get the size of image, I can get from device? (According to documentation it depends on preset and ...
0
votes
1answer
106 views
How ro resolve “_vImagePermuteChannels_ARGB8888”, referenced from: error?
when i convering Rgba to argb i used this code
vImage_Buffer src;
src.height = height;
src.width = width;
src.rowBytes = srcBytesPerRow;
src.data = srcRows;
vImage_Buffer dest;
dest.height = ...
1
vote
0answers
165 views
AVCapture pause screen after take photo
I have used demo example of avcapture ,i wanna display image in imagview in viewcontroller after take photo i have use code
{
ALAssetsLibrary *library = [[ALAssetsLibrary alloc] init];
[library ...
1
vote
0answers
328 views
How to implement both GPUImageWhiteBalanceFilter and uiElement blend more efficiently?
I'm working on an app which use GPUImage framework. I want to use GPUImageWhiteBalanceFilter to adjust whitebalance and record some watermark use uiElement blend, it works but the framerate is poor ...
0
votes
1answer
345 views
Why does jpegStillImageNSDataRepresentation throw an exception when sample buffer is NOT null?
In iOS, I am using code to capture from AVCaptureStillImageOutput thus:
[_captureStillOutput captureStillImageAsynchronouslyFromConnection: _captureConnection
...
2
votes
1answer
447 views
IOS, AVCam, how do I preview captured image?
Using the AVCam sample, I don't see how I can get access tot he image in the AVCamViewController.m file. I want to preview the captured image, but I don't see how I can access this image in the ...
0
votes
0answers
123 views
Implementing custom UIImage *image property in AVCaptureManager, value is nil even though it is saved to photo lib successfully
So, in AVCaptureManager, I implemented UIImage *image as a property.
In the (void) captureStillImage function, I set the value.
[[self stillImageOutput] ...
6
votes
0answers
290 views
How do I pause video at the exact moment I capture a photo?
I am using AVFoundation to display a Video in my UIView via an AVCaptureVideoPreviewOverlay.
I then use AVStillImageOutput's -captureStillImageAsynchronouslyFromConnection: to capture a still Image ...
0
votes
1answer
1k views
what is difference between AVCapture and camera default of iPhone
my app use AVCapture for capture image, this is my supervisor's ideal. But i research in internet and a can't get any information about the difference between AVCapture and default camera of iPhone or ...
0
votes
1answer
467 views
Cant Capture AVCaptureVideoPreviewLayer
in my app i am opening a video preview layer with this code
AVCaptureDeviceInput *captureInput = [AVCaptureDeviceInput
...
1
vote
0answers
91 views
Unsual value returned using AVCaptureSession
I am using AVCapture Session to detect some images in realtime and match the image data through XML data in my app and SURF algorithm ( SURF code available open source).
Now my XML consists of Img ...
6
votes
1answer
675 views
Run multiple AVCaptureSessions or add multiple inputs
I want to display the stream of the front and the back facing camera of an iPad2 in two UIViews next to each other.
To stream the image of one device I use the following code
AVCaptureDeviceInput ...
0
votes
1answer
425 views
iOS: draw over video with OpenGL
I'm trying to draw some OpenGL graphics over the video from camera.
I've modified Apple's GLCameraRipple sample with code that draws a couple of textured triangles. This code works well in my another ...
1
vote
1answer
175 views
CGAffineRotation Skews Image Photos
My iOS has registered for device orientation change notifications via NSNotificationCenter, and has a method that responds to the different orientation changes. The following code is called to change ...
0
votes
1answer
518 views
AVCapture Focus Interface
I'm using AVCapture to capture images into my app. In the regular UIImagePickerController, the 'tap to focus' functionality is already implemented. I have accomplished the same functionality through ...
0
votes
1answer
2k views
AVCaptureDevice Camera Zoom
I have a simple AVCaptureSession running to get a camera feed in my app and take photos. How can I implement the 'pinch to zoom' functionality using a UIGestureRecognizer for the camera?
0
votes
1answer
617 views
iPhone front camera - tap to focus?
I'm trying to figure out if tap-to-focus is possible via the front facing camera device. I've seen on the iPhone4 wikipedia that it supports focus, but not much more detail. When I call ...
1
vote
1answer
1k views
Custom camera iOS
I got an app, where i tried to implement custom camera. This is source code:
AVCaptureVideoPreviewLayer *captureVideoPreviewLayer = [[AVCaptureVideoPreviewLayer alloc] initWithSession:session];
...
3
votes
1answer
550 views
AVCapture loses ability to set focus when using ZBar SDK
This has been stumping me for days...
In my app i am using AVCapture to take a photo, then i am using the ZBar SDK to scan a bar code. The problem is once I load ZBar after taking a picture, i lose ...
2
votes
1answer
6k views
AVCaptureSession specify resolution and quality of captured images obj-c iphone app
Hi I want to setup AV capture session to capture images with specific resolution (and, if possible, with specific quality) using iphone camera. here's setupping AV session code
// Create and ...
0
votes
1answer
350 views
While playing a sound does not stop recording Avcapture
I have a view where a video record, then I have a section AVAudioPlayer, the problem is that when the sound, you stop registazione Video.
testAudioPlayer = [[AVAudioPlayer alloc] ...
2
votes
0answers
420 views
iOS AVFoundation image capture too slow
I am creating session and AVCaptureStillImageOutput this way:
__imageCaptureSession = [[AVCaptureSession alloc] init];
__imageCaptureSession.sessionPreset = AVCaptureSessionPresetPhoto;
...
0
votes
1answer
2k views
Using xcode to access rear camera, iphone iOS5
I'm sorry if this is already answered...
All I need is how to fire up the rear facing camera and display it in an image view...no taking pictures, no accessing the photo library, just turning on the ...
1
vote
2answers
2k views
Proper way to optimize my AVCaptureSession?
I got my AVCaptureSession to work and it duplicates the Camera.app UI almost perfectly, however, after a few seconds the application will crash and I just cannot find what I'm doing wrong. I really ...
1
vote
1answer
4k views
iOS 5 - AVCaptureDevice setting focus point and focus mode freezes the live camera picture
I'm using the following method to set point of focus since iOS 4:
- (void) focusAtPoint:(CGPoint)point
{
AVCaptureDevice *device = [[self captureInput] device];
NSError *error;
if ...
3
votes
1answer
1k views
iOS: How to how to record video to screen on a landscape app?
This is doing my head in.
I am working from this sample project: https://github.com/jj0b/AROverlayExample
This works perfectly. only problem is it is a portrait app. So when I rotate the device ...
0
votes
1answer
124 views
Create 100 X 100 frame around camera screen
I am working on a camera based app. It is related to histogram. When I open up the app it should start the camera and it should make frame of 100 x 100 in the center of the screen.
The camera starts ...
2
votes
2answers
2k views
AVCaptureMovieFileOutput — trimming the file while writing
I am recording video using AVCaptureMovieFileOutput. Instead of retaining the captured video for the entire recording time, however, I would like only to retain the last 2 minutes of video. In ...
1
vote
1answer
515 views
How to get an AVCapture Timecode?
I'm working on a video capture app using the AVFoundation framework, based on the AVCam sample by Apple. I'd like to implement functionality to set a maximum video length, and have the capture ...
0
votes
1answer
844 views
Why rotate Image in OpenCV without rotation code?
I am taking photo using AVCaptureStillImageOutput, AVCaptureSession, AVCaptureVideoPreviewLayer and display it in UIImageView. Its work properly.
But, After display image in UIImage. I am detecting ...
1
vote
1answer
253 views
Problem in camera activities in ios4
hi so far i have used UIImagePickerController for camera activities in IOS3. But in IOS4 the ImagePickerController is not working properly. When i tried to capture image it shows either a white ...
1
vote
0answers
473 views
iPhone AVCapture: accessing the CVPixelBuffer is slow
I've been using CoreGraphics to create a bitmap context around the pixel buffer and extract an image using CGBitmapContextCreateImage, then using CGContextDrawImage to draw that image in another ...
5
votes
1answer
4k views
AVCapture appendSampleBuffer
I am going insane with this one - have looked everywhere and tried anything and everything I can thinks of.
Am making an iPhone app that uses AVFoundation - specifically AVCapture to capture video ...




