2014-05-04 13:35:57 +02:00
|
|
|
###Delphi-OpenCV
|
|
|
|
* OpenCV version - 2.4.9<br>
|
|
|
|
* Development environment - Delphi XE2-XE6<br>
|
2013-07-06 15:20:17 +02:00
|
|
|
|
2014-05-18 11:22:27 +02:00
|
|
|
Requires installed [Visual C++ redistributable for Visual Studio 2013][2]<br>
|
2014-05-16 14:26:16 +02:00
|
|
|
|
2013-07-06 15:36:12 +02:00
|
|
|
#####Contributors:
|
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
|
|
|
```
|
2013-07-06 15:36:12 +02:00
|
|
|
####How to install:
|
2014-05-11 02:42:34 +02:00
|
|
|
Download the archive [link][1].<br>
|
|
|
|
Unzip it to a convenient directory, thus get the following directory structure.<br>
|
2013-06-10 06:36:45 +02:00
|
|
|
```
|
2014-05-11 02:42:34 +02:00
|
|
|
<PROJECT_ROOT> - Directory, such as "C:\OpenCV\"
|
2014-05-24 20:37:15 +02:00
|
|
|
<bin>
|
|
|
|
<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-05-24 20:39:55 +02:00
|
|
|
Add to your PATH variable path to the library "opencv_*.dll" and FFMPEG dll.
|
|
|
|
```
|
|
|
|
<PROJECT_ROOT>\bin\Win32
|
|
|
|
<PROJECT_ROOT>\bin\Win64
|
|
|
|
```
|
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
|
|
|
|
```
|
2013-12-03 19:28:59 +01:00
|
|
|
To install the components, open and install
|
|
|
|
```
|
2014-05-20 06:02:43 +02:00
|
|
|
<PROJECT_ROOT>\source\component\Delphi20\RAD Studio XE6.groupproj
|
2014-05-11 02:42:34 +02:00
|
|
|
```
|
2014-05-24 20:37:15 +02:00
|
|
|
Examples of use of components.
|
2014-05-11 02:42:34 +02:00
|
|
|
```
|
2014-05-04 13:35:57 +02:00
|
|
|
<PROJECT_ROOT>\samples\Components\cCameraCapture\cCameraCapture.dproj
|
2014-05-18 15:05:27 +02:00
|
|
|
<PROJECT_ROOT>\samples\Components\cMatchTemplate\cMatchTemplate.dproj
|
|
|
|
|
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
|