开发者

How to modify in real time the video stream from the iPhone camera?

Every time the camera of the iPhone captures a new image, I want to modify it and then display it on the iPhone screen. In other way: how to modify in real tim开发者_StackOverflowe the video stream from the iPhone camera?

I need a method who is called every time when a new image comes from the camera.

Thanks for your help! :-)

EDIT: what I want to do is like augmented reality: while I'm taking a video, every image is modified, and is showed in real time on the iPhone screen.


You could capture an image with the UIImagePickerController's takePicture method and draw your modified version to the cameraOverlayView.

You get the picture recorded as a result of the takePicture message from the UIImagePicker's delegate in a imagePickerController:didFinishPickingMediaWithInfo:. From the dictionary supplied to that method, you can get the original image which you modify and draw to the overlay.

Here is an example for using the cameraOverlayView. You should be able to re-use the captured image from your delegate for drawing your overlay view.


Many augmented reality apps do not actually modify the image but just overlay information based on what they think is on the screen from input from the accelerometer and compass. If this is the kind of AR you are looking to do then try looking at ARKit.


You cannot process the camera's image data in real time. THere is no API to do this. File a request with Apple using their bug tracker. Many of us have done this already. More requests might lead to this being possible.


Oh, yes, just use an overlay view then. You were talking about modifying the video stream, which is clearly not needed.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