Ask Your Question

hkaraoguz's profile - activity

2014-01-24 03:37:29 -0600 received badge  Teacher (source)
2012-09-19 09:50:55 -0600 received badge  Student (source)
2012-09-14 00:54:59 -0600 answered a question Errors when trying to import the OpenCV framework into an iOS project

Hi,

Your ViewController.m file should be renamed as ViewController.mm in order to use OpenCV or any other C++ code inside that file.

2012-09-14 00:47:56 -0600 answered a question Why doesnt QT get detected when I want to build openCV?

Maybe you should manually edit qt paths using ccmake during configuration step

2012-07-30 03:34:18 -0600 received badge  Scholar (source)
2012-07-19 05:10:14 -0600 received badge  Notable Question (source)
2012-07-17 16:46:06 -0600 answered a question Error when importing the iOS framework

Hi,

My .pch file is like this:

#import <Availability.h>
#ifndef __IPHONE_4_0
#warning "This project uses features only available in iOS SDK 4.0 and later."
#endif

#ifdef __cplusplus
#import <OpenCV/opencv2/opencv.hpp>
#endif

#ifdef __OBJC__
    #import <UIKit/UIKit.h>
    #import <Foundation/Foundation.h>
#endif

and it works without any problems.

2012-07-15 14:52:01 -0600 commented question opencv2 ios framework error

Sorry, my mistake. The first framework I have tried was also from trunk. When I have downloaded the framework that you have mentioned, the problem solved. Thank you!!

2012-07-15 14:29:59 -0600 received badge  Popular Question (source)
2012-07-13 04:17:35 -0600 asked a question opencv2 ios framework error

Hi,

I have recently compiled the newly released opencv2 framework for ios. It has compiled successfully but I have received linker errors for "split" and "merge" functions while using in my project:

  Undefined symbols for architecture armv7:
  "__ZN2cv5mergeERKSt6vectorINS_3MatESaIS1_EERKNS_12_OutputArrayE", referenced from:
      -[ImageProcessModule paintImage] in ImageProcessModule.o
  "__ZN2cv5splitERKNS_3MatERSt6vectorIS0_SaIS0_EE", referenced from:
      -[ImageProcessModule determineHUELimits] in ImageProcessModule.o
ld: symbol(s) not found for architecture armv7

Any solutions to the problem?

P.S: I am using capture functions and roi functions in the same project. They are working perfectly.