Core Image is a set of components for near real-time, pixel-accurate image and video processing for cocoa.
According to the documentation it should support blurring, note the "Available in iOS 5.0 and later": CIFilter Class Reference But according …
cocoa-touch ios5 core-imagehere's my code for generating QRCode image + (UIImage *)generateQRCodeWithString:(NSString *)string { NSData *stringData = [string dataUsingEncoding:NSUTF8StringEncoding]; CIFilter *filter = [CIFilter …
ios uikit core-imageCI Filters are now available in iOS 5, and I'm trying to apply one to a CALayer, the way you'd do …
ios cocoa-touch calayer core-imageI am trying to use the iOS 7 style glass effect in my glass by applying image effects to a screenshot …
ios image-processing mkmapview core-image gpuimageI'm writing a custom Movie Recording app and have implemented AVAssetWriter and AVAssetWriterInputPixelBufferAdaptor for writing frames to a file. In …
objective-c ios core-image avassetwriter core-videoI want to use in my app an custom filter. Now I know that I need to use Core Image …
ios image-processing core-imageThanks for reading. I'm trying to use CoreImage in iOS 5 to alter the appearance of an image. The problem is …
objective-c ios5 core-imageThis is what i need to achieve: Take image from camera or Gallery Remove background from image & save it …
ios opencv uiimage core-image chromakeyI'm creating a color picker for iOS. I would like to enable the user to select the brightness (luminance) and …
ios ios5 graphics core-graphics core-imageI want to apply filters (effects) on a video file while the video is playing. I'm currently using @BradLarson 's (…
ios objective-c core-image gpuimage