Hi i try to build simple camera app with filters. I apply CIFilters on UIImage that works fine but now i want apply filters before take photo(live filter on camera) like iOS7 camera below.
Thank in advance.
Hi i try to build simple camera app with filters. I apply CIFilters on UIImage that works fine but now i want apply filters before take photo(live filter on camera) like iOS7 camera below.
Thank in advance.
If you are looking for api of UIImagePickerController to make a real-time camera filtering, it won't happened. You must build your own.
Check out AVCaptureSession, and maybe this sample code(see XBFilteredCameraView.m
) to help you understand how to capture camera output image in real-time.
And you also need a real-time image processing library, such as GPUImage.
Hope this can help you.