Project Delphi-OpenCV. Translation of OpenCV library header files in Delphi
Go to file
Michael Grigorev b3dd4c779f Fixed search path cCameraCapture samples
Signed-off-by: Michael Grigorev <sleuthhound@gmail.com>
2013-06-17 15:34:29 +06:00
Bin/Resource Added augmented reality example 2013-06-10 08:21:02 +04:00
component Continued attempts to design components 2013-06-01 00:29:25 +04:00
include Some of the changes 2013-06-13 18:10:58 +04:00
opencv_classes Added examples of working with IP cameras 2013-06-07 22:09:41 +04:00
samples Fixed search path cCameraCapture samples 2013-06-17 15:34:29 +06:00
.gitignore Components!? 2013-05-30 05:12:44 +04:00
README.md Update README.md 2013-06-14 11:23:31 +04:00
README.ru.md Added augmented reality example 2013-06-10 08:21:02 +04:00

Delphi-OpenCV

  • OpenCV version - 2.4.5
  • Development environment - Delphi XE2-XE4

Install:

  • Download the archive Delphi-OpenCV
  • Unzip it to a convenient directory, thus get the following directory structure
<Directory, such as 'C:\OpenCV' or just 'C:\' - <PROJECT_ROOT>>
	<Delphi-OpenCV-master>
		<Bin>
		<include>
		<opencv_classes>
		<samples>
  • Add the search path for the modules of the project in Delphi IDE (Tools-Options-Delphi Options-Library-Library path)
<PROJECT_ROOT>\Delphi-OpenCV-master\Include
<PROJECT_ROOT>\Delphi-OpenCV-master\Include\core
<PROJECT_ROOT>\Delphi-OpenCV-master\Include\highgui
<PROJECT_ROOT>\Delphi-OpenCV-master\Include\imgproc
<PROJECT_ROOT>\Delphi-OpenCV-master\Include\legacy
<PROJECT_ROOT>\Delphi-OpenCV-master\Include\nonfree
<PROJECT_ROOT>\Delphi-OpenCV-master\Include\objdetect
<PROJECT_ROOT>\Delphi-OpenCV-master\Include\calib3d
<PROJECT_ROOT>\Delphi-OpenCV-master\Include\contrib
<PROJECT_ROOT>\Delphi-OpenCV-master\Include\video

where <PROJECT_ROOT> directory, which was unzipped project.

  • You can unzip files subdirectory of the project without .
    Then the directory structure of the project is as follows:
<Directory, such as 'C:\OpenCV' - <PROJECT_ROOT>>
	<Bin>
	<include>
	<opencv_classes>
	<samples>

and path

<PROJECT_ROOT>\Include
<PROJECT_ROOT>\Include\core
<PROJECT_ROOT>\Include\highgui
<PROJECT_ROOT>\Include\imgproc
<PROJECT_ROOT>\Include\legacy
<PROJECT_ROOT>\Include\nonfree
<PROJECT_ROOT>\Include\objdetect
<PROJECT_ROOT>\Include\calib3d
<PROJECT_ROOT>\Include\contrib
<PROJECT_ROOT>\Include\video
<PROJECT_ROOT>\component\
  • Open <PROJECT_ROOT>\samples\LibTest.groupproj in Delphi IDE and compile the LibTest programs.
    Open <PROJECT_ROOT>\samples\MultiDemo.groupproj in Delphi IDE and compile the MultiDemo programs.
    Open <PROJECT_ROOT>\samples\ClassDemo.groupproj in Delphi IDE and compile the ClassDemo programs.

  • Open <PROJECT_ROOT>\samples\OpenCV.dproj in Delphi IDE and install OCV components
    Open <PROJECT_ROOT>\ComponentDemo.groupproj in Delphi IDE and compile the ComponentDemo programs.