1
vote
1answer
28 views
OpenCV crashing at resize function
I'm getting a crash inside an iPhone app which is using some OpenCV code. The exception is thrown at the following line:
cv::Mat backup_f = m_color_feature;
cv::Mat backup_t = m_map;
double r = ...
0
votes
0answers
25 views
how to solve “Undefined symbols for architecture armv7” when I add OpenCV in ARDrone ios?
When I add OpenCV to the project, it happens "Undefined symbols for architecture armv7".
It won't compile even when I remove all the OpenCV Code.
OpenGL can work well before adding Opencv.
I have ...
0
votes
1answer
38 views
OpenCV invalid operands error
I'm trying to compile some OpenCV code without success. So please if you can help me It would be really nice.
This is the code:
cv::Vec3b c = my_cv_mat.at<cv::Vec3b>(i, j) / interval;
...
0
votes
1answer
39 views
Saving high quality images, doing live processing - what's the best approach?
I'm still learning about AVFoundation, so I'm unsure how best I should approach the problem of needing to capture a high quality still image, but provide a low-quality preview video stream.
I've got ...
1
vote
0answers
14 views
OpenCV Floodfill - Replace pixel color with transparent pixel
I'm trying to do Floodfill on UIImage and ended up using OpenCV framework. I can replace the color with a solid color by defining the color as cv::Scalar(255,0,0). However I want the floodfill ...
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
0answers
12 views
OpenCV UIImageView setImage not working after creating UIImage from Mat
I wanted to try out a simple example of OpenCV like this:
Mat greyMat;
cvtColor(image, greyMat, CV_BGR2GRAY);
filtered_image = [self UIImageFromCVMat:greyMat];
[color_filtered_view ...
0
votes
0answers
10 views
How to use CvPhotoCamera with iOS openCV?
I have followed the tutorial on how to use the CvVideoCamera object to play a video and apply some processing.
I am now interested to use the CvPhotoCamera object to capture a high definition ...
0
votes
1answer
34 views
Bad argument (image must have CV_8UC3 type) in grabCut
I am using grabCut algorithm using the following code:
cv::Mat img=[self cvMatFromUIImage:image];
cv::Rect rectangle(10,10,300,150);
cv::Mat result; // segmentation (4 possible values)
cv::Mat ...
0
votes
0answers
36 views
opencv2.framework/opencv2(surf.o) duplicate symbols for architecture armv7
I am integrating opencv2.framework with my project. I did the following steps for completion.
Added opencv2.framework to "Linked Frameworks and Libraries"
Added libc++.dylib to "Linked Frameworks ...
0
votes
1answer
25 views
+50
Embed OpenCV framework inside another xCode project without linking
I have developed an xCode static library for an iPhone App using OpenCV.
Now I want to give my static library to them but I don't want them to go through the hassle of making OpenCV work in their ...
-3
votes
0answers
51 views
Opencv and ios to detect peak values of ECG Graph [closed]
Hi I am doing my final year project and I need help with understanding image processing and its implementation with ios, the input will be in the form of image like this:
given this input the ...
0
votes
0answers
23 views
Restkit and opencv2 framework
In my project in using restkit to connect to the webservice and I need to use opencv for image processing. Currently I have integrated restkit and having linker flag for it as -all_load and -ObjC in ...
2
votes
1answer
129 views
Compiling OpenCV 2.4.5 in xcode 4.6.2 for iOS
I've been trying to build opencv framework for ios using the steps in the readme file in the ios directory:
Assuming that your build directory is on the same level that opencv source,
From the build ...
0
votes
1answer
109 views
Tesseract-OCR 3.02 with libc++
Xcode 4.6, iOS SDK 6.1, tesseract-ocr 3.02
Since the last OpenCV versions are built using libc++, and tesseract-ocr is built using libstdc++, they can't be used together in one xcode project.
So, I'm ...
0
votes
1answer
49 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?
- ...
0
votes
1answer
74 views
UIImage imageWithData returns nil
I'm developing an iOS 5.0+ app with latest SDK.
On my app I have some C++ image recognition software, and I'm trying to save image recognized by this C++ functions.
I have this array to store image ...
0
votes
0answers
76 views
Detect presence of objects using OpenCV in live iphone camera
Can anyone help me to detect realtime objects in iPhone camera using OpenCV?
My actual objective is to give an alert to users while an object interfering on a specific location of my application ...
3
votes
1answer
102 views
Page corner detection using OpenCV
I am using opencv to detect corners of page in UIImageView for iOS. I tried below code:
IplImage *image = [self CreateIplImageFromUIImage:imageView.image];
CvPoint2D32f* corners;
int* corner_count;
...
-1
votes
0answers
46 views
Focus of Expansion in openCV in iOS [closed]
We want to detect the vehicle shape on iPad . Therefore we are using openCV for that we are stuck at focus of expansion , can anyone suggest me sample code or anything regarding this and how to ...
0
votes
1answer
52 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
1answer
48 views
How can i create a framework from a third party framework and my source code?
i compile opencv from source code to opencv2.framework file. And i wrote some code that using opencv2.framework. Now, i have to create package from my code for third party developer.
...
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
66 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 ...
7
votes
2answers
370 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 ...
4
votes
1answer
131 views
Stretch region of image through opencv or opengl in iOS
I am trying to make double chin in fat image as mentioned in my desired result image below.
I have morphed the normal face to fat face by wrapping an image on mesh and deformed the mesh.
Original ...
0
votes
2answers
175 views
cv::Scalar not displaying expected color
On an image frame, I use
void ellipse(Mat& img, Point center, Size axes, double angle, double startAngle, double endAngle, const Scalar& color, int thickness=1, int lineType=8, int shift=0)
...
1
vote
2answers
280 views
Cannot build OpenCV framework for iOS
I am having trouble building the framework.
I have cloned a copy of OpenCV from here: https://github.com/Itseez/opencv
Then checked that I have the latest cmake 2.8.10.2
Then run build_framework.py ...
0
votes
1answer
124 views
OpenCV 2.4.3+ with libstdc++ for iOS?
I'm trying to include a recent version of OpenCV into an existing iOS project and am having linker errors because my XCode project is set to use libstdc++ and not libc++ / C++ 11 support.
I have seen ...
1
vote
1answer
151 views
ld: file too small for architecture i386
So I am trying to create a simple OpenCV project. I downloaded OpenCV from here:
http://opencv.org/downloads.html
I have unarchived the downloaded file with:
tar xzvf opencv2.framework
I ...
5
votes
2answers
207 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 ...
0
votes
1answer
214 views
Edge Smoothing and filling inner contours in opencv with iOS
I am trying to tan human skin with different intensity with help of opencv. I have already identified human skin and changing color tone of those pixels. But it is not smooth.
Top left - original ...
-1
votes
1answer
124 views
Get Started with Open CV image recognition
I am trying to make an app for image recognition with Open CV, i want to implement something like this but i don't know how should i do it can any one give me any help where should i begin from i have ...
0
votes
0answers
31 views
Library Issue with Open CV sample?
I am trying to work on Open CV as i am new to it so having some problem implementing project from scratch so i tried out this sample but when i followed their steps i got following error
ld: warning: ...
1
vote
1answer
179 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 ...
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 ...
4
votes
2answers
197 views
Is it possible to determine the yaw, pitch and roll of a face given the locations of the eyes and mouth? (picture included)
Red dots = Left Eye Center (L), Right Eye Center (R), Mouth Center (M)
Purple Line = Line LR
Red Line = Horizontal line intersecting midpoint of L and R
Yellow Line = Vertical Line intersecting ...
0
votes
1answer
96 views
HSV range for open cv iOS
I am trying to detect skin in iOS through open cv. My Code is mentioned below.
cvCvtColor(&srcIplImage, &hsvIplImage, CV_BGR2HSV);
CvScalar lower = cvScalar(0, 58, 88);
CvScalar upper = ...
0
votes
1answer
89 views
OpenCV line detection and extraction using ios
Hi i am using opencv for the line detection in ios. This is for my final year project. I want to upload the image of ecg and then extract the line from this for that i have used the opencv and ...
0
votes
1answer
126 views
How to get luminosity of Mat image from opencv?
I'm doing an image processing on iOS using OpenCV in c++. Sometime the ambient light is not enough and the image cannot be processed properly. I did not found any suitable way to detect the ambient ...
0
votes
0answers
101 views
How to add OpenCV to Sparrow Framework on iOS?
I'm trying to use a precompiled OpenCV Framework 2.4.4 with Sparrow Framework 1.4 . What I did was:
With the Xcode project "AppScaffold" (under sample/scafford/src), added opencv2.framework; also in ...
7
votes
1answer
89 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 ...
0
votes
1answer
204 views
Detect edges of barcode with OpenCV in iOS
I'm having the user capture an image of a barcode that they are asked to place inside a bounding box drawn on the camera overlay. I'd like to detect whether that barcode was properly placed in the ...
0
votes
1answer
100 views
opencv undistortPoints returning NaN ios
I have been working with opencv, and I cannot seem to get undistortPoints to work. The matrix it returns has nothing but NaN values.
//newKeyPoints is std::vector<cv::KeyPoint>, and it's ...
0
votes
1answer
370 views
Tracking of detected faces using OpenCV on iOS
First, a quick bit of background: I am fairly new to iOS and am attempting to detect faces using OpenCV on an iOS device. I was able to get the iOS openCV sample code working fine using the sample ...
0
votes
0answers
119 views
OpenCV imencode pgm doesn't encode the correct format
I am trying to encode a Mat CV_32FC1 image to send it over the internet with base64, the process works but the OpenCV encodes in the wrong format. Example:
vector<unsigned char> buffer;
...
0
votes
0answers
91 views
iOS - OpenCV 2.4.3 - Find whether the entire object is found in the scene
I'm trying to figure out how to find whether a sample image can be found in a scene image in its entirety. That is, I want to be able to get a positive answer when the entire sample image can be seen ...
1
vote
1answer
61 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
1answer
90 views
Grabbing last frame from cv::VideoCapture
How can I access the last frame of a video using cv::VideoCapture?
In OpenCVViewController.h:
@interface OpenCVViewController : UIViewController {
cv::VideoCapture *_videoCapture;
cv::Mat ...
0
votes
1answer
146 views
cv::Mat doesn't match UIImageView width?
I am using AVFoundation to capture video frames, process with opencv and display the result in an UIImageView on the new iPad. The opencv process does the followings ("inImg" is the video frame) :
...



