0
votes
2answers
40 views

How to use UIGestureRecognizers for Tap, Pinch, and Rotate on multiple UIViews or UIImageViews

I don;t know how to handle this :-/ I just need to add stickers on an image. App will conatins stickers like smilies, hearts (images) on selecting the particular sticker it will be added to main ...
1
vote
3answers
68 views

Is there a way to identify if two images are nearly identical in Objective-C?

Say you have two images: and These pictures are nearly identical save for a few pixels that are different colors. Is there a native way in Objective-C to identify if two pictures are nearly ...
0
votes
1answer
36 views

Split image by alpha value 1 objective-c

Reference Link here... Please find the image from above link. I need to extract all Black colored sharp objects from the above like specified image to a NSDictionary. The goal is to find the sizes of ...
-1
votes
5answers
110 views

How to detect objects from Image in iOS? [duplicate]

I have an image, on an image there are three things Spoon, Cup and basket. Now I have to identify when user click on image nothing will happen until and unless the user click on spoon, cup & ...
0
votes
1answer
45 views

zoom out a photo without using pinch/UIScrollView

I'm making a process on a certain part of an image, I'm using the following code but the image retrieved on imageToDoProce is always zoomed in, My app will get complete if I could zoom out this photo. ...
-2
votes
1answer
75 views

How to detect objects from Image Processing in iOS?

I have a image and the image have in it A glass a cup , two spoon. This image is showing on the iPad. Now I want when user touch the spoon only, the spoon color will become green rest of the image ...
0
votes
0answers
34 views

OpenCV GPUImageLuminanceThresholdFilter crashes in callback while autoreleasing

