Project Delphi-OpenCV. Translation of OpenCV library header files in Delphi
Go to file
Mikhail Grigorev 767431f598 Added USE_INLINE
Signed-off-by: Mikhail Grigorev <sleuthhound@gmail.com>
2014-08-27 10:37:44 +06:00
bin FMX support 2014-08-06 02:36:22 +04:00
resource Crop image operation 2014-05-21 21:09:22 +04:00
samples Refactoring 2014-08-25 00:37:55 +04:00
source Added USE_INLINE 2014-08-27 10:37:44 +06:00
.gitattributes Refactoring, new wrapper Opencv classes 2014-04-04 21:14:06 +04:00
.gitignore Hmmm... 2014-07-31 20:40:07 +04:00
README.md Fixed README.md 2014-08-26 15:05:53 +06:00

###Delphi-OpenCV

  • OpenCV version - 2.4.9
  • Development environment - Delphi XE2-XE7

Requires installed Visual C++ redistributable for Visual Studio 2013

#####Contributors:

 Laentir Valetov (email: laex@bk.ru)
 Mikhail Grigorev (email: sleuthhound@gmail.com)

####How to install: Download the archive link.
Unzip it to a convenient directory, thus get the following directory structure.

<PROJECT_ROOT> - Directory, such as "C:\OpenCV\"
	<bin>
	<resource>
	<samples>
	<source>

Add the search path for the modules of the project in Delphi IDE (Tools-Options-Delphi Options-Library-Library path)

<PROJECT_ROOT>\source
<PROJECT_ROOT>\source\utils
<PROJECT_ROOT>\source\component
<PROJECT_ROOT>\source\sdl
<PROJECT_ROOT>\source\opengl
<PROJECT_ROOT>\source\ffmpeg
<PROJECT_ROOT>\resource\facedetectxml

where <PROJECT_ROOT> directory, which was unzipped project.
Add to your PATH variable path to the library "opencv_*.dll" and FFMPEG dll.

<PROJECT_ROOT>\bin\Win32
<PROJECT_ROOT>\bin\Win64

Open in Delphi IDE and compile:
Examples of the use of certain functions and procedures

<PROJECT_ROOT>\samples\LibDemo\LibDemo.groupproj

Examples of the use of video processing algorithms

<PROJECT_ROOT>\samples\MultiDemo\MultiDemo.groupproj

Examples of the use of video processing algorithms using VCL.Forms

<PROJECT_ROOT>\samples\VCLDemo\VCLDemo.groupproj

Examples of using FFMPEG library header files are in the

<PROJECT_ROOT>\samples\FFMpeg\FFMPEG.groupproj

To install the components, open and install

<PROJECT_ROOT>\source\component\Delphi20\RAD Studio XE6.groupproj

Examples of use of components.

<PROJECT_ROOT>\samples\Components\cCameraCapture\cCameraCapture.dproj
<PROJECT_ROOT>\samples\Components\cMatchTemplate\cMatchTemplate.dproj