Ask Your Question

lakshmi's profile - activity

2018-05-20 06:20:19 -0600 received badge  Popular Question (source)
2015-03-02 05:15:09 -0600 asked a question how to compare two images taken from iphone camera quickly opencv ios?

Hi,

I have tried the below code for comparing images taken from iphone camera. It is working fine. But the problem here is like taking long time for comparing images. Please suggest me the corrections in the below code to compare the images quickly or suggest any alternate methods for image comparison of camera images.

I have tried the -(NSArray)getRGBAsFromImage:(UIImage)image atX:(int)xx andY:(int)yy method for comparing images through the below link.

http://stackoverflow.com/questions/15... Help is highly appreciable.

Thanks in advance.

2015-02-17 06:09:10 -0600 commented answer delay in frame processing through opencv iOS

Hi , Thanks a lot for your solution.I have added the code like as you mentioned above.Please just verify whether it is correct or not.

 if (_videoCapture && _videoCapture->grab())
    {
        for(int i=0;i<10;i++)
        {
        (*_videoCapture) >> _lastFrame;
        }
         (*_videoCapture) >> _lastFrame;
        imshow("fresh frame",_lastFrame.clone());
        [self processFrame];
}

I have tried this. But still I am getting the same delay. Correct me if there is any wrong in the code.

Thanks in advance.

2015-02-17 06:04:06 -0600 received badge  Enthusiast
2015-02-16 01:03:19 -0600 asked a question delay in frame processing through opencv iOS

Hi,

I am using OpenCV's VideoCapture , but the problem I am facing is that the image that I take at a certain moment does not show the latest thing that the camera sees. That is, if I take an image at timestamp t, it shows what the camera saw at timestamp (t - delta), so to say. How can I resolve this delay issue in processing frames. I have searched in google and many of them mentioned like may be due to _videoCapture->grab() function. If it so, please suggest me the alternative for _videoCapture->grab()) function to reduce this delay time? Help is highly appreciable.

Thanks in advance.

2015-01-29 01:08:52 -0600 asked a question Opencv drawing detected objects in iOS

Hi ,

I found the below image along with the url http://code.opencv.org/projects/openc... in the web for drawing detected objects through openCV. I have tried the below iOS source examples mentioned in the url http://eosgarden.net/en/opensource/op...

http://niw.at/articles/2009/03/14/usi...

image description

But if Iam trying the above iOS source examples through the urls , Iam getting some other result like edge detection . The output image is like below

image description

Please suggestion any solution or tutorials to obtain like the first image. Help is highly appreciable.

Thanks in advance

2015-01-07 03:46:21 -0600 asked a question opencv for object recognition in ios xcode versions

Hi,

     Whether openCV for object recognition in iOS supports xcode 5 and highest versions? If so, please suggest any documentations or tutorial links.

Thanks & Regards, Lakshmi.

2015-01-06 05:40:52 -0600 asked a question object recognition using opencv without user interaction

Hi,

I have downloaded openCV from the below link for iOS. https://github.com/macmade/OpenCV-iOS. When I am trying to run this project in XCode 5.0.2, iam getting the following error. clang: error: no such file or directory: '/Users/administrator/Downloads/OpenCV-iOS-master/opencv-2.0/iPad/OpenCV/lib/iPhoneOS/lib/libcv.a' clang: error: no such file or directory: '/Users/administrator/Downloads/OpenCV-iOS-master/opencv-2.0/iPad/OpenCV/lib/iPhoneOS/lib/libcxcore.a'

Whether OpenCV supports the latest version of XCode 5 and 6 ? Please suggest me to resolve this issue. Thanks in advance.