I created a category for UIImage+OpenCV in my project. I did a function for change threshold of my UIImage as below. - (UIImage *)threshold:(CGFloat)value { GPUImageLuminanceThresholdFilter ...
1
vote
1answer
73 views

Opencv: Fill color in a contoured image

thanks for reading this in advance. I'm doing a credit card OCR related project, one step of which requires filling colors to an already contoured image. Sample images include: ...
0
votes
0answers
36 views

take cliped area into a image

I have a CGBitmapContext with a image drawn in it and a path that i want to copy into another image of size clippingPath.boundingBox (of course normalized to 0,0,width,height). Now, how do i do this? ...
1
vote
0answers
56 views

Improve speed of GetUTF8Text functionality in Tesseract

It takes around 20 seconds for completing GetUTF8Text() functionality in my OCR app.I am using grey scale image. I tried by reducing image size but processing speed and accuracy decreased. Any help to ...
1
vote
2answers
51 views

How to change minimum or maximum value by CIFilter in Core image?

I'm drawing several grayscale images in iOS. The values of grayscale image have minimum and maximum i.e. for 8 bit values in range [41,244]. I want to change minimum value or maximum value. I want to ...
0
votes
1answer
85 views

Live obstacle detection iPhone camera - Objective c

I need to make a clear area functionality in my camera application. Referring to the image uploaded in link http://www.flickr.com/photos/95148356@N02/8671004387/in/photostream, i need to take a ...
1
vote
2answers
73 views

iOS lossless image editing

I'm working on a photo app for iPhone/iPod. I'd like to get the raw data from a large image in an iPhone app and perform some pixel manipulation on it and write it back to the disk/gallery. So far ...
7
votes
2answers
368 views

Reduce memory consumed by method that uses OpenCv on iOS

I am using OpenCV on iOS to do some image processing on a UIImage. The method processImage is consuming too much memory. When I profile the App with allocations in Instruments. The Live Bytes peaks ...
0
votes
1answer
61 views

Determine primary and secondary colors of a UIImage

I was wondering if someone could help me figure out how I can determine the main primary and secondary colors in a UIImage. I haven't been able to find anything terribly useful in Google.
0
votes
0answers
47 views

iOS: Calculating most occurring color in CVPixelBufferRef

I am wondering how I can find the "most occurring" color from a CVPixelBufferRef in iOS. With this I do not necessarily mean a code sample, but just the technology behind it. My first thought would ...
0
votes
0answers
33 views

Associate audio with an image?

I have a problem in hand of being able to associate audio to an image. I did some searching and found out that in the EXIF header of the image, there is a tag called "Related Sound File", where ...
9
votes
2answers
282 views

Changes Brightness in color replacement

I am working on replacing certain color in image by User's selected color. I am using OpenCV for color replacement. Here in short I have described from where I took help and what I got. How to ...
3
votes
0answers
88 views

GPUImageHistogramFilter for a still image giving zero data

Very similar this answer, except I want to generate a histogram for a still image. Below is what I'm doing, and it's giving a histogram with all 0 data. Is there some trick to getting this working? ...
0
votes
2answers
153 views

UIBezierPath from image

I have several png files that look similar to this this: Everything is transparent but the black path. What I am trying to do is create a UIBezierPath from the non transparent part. Edit: So I ...
1
vote
1answer
113 views

Change color of pixel based on touch point

I want to change the color where user touch on image. I got some code to get the image data which is below NSString * path = [[NSBundle mainBundle] pathForResource:@"filename" ofType:@"jpg"]; ...
0
votes
1answer
108 views

Measure the size of an object with camera

I need to do an method wich measure the object from a photo... I mean that I can compare the object with the size from a card to get the size from object, but I don't know how to compare this...Any ...
1
vote
1answer
160 views

Why is cv::resize so slow?

I'm doing some edge detection on a live video feed: - (void)processImage:(Mat&)image; { cv::resize(image, smallImage, cv::Size(288,352), 0, 0, CV_INTER_CUBIC); ...
1
vote
1answer
86 views

Dealing with RGB of the image

I am developing one application . I have requirement like my application should detect particular color of the image . For e.g. if i want to detect the red color then i should see only the red areas ...
0
votes
0answers
48 views

Widthstep issue in Objective-C

While doing image processing with UI images in Objective-C, i am having an unusual image-skewed problem for some images. The images are getting distorted badly. This problem occurs in Open-CV when i ...
1
vote
3answers
305 views

How to compress images (png, jpg and so on) using objective C

i want to shrink png or jpg on OSX. i only want to shrinkg without affecting the image quality. like tinypng.org is there any recommended library? i just know imagemagick. is there a way to do that ...
5
votes
1answer
743 views

Cropping an image in iOS using OpenCV face detection

I used the below code to crop a face from an image, in my face detection code. But I am not getting the proper face images and I am getting some part of the image saved and not the face. What's wrong ...
6
votes
2answers
218 views

Sparse Image matching in iOS

I am building an iOS app that, as a key feature, incorporates image matching. The problem is the images I need to recognize are small orienteering 10x10 plaques with simple large text on them. They ...
1
vote
1answer
73 views

Opencv Error to crop the image in iPhone

I used the below code to set ROI and crop the image. cv::Mat testMat = [CaptureViewController cvMatWithImage:self.storeImage]; cv::Rect roi(faces[i].x, faces[i].y, faces[i].width, faces[i].height); ...
0
votes
2answers
278 views

Photo Booth - Backdrops effect in iOS (Chroma key technology) [closed]

I want to implement PhotoBooth Backdrops effect in iOS. Any help would be appreciated . Chroma key technology is used to get backdrop effect.
0
votes
1answer
184 views

How to add Displace Image Filter effect on UIImage in iOS for iPhone SDK

I am trying to implement Displace (Distortion) Image Filter effect on UIImage. How can I do this? Please suggest. Source Image: After Displace Image Effect (Distortion)
0
votes
0answers
64 views

Save NSBItmapImageRep as grayscale png without alpha

I try to save NSBItmapImageRep without alpha channel. My code is: NSBitmapImageRep* rep = [[NSBitmapImageRep alloc] initWithCIImage:img]; NSColorSpace *targetColorSpace = [NSColorSpace ...
0
votes
1answer
151 views

Core image CIImage 8 bit grayscale

I want to do 2 things: 1) Load 8 bit grayscale image as 8 but grayscale image 2) Save it as 8 bit grayscale image I try to load image to CIImage via [CIImage imageWithContentsOfURL:options]`. As I ...
0
votes
2answers
160 views

The best way to change background color in image in Cocoa

Little description: I get an image from my scanner using Capture Core Framework and background color is gray. So I want to do white background. I'm looking for best way to remove this color. I looked ...
0
votes
4answers
153 views

Image enhancement in iphone app [duplicate]

Possible Duplicate: Image Processing in iPhone In my iPhone app, I want to include image enhancement facility. In a view, a user can see the selected image and from there, with the help of ...
0
votes
1answer
184 views

How to add Fish eye Image FIlter on UIImage in iPhone SDK without using GPUImage

I want to add some filter effect on UIImage in my iPhone App. These filters are: 1. Fish eye Filter effect. 2. Crystallize Image effect (Same as Mosiac effect tiles in Hexagone Shape) 3. TV Image ...
3
votes
1answer
213 views

calculate illuminance from Exif Data

How I calculate the lux or illuminance by iPhone Camera.I have calculated all the exif data which is as: key = FocalLength, value = 3.85 key = MeteringMode, value = 5 key = ShutterSpeedValue, value = ...
4
votes
1answer
129 views

How to take and save 20 photo in one second using objetive c

I am creating one photo capture app in which user can take up to 20 photo in one second. I have already try the AVCam Sample code of apple but it is don't allow to take still Image at 20 FPS. Is ...
-1
votes
3answers
197 views

How to add Soft Filter effect on UImage in iPhone SDK [closed]

I want to add soft filter effect on UIImage in iPhone App. How can I do this? I have implemented filters for following effect 1. Emboss 2. Greyscale. 3. Brightness. 4. Bump, 5. Contrast etc I have ...
0
votes
0answers
40 views

how to add Spherical Filter Effect (a fish eye) on UIImage in objective - C in iPhone SDK [duplicate]

Possible Duplicate: iOS images in a bubble effect I want to add a fish eye filter effect on UIImage in iphone App. on googling i get the effect like spherical image effect with vignette ...
1
vote
1answer
700 views

How to implement instagram lux effect using GPUImage?

I mean, which filters (brightness, contrast, exposure, gamma, saturation, etc...) and which values do I need to use to achieve similar photo effect?
12
votes
2answers
2k views

Perspective Transform + Crop in iOS with OpenCV

I'm trying to implement a cropping & perspective correction feature into an upcoming app. Whilst doing research, I came across: Executing cv::warpPerspective for a fake deskewing on a set of ...
0
votes
0answers
191 views

GPUImage equivalent of cv::findContours

My app uses opencv's cv::findContours on a binary image. I now need to make it realtime. GPUImage has a cannyedge filter but I couldn't find anything related to findContours. Does GPUImage have ...
2
votes
1answer
126 views

the best ways of recognising drawn images

today I'm seeking an advice about the best ways of recognising drawn images. For example if you use Chinese/Japanese keyboard, you can draw that special signs with your finger and it will be ...
8
votes
2answers
1k views

adjust corners and crop the image openCV

I am using open CV,in IOS. I already detected the boundary of the paper sheet in an Image as show in image and , Now I have to drag these boundary line on touch for adjusting the crop frame. how we ...
0
votes
1answer
494 views

OpenCV: Quickly remove background around subject, assuming simple background?

I'm looking to do something sort of like background removal, sort of like blob detection... Basically, the idea is, I want to be able to snap a photo of a person or other object in front of a ...
0
votes
1answer
155 views

Is difference between CGImageGetWidth(workingImage.CGImage) and workingImage.size.width?

Is difference between CGImageGetWidth(workingImage.CGImage) and workingImage.size.width ? First is faster or safer? I know that in second case i getting value directly.
2
votes
1answer
205 views

smoothing in a particular area of image [duplicate]

Possible Duplicate: How to set ROI in OpenCV? I'm trying to use a smoothing/blur filter on an image but only in a particular path /area of the source. (Using openCV currently) How can that ...
0
votes
1answer
128 views

Fastest framework for image processing

I am developing something like painting app. There will be ability to draw on large images. I already have implemented this ability. Now I need to add ability for image processing (effects like: blur, ...
0
votes
1answer
1k views

GPUImage: GPUImageToneCurveFilter Not Working

I have managed to use the GPUImage in my app now and tried putting filters in my photos on button click, but there another issue. GPUImageFilter *selectedFilter; if (sender.tag == 1) { ...

1 2 3 4