OpenCV iOS Hello¶

OpenCV iOS Hello

Goal

In this tutorial we will learn how to:

  • Link OpenCV framework with Xcode
  • How to write simple Hello World application using OpenCV and Xcode.

Linking OpenCV iOS

Follow this step by step guide to link OpenCV to iOS.

  1. Create a new XCode project.
  2. Now we need to link opencv2.framework with Xcode. Select the project Navigator in the left hand panel and click on project name.
  3. Under the TARGETS click on Build Phases. Expand Link Binary With Libraries option.
  4. Click on Add others and go to directory where opencv2.framework is located and click open
  5. Now you can start writing your application.
OpenCV iOS in Xcode

Hello OpenCV iOS Application

Now we will learn how to write a simple Hello World Application in Xcode using OpenCV.

  • Link your project with OpenCV as shown in previous section.
  • Open the file named NameOfProject-Prefix.pch ( replace NameOfProject with name of your project) and add the following lines of code.
#ifdef __cplusplus
#import <opencv2/opencv.hpp>
#endif
header
  • Add the following lines of code to viewDidLoad method in ViewController.m.
UIAlertView * alert = [[UIAlertView alloc] initWithTitle:@"Hello!" message:@"Welcome to OpenCV" delegate:self cancelButtonTitle:@"Continue" otherButtonTitles:nil];
[alert show];
view did load
  • You are good to run the project.

Output

output
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值