OpenCV Tutorial Part I Using OpenCV with Microsoft Visual Studio .net 2003 28 November 2005 Gavin S Page gsp8334@cs.rit.edu.

Slides:



Advertisements
Similar presentations
®® Microsoft Windows 7 Windows Tutorial 3 Personalizing Your Windows Environment.
Advertisements

SOFTWARE PRESENTATION ODMS (OPEN SOURCE DOCUMENT MANAGEMENT SYSTEM)
Win8 on Intel Programming Course Desktop : Perceptual Computing Cédric Andreolli Intel.
Introduction to OpenCV Dr. Chung-Hao Chen Haole Guo Sep 2011.
Gavin S Page OpenCV Tutorial Part I Using OpenCV with Microsoft Visual Studio.net November 2005.
CS 1400 Using Microsoft Visual Studio 2005 if you don’t have the appropriate appendix.
Using Visual C++ and Pelles C
Tutorial on Visual Studio express Introduction Visual Studio Express Editions are a new line of Microsoft development Tools. This line of products.
2. Introduction to the Visual Studio.NET IDE 2. Introduction to the Visual Studio.NET IDE Ch2 – Deitel’s Book.
®® Microsoft Windows 7 Windows Tutorial 6 Searching for Information and Collaborating with Others.
September 2008 IT Software Development Guide.
Microsoft Visual Basic 2005 CHAPTER 12 Cell Phone Applications and Web Services.
1 ENG236: ENG236: C++ Programming Environment (2) Rocky K. C. Chang THE HONG KONG POLYTECHNIC UNIVERSITY.
OpenCV Open source C omputer V ision library By: Bahare Torkaman Fall 2010.
OPENCV TUTORIAL OpenCV Windows 7 Microsoft Visual C++ Express 2010.
1 INF160 IS Development Environments AUBG, COS dept Lecture 06 Title: Dev Env: Code::Blocks (Extract from Syllabus) Reference:
IT 211 Project Integration and Deployment Lab #11.
CS Tutorial 1 Getting Started with Visual Studio 2012 (Visual Studio 2010 are no longer available on MSDNAA, please choose Visual Studio 2012 which.
Intro to C++. Getting Started with Microsoft Visual Studios Open Microsoft Visual Studios 2010 Click on file Click on New Project Choose Visual C++ on.
Computer Programming for Engineers Introduction to Programming in C Language on Visual C Platform Intro. Comp. Prog. C-Language1.
2. Introduction to the Visual Studio.NET IDE. Chapter Outline Overview of the Visual Studio.NET IDE Overview of the Visual Studio.NET IDE Menu Bar and.
Lecture Set 2 Part B – Configuring Visual Studio; Configuration Options and The Help System (scan quickly for future reference)
Computer Science I How to Configure Visual Studio.NET 2003 for C++ Colin Goble.
ZONG Wen Department of Computer Science and Engineering The Chinese University of Hong Kong
Using Microsoft Visual Studio 2005 Original by Suma Rao Revised by John G. McMahon ( 9/6/2008 )
Programming with Visual Studio 2005.NET A short review of the process.
Programming with Visual Studio.NET A short review of the process.
HOW TO INSTALL & USE OPENCV. I - CHOOSE YOUR FAVORITE IDE Microsoft Visual Studio Express 2013 for Window Desktop (Free) can be downloaded from
1 Getting Started with C++. 2 Objective You will be able to create, compile, and run a very simple C++ program on Windows, using Visual Studio 2008.
Lecture Set 2 Part A: Creating an Application with Visual Studio – Solutions, Projects, Files 8/10/ :35 PM.
1 Getting Started with C++ Part 1 Windows. 2 Objective You will be able to create, compile, and run a very simple C++ program on Windows, using Microsoft.
Open project in Microsoft Visual Studio → build program in “Release” mode.
XP Tutorial 3 New Perspectives on Microsoft Windows XP 1 Microsoft Windows XP Organizing Files with Windows Explorer Tutorial 3.
C Programming Lecture 3 : C Introduction 1 Lecture notes : courtesy of Woo Kyun and Chang Byung-Mo.
How to install JavaCV in Eclipse. Make sure to download and install all these before you proceed Eclipse for Java EE developers (current is Juno)
Tutorial 1 Writing Your First C++ Program CSC1110C Introduction to Computer Programming By Paul Pun Acknowledgement: Special thanks to Dr. Michael Fung.
Pasewark & Pasewark 1 Windows Vista Lesson 1 Windows Vista Basics Microsoft Office 2007: Introductory.
Dive Into® Visual Basic 2010 Express
Creating a Presentation
Development Environment Setup
Converting CSV Files to Excel
Chapter 2: The Visual Studio .NET Development Environment
Section 4.1 Section 4.2 Format HTML tags Identify HTML guidelines
Computer Terms Review from what language did C++ originate?
Chapter 1: An Introduction to Visual Basic 2015
Chapter 2 – Introduction to the Visual Studio .NET IDE
Coding Defensively Coding Defensively
Adding a File to a Course
Fastest way for already created documents
Using Procedures and Exception Handling
CMPE 152: Compiler Design ANTLR 4 and C++
02 | Developing ASP.NET MVC 4 Models
Windows Internet Explorer 7-Illustrated Essentials
CS323 Android Getting Started
Social Media And Global Computing Introduction to Visual Studio
Chapter 2 – Introduction to the Visual Studio .NET IDE
1. Open Visual Studio 2008.
Microsoft Visual Studio
Lab 1 Introduction to C++.
Double click Microsoft Visual Studio 2010 on the Computer Desktop
Creating the First Program
Creating a Windows Application Project in Visual Studio
Using FrontPage Express
Computer Terms Review from what language did C++ originate?
SOAP web services in Microsoft Azure
Microsoft Windows 7 Basics
Overview of the IDE Visual Studio .NET is Microsoft’s Integrated Development Environment (IDE) for creating, running and debugging programs (also.
Overview of System Development for Windows CE.NET
IS 135 Business Programming
Presentation transcript:

OpenCV Tutorial Part I Using OpenCV with Microsoft Visual Studio .net 2003 28 November 2005 Gavin S Page gsp8334@cs.rit.edu

(from the documentation) (from the documentation) OpenCV OpenCV means Intel® Open Source Computer Vision Library. It is a collection of C functions and a few C++ classes that implement some popular Image Processing and Computer Vision algorithms. What is OpenCV? (from the documentation) Cross-Platform API of C functions FREE for commercial and non-commercial uses The key features (from the documentation) You can take advantage of high speed implementations of functions commonly used in Computer Vision/Image Processing. What this means 28 November 2005 Gavin S Page gsp8334@cs.rit.edu

How to obtain the library How to install the library OpenCV Available on Sourceforge http://sourceforge.net/projects/opencvlibrary/ (Or use your favorite search engine) How to obtain the library Download and Install the Executable How to install the library (On Windows) 28 November 2005 Gavin S Page gsp8334@cs.rit.edu

Gavin S Page gsp8334@cs.rit.edu Configuring MSVS .net 2k3 Upon loading Visual Studio it is recommended that you adjust the profile to that of “Visual C++ Developer.” This will help keep things straight when I reference keyboard shortcuts later on. 28 November 2005 Gavin S Page gsp8334@cs.rit.edu

File -> New -> Project Configuring MSVS .net 2k3 A project is initially created by selecting: File -> New -> Project Creating the Project Create a “Win32 Console Project” Make it an “Empty Project” by selecting the box under “Application Settings” 28 November 2005 Gavin S Page gsp8334@cs.rit.edu

Configuring MSVS .net 2k3 Create the First File Right Click the “Source Files” Folder under the project name (“Tutorial” in this case) Add -> Add new Item Create the First File Select “C++ file” and give it a name Creating a file makes it possible to set “Additional Include Directives” in the C/C++ pane under the project properties. 28 November 2005 Gavin S Page gsp8334@cs.rit.edu

Open the Properties Pane Configuring MSVS .net 2k3 In order to build projects using OpenCV the required libraries and directives must be included in the project’s properties Right Click the name of the project and select “Properties” (“Tutorial” in this case) Open the Properties Pane 28 November 2005 Gavin S Page gsp8334@cs.rit.edu

Set Additional Include Directives Configuring MSVS .net 2k3 Under the C/C++ tab select “General” Set Additional Include Directives Select the “Additional Include Directives” Add the full path to each of the folders which contain “.h” files required to use OpenCV Be sure to include trailing “\” C:\Program Files\OpenCV\cvaux\include\ C:\Program Files\OpenCV\cxcore\include\ C:\Program Files\OpenCV\cv\include\ C:\Program Files\OpenCV\otherlibs\highgui\ C:\Program Files\OpenCV\otherlibs\cvcam\include\ Utilized Directives 28 November 2005 Gavin S Page gsp8334@cs.rit.edu

Set Additional Dependencies Utilized Dependencies Configuring MSVS .net 2k3 Under the Linker tab select “Input” Set Additional Dependencies Select the “Additional Dependencies” Add the full path to each of the “.lib” files required to use OpenCV Be sure to keep the paths in quotes "C:\Program Files\OpenCV\lib\cv.lib“ "C:\Program Files\OpenCV\lib\cvaux.lib“ "C:\Program Files\OpenCV\lib\cxcore.lib“ "C:\Program Files\OpenCV\lib\cvcam.lib“ "C:\Program Files\OpenCV\lib\highgui.lib" Utilized Dependencies 28 November 2005 Gavin S Page gsp8334@cs.rit.edu

Testing the First Program Testing MSVS .net 2k3 #include <cv.h> #include <highgui.h> /* This will pop up a small box with "Hello World" as the text. @author: Gavin Page, gsp8334@cs.rit.edu @date: 28 November 2005 */ int main( int argc, char** argv ) { //declare for the height and width of the image int height = 320; int width = 240; //specify the point to place the text CvPoint pt = cvPoint( height/4, width/2 ); //Create an 8 bit, 3 plane image IplImage* hw = cvCreateImage(cvSize(height, width), 8, 3); //initialize the font CvFont font; cvInitFont( &font, CV_FONT_HERSHEY_COMPLEX, 1.0, 1.0, 0, 1, CV_AA); //place the text on the image using the font cvPutText(hw, "Hello World", pt, &font, CV_RGB(150, 0, 0) ); //create the window container cvNamedWindow("Hello World", 0); //display the image in the container cvShowImage("Hello World", hw); //hold the output windows cvWaitKey(0); return 0; } Now that the environment is configured it would be a good idea to test it to make sure that a program will correctly build and run. The enclosed code can be cut and pasted into the file created in the project space to test OpenCV Testing the First Program 28 November 2005 Gavin S Page gsp8334@cs.rit.edu

Testing MSVS .net 2k3 Building the Program The program is built by selecting: Build -> Build Solution Or by pressing “F7” Building the Program Output of Program The program is run by selecting: Debug -> {Start||Start without Debugging} Or by pressing “F5” or “<Ctrl>-F5” Running the Program 28 November 2005 Gavin S Page gsp8334@cs.rit.edu

There are also a number of tutorials on the web including: At this point you should have a working OpenCV project. If the program is not working you should go back and carefully recheck the steps. From here you can explore the documentation to review the functions available. There are also a number of tutorials on the web including: http://www.site.uottawa.ca/~laganier/tutorial/opencv+directshow/cvision.htm http://www.softintegration.com/products/thirdparty/opencv/demos/ Or you can just search for them You should also join the OpenCV Community located at: http://groups.yahoo.com/group/OpenCV/ As of today there are >15000 members available to answer questions. There is also a searchable message board where you can look up previous queries. 28 November 2005 Gavin S Page gsp8334@cs.rit.edu

Revision History 28 November 2005 Gavin S Page gsp8334@cs.rit.edu Initial Creation: 28 November 2005 28 November 2005 Gavin S Page gsp8334@cs.rit.edu