2014-11-27 22:11:47 +01:00
##Delphi-OpenCV
2014-05-04 13:35:57 +02:00
* OpenCV version - 2.4.9< br >
2014-09-29 12:27:02 +02:00
* Development environment - Delphi 2010-XE7< br >
2014-11-26 05:38:15 +01:00
2014-11-27 22:11:47 +01:00
< b > Contributors:< / b >
2013-07-06 15:31:05 +02:00
```
2014-05-11 02:42:34 +02:00
Laentir Valetov (email: laex@bk.ru)
Mikhail Grigorev (email: sleuthhound@gmail.com)
2013-07-06 15:31:05 +02:00
```
2014-11-27 22:11:47 +01:00
##Requirements:
2014-11-25 02:41:51 +01:00
* Requires installed [Visual C++ redistributable for Visual Studio 2013][2]< br >
* Some examples (FFMPEG) required [SDL 2.0 and SDL 1.2][3]< br >
* < b > Warning! Dynamic OpenCV library is not included in the repository!</ b >< br >
Dynamic library OpenCV need to download [here] [4]
* Shared library FFMPEG for Windows can be downloaded from [link] [5]
2014-11-27 22:11:47 +01:00
< b > Note:< / b >
```
Do not forget to add to your PATH variable path to the library "opencv_*.dll" and FFMPEG dll.
If for some reason the installation of "Visual C ++ redistributable for Visual Studio 2013" was held fails, you can:
--- for 64-bit ---
1. Copy the dll files from the < PROJECT_ROOT > \redist\VC2013x64\ to C:\Windows\System32\
2. Copy all the dll from < PROJECT_ROOT > \bin\Win64 in the C:\Windows\System32\
3. Copy the dll files from the < PROJECT_ROOT > \redist\VC2013x86\ to C:\Windows\SysWOW64\
4. Copy all the dll from < PROJECT_ROOT > \bin\Win32 in the C:\Windows\SysWOW64\
--- for 32-bit ---
1. Copy the dll files from the < PROJECT_ROOT > \redist\VC2013x86\ to C:\Windows\System32\
2. Copy all the dll from < PROJECT_ROOT > \bin\Win32 in the C:\Windows\System32\
```
##How to install:
Download the [archive][1].< br >
2014-09-30 08:19:43 +02:00
Unzip it to a convenient directory, thus get the following directory structure< br >
2013-06-10 06:36:45 +02:00
```
2014-11-25 02:41:51 +01:00
< PROJECT_ROOT > - Directory, for example, "C:\Delphi\OpenCV\"
2014-05-24 20:37:15 +02:00
< bin >
2014-09-30 08:19:43 +02:00
< redist >
2014-05-24 20:37:15 +02:00
< resource >
< samples >
< source >
2013-06-10 06:36:45 +02:00
```
2014-05-11 02:42:34 +02:00
Add the search path for the modules of the project in Delphi IDE (Tools-Options-Delphi Options-Library-Library path)
2013-06-10 06:36:45 +02:00
```
2014-05-20 06:02:43 +02:00
< PROJECT_ROOT > \source
2014-05-23 09:23:59 +02:00
< PROJECT_ROOT > \source\utils
2014-05-20 06:02:43 +02:00
< PROJECT_ROOT > \source\component
2014-05-22 08:53:48 +02:00
< PROJECT_ROOT > \source\sdl
2014-05-23 09:23:59 +02:00
< PROJECT_ROOT > \source\opengl
2014-05-24 20:37:15 +02:00
< PROJECT_ROOT > \source\ffmpeg
< PROJECT_ROOT > \resource\facedetectxml
2013-06-10 06:36:45 +02:00
```
2014-05-24 20:37:15 +02:00
where ```< PROJECT_ROOT > ``` directory, which was unzipped project.< br >
2014-11-27 22:11:47 +01:00
2014-09-30 08:19:43 +02:00
To install the components, open and install
2014-05-24 20:39:55 +02:00
```
2014-09-30 08:19:43 +02:00
< PROJECT_ROOT > \source\component\DelphiXX\OpenCVXXX.dpk
< PROJECT_ROOT > \source\component\DelphiXX\dclCommonOpenCVXXX.dpk
< PROJECT_ROOT > \source\component\DelphiXX\dclVCLOpenCVXXX.dpk
< PROJECT_ROOT > \source\component\DelphiXX\dclFMXOpenCVXXX.dpk
2014-05-24 20:39:55 +02:00
```
2014-05-11 02:42:34 +02:00
Open in Delphi IDE and compile:< br >
2013-12-03 19:28:59 +01:00
Examples of the use of certain functions and procedures
2013-07-12 20:31:28 +02:00
```
2014-05-04 13:35:57 +02:00
< PROJECT_ROOT > \samples\LibDemo\LibDemo.groupproj
2013-12-03 19:28:59 +01:00
```
Examples of the use of video processing algorithms
```
2014-05-04 13:35:57 +02:00
< PROJECT_ROOT > \samples\MultiDemo\MultiDemo.groupproj
2013-12-03 19:28:59 +01:00
```
Examples of the use of video processing algorithms using VCL.Forms
```
2014-05-04 13:35:57 +02:00
< PROJECT_ROOT > \samples\VCLDemo\VCLDemo.groupproj
2013-12-03 19:28:59 +01:00
```
2014-05-24 20:37:15 +02:00
Examples of using FFMPEG library header files are in the
```
< PROJECT_ROOT > \samples\FFMpeg\FFMPEG.groupproj
```
2014-09-30 08:19:43 +02:00
Examples of use of components
2014-05-11 02:42:34 +02:00
```
2014-09-30 08:19:43 +02:00
< PROJECT_ROOT > \samples\Components\ComponentsDemo.groupproj
2014-05-11 02:42:34 +02:00
```
2015-01-22 18:13:17 +01:00
< a href = 'https://pledgie.com/campaigns/28083' > < img alt = 'Click here to lend your support to: Delphi-OpenCV and make a donation at pledgie.com !' src = 'https://pledgie.com/campaigns/28083.png?skin_name=chrome' border = '0' > < / a >
2014-05-11 02:42:34 +02:00
[1]: https://github.com/Laex/Delphi-OpenCV/archive/master.zip
2014-05-18 14:47:35 +02:00
[2]: http://www.microsoft.com/ru-ru/download/details.aspx?id=40784
2014-11-25 02:41:51 +01:00
[3]: https://www.libsdl.org/index.php
[4]: http://opencv.org/downloads.html
2014-11-26 05:38:15 +01:00
[5]: http://ffmpeg.zeranoe.com/builds/