Tagged Questions
1
vote
1answer
39 views
HoughCircles gives wrong number of circles and position - iOS
Im using OpenCV to help me detect a coin in an image taken from an iPhone camera. Im using HoughCircles method to help me find them but the results are less than hopeful.
cv::Mat greyMat;
cv::Mat ...
1
vote
0answers
29 views
Saving an SVM as an exportable file
In my iOS project I have to train an SVM in opencv2 with a large set of images (~40,000). This SVM is static (just train it once with no additional learning). Obviously, this takes a long time to ...
0
votes
1answer
64 views
ios face detection fails in landscape mode
I am using openCv framework for detection of face. I have blocked auto rotation. I am using this method to get face.
detectMultiScale(frame_gray, faces, 1.1, 2, 0 | CV_HAAR_SCALE_IMAGE, cv::Size(100, ...
0
votes
2answers
44 views
cv::mat to UIImage conversion not recovering exact image
I am using this function to convert cv::mat to UIImage.
-(UIImage *)UIImageFromCVMat:(cv::Mat)cvMat
{
NSData *data = [NSData dataWithBytes:cvMat.data length:cvMat.elemSize()*cvMat.total()];
...
0
votes
0answers
46 views
OpenCV: Speeding up detection of simple shapes on iPhone
I am trying to detect shapes with 6 corners using OpenCV on iPhone(videostream). I am getting quite good results but for the cost of a low frame rate which is around 8 fps (depending on the detecting ...
0
votes
1answer
51 views
OpenCV iOS blocks Crash
I'm doing the processing of the Mat image on my own serial queue. This results in a crash. How do I retain the Mat image before the Q and release it in the Q after the processing is done?
- ...
-2
votes
0answers
78 views
Object detection in OpenCV - through images [closed]
Object detection using OpenCV..!! I've been searching many links for this topic..Finally collating many, I could write one.
This program does it.. Takes an image as an input, compares it with the ...
10
votes
4answers
275 views
How detect long edges of wall to prepare mask and recolor
Main idea is to allow user to recolor to specific wall based user selection.
Currently i have implemented this feature using cvFloodFill (helps to prepare mask image) which can help me to change ...
0
votes
1answer
53 views
detect objects of any shape from image and color individual object
I am new to opencv and doing some like detect different objects from image and apply effects on individual object. I find edges, and using following code to get contours, but how how to proceed ahead ...
1
vote
0answers
65 views
OpenCV calibration Code
Well, this is my attempt at calibration for the iPhone 5. It sucks, and I don't know why. It appears to be finding the corners appropriately, and yes 27 images to calibrate. The results are cubist ...
1
vote
1answer
80 views
iPhone 5s Camera Calibration Parameters
I was wondering if anyone out there had any reliable intrinsic or extrinsic parameters they would be willing to share with regards to the iPhone 5s camera? I'm working in OpenCV and would like to ...
4
votes
1answer
85 views
Obtain top-down view of image using iPhone accelerometer data
I have developed a simple little iPhone app (for academic purposes) that allows the user to take a picture of an object. At the time the picture is taken, the accelerometer data from the phone is ...
5
votes
2answers
212 views
How to make the sample run Open CV
I am trying to make Open CV project sample for Template Matching as explained here .
Steps i did so far includes :
Downloaded and imported Open CV framework in my project changed the .m extension ...
1
vote
1answer
184 views
How to compare images using opencv in iOS (iPhone)
I want to compare 2 images taken by iPhone camera in my project. I am using OpenCV for doing that. Is there any other better way to do that?
If i got the % similarity, It will be great.
I am using ...
9
votes
2answers
284 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 ...
0
votes
0answers
56 views
What library is this iOS app using? [closed]
This iOS app automatically "scans" a screenshot and is able to read the letters off of the scrabble tiles. What library do you think it uses to accomplish this? Could it be OpenCV? I've tried ...
0
votes
1answer
66 views
OpenCV for iOS build errors
I'm trying to import the files from this github project to enable image stiching for
my app. I downloaded the project, and ran it on my phone and it worked great. However,
after adding it's files ...
7
votes
1answer
90 views
Make a layer over an image and adjust its co-ordinates by touch
I need to make a layer over an image and adjust the layer to fit to image and get its co-ordinates of the layer.
I need to adjust the layer by touch and pinch.
The sample image is as below. I need ...
1
vote
1answer
65 views
Creating Video from Images with OpenCV in iPhone
Is there any way to create a video from array of images with OpenCV framework in iPhone?
Please help me.I do not know detail information about OpenCV framework.Thanx in advance.
0
votes
0answers
49 views
Load YML file in iOS
I have some data in a yml file. I want to load the data in iOS into OpenCV Mat datatype.
I have tried creating a seperate C++ file and loading using the below code.
Mat shape;
string Fshape = ...
0
votes
1answer
56 views
opencv framework with opengles trows error?
I tried running a basic opengl program from this link. I can run it successfully. Now I need some functionalities of opencv to be added in this.
So I added opencv framework from this link.
After ...
-3
votes
1answer
57 views
CVMat dimension/size/shape
I would like to get the dimensions of the cv::Mat object returned from (void)processImage:(cv::Mat&)image; in an Iphone application where I use OpenCV.
4
votes
1answer
395 views
color replacement in image for iphone application
Basically i want to implement color replacement feature for my paint application.
Below are original and expected output
Original:
After changing wall color selected by user along with some ...
5
votes
1answer
123 views
error: expected specifier-qualifier-list before 'cv'
I am using OpenCV framework for image processing, i am identifying edge in photo for
normal iOS project, now i am converting this code in cocos2d project, i have imported all
required headers but ...
0
votes
1answer
25 views
open cv cv::neon_cvtColorBGRA2GRAY issue
I am converting an image in cartoon like, My application run well in simulator. And desired output is coming, but problem is that when I run my app on device it gives error on below line.
if ...
5
votes
1answer
761 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 ...
1
vote
1answer
74 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);
...
2
votes
2answers
399 views
create opencv camera matrix for iPhone 5 solvepnp
I am developing an application for the iPhone using opencv. I have to use the method solvePnPRansac:
http://opencv.willowgarage.com/documentation/cpp/camera_calibration_and_3d_reconstruction.html
...
0
votes
0answers
127 views
Supplying Camera Attitude to OpenCV Stitcher
I'm trying to use OpenCV to stitch together 360° panoramas from images captured on my iPhone.
The stitching algorithm is working great, but doesn't provide any empty space for the areas that I have ...
0
votes
1answer
101 views
OpenCV CvCamera Preview
I am new in OpenCV as well as AVFoundation framework , I am trying to show the Video Preview captured from camera without writing it into a file. But when start button is pressed i need to write the ...
1
vote
1answer
94 views
How to write a simple image load function in ios using opencv
Can I write a simple C++ code for image load using Opencv in ios. Can you point me to some simple project where I can make a start.
0
votes
0answers
60 views
How can we copy a video file from library to documents directory?
Is it possible to copy a video file located at iOS photo library to our application's documents directory? I tried it using uiimagepickercontroller from where we get the NSUrl of the video file, then ...
0
votes
0answers
259 views
Distortion in Image Morphing using OpenCV
I am creating an iPhone application for image morphing using OpenCV 2.4.3. I am able to do the morphing but some noise/distortion is also getting introduced. I am not able to identify where the source ...
0
votes
1answer
381 views
OpenCV video processing tutorial issue
I followed the iOS video processing tutorial on the OpenCV site and managed to compile and install it on the device. However when I click on the "Start" button, nothing visible happens. Apparently ...
2
votes
1answer
89 views
Strange unmatched curly brace in OpenCV
I am using the version of OpenCV for iPhone, and I have encountered a somewhat strange error. In using the stitcher, some of the imported headers are now complaining about an unmatched '{' on this ...
0
votes
0answers
68 views
Opening video file with OpenCV
How can we open a video file in iPhone library using opencv? I know we would get camera output using _videoCapture->open(CV_CAP_AVFOUNDATION). But how can we get the stored videos? Any help will be ...
1
vote
2answers
269 views
library not found for -lstdc++ in Xcode
I am using the openCV2.framework in my application. It works fine in the simulator, but is not compiling for iOS devices. It get the following error
ld: library not found for -lstdc++
clang: error: ...
0
votes
1answer
296 views
Stitch two images using openCV in iOS
I want stitch the several images in iOS.
So i used the openCV framework.
Here is my code. But i got error..
...
1
vote
1answer
331 views
How to segment an image in iOS to remove background and retain the foreground picture
I need to segment an image in ios for a fashion app by keeping only the foreground image and removing all other background part of the image which should resemble like a tool for removing the ...
3
votes
1answer
821 views
Find corner of papers
I am new in openCV so struggling from last 3 to 4 days, I already detect paper sheet boundary, Now I wants to draw 4 circles on the corners.
I draw boundary from this code
const cv::Point* p = ...
-1
votes
2answers
67 views
Which library should i use for face Tracking for captured image?
I am creating one application with face processing. How may i create face animation?
Is there any library which i can use?
How to face track once capturing image of face?
Please help me
0
votes
2answers
429 views
Boundry detect paper sheet opencv
I am new in openCV, I already detect edge of paper sheet but my result image is blurred after draw lines on edge, How I can draw lines on edges of paper sheet so my image quality remain unaffected.
...
0
votes
1answer
373 views
Opencv cvvideocamera output capture session
I am doing some real-time video processing with openCV. So much in fact that the screen is a bit choppy while doing the processing. What I'd like to do is still process the images through the ...
1
vote
2answers
492 views
OCR for Iphone Application [closed]
I am a beginner. I wants to implement App the Business Card Reader(OCR), I have little knowledge of OpenCV. I wants to know from where I start? any links or example really appreciated.
I already try ...
-2
votes
1answer
112 views
image processing openCV [duplicate]
Possible Duplicate:
OCR using openCV
I wants to convert gray Image into Black and White (with good contrast). I am using openCV. I am struggling from last 3 days but my output image is not ...
0
votes
0answers
345 views
OCR using openCV
I wants to give effects on image using openCV, I am struggling from last 2 days and do little bit from my side. But not get the good output. Till now I only convert into gray. how to achieve remaining ...
0
votes
4answers
218 views
Open CV image effects
I am using openCV in objective C. I wants convert image into Black and White, I already done it, but my output Black and White image is not clear, there is black shade on image.
Any one can help?
- ...
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
96 views
Looks like a small error “Expected expression” but unable to find the solution
i used the project, in the below link
http://aptogo.co.uk/2011/09/opencv-framework-for-ios/
when i integrate that project in to my project or vice versa error comes up
Errors image is shown below
...
0
votes
0answers
77 views
Rebuilding the OpenCV framework issue [closed]
I am struggling from 3 days, I wants integrate openCV framework in my Xcode project, but still not get any success.
Is there is only one tutorial this one for integration openCV in iOS ? I got this ...

