Delphi-OpenCV/README.md

114 lines
3.7 KiB
Markdown
Raw Normal View History

2015-03-17 21:00:18 +01:00
#Delphi-OpenCV
* OpenCV version - 2.4.13<br>
* Development environment - Delphi 2010-10.1<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
```
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:
2015-03-17 21:00:18 +01:00
* Visual C++ redistributable for Visual Studio 2013<br>
Files: msvcp120.dll, msvcr120.dll, msvcp120d.dll, msvcr120d.dll
```
(1) 32-bit in the "Delphi-OpenCV\redist\VC2013x86\"
(2) 64-bit in the "Delphi-OpenCV\redist\VC2013x64\"
```
* Shared library FFMPEG for Windows can be downloaded from [here][5] (build ffmpeg-20160710-d4c8e93)<br>
libavutil 55. 28.100 / 55. 28.100<br>
libavcodec 57. 50.100 / 57. 50.100<br>
libavformat 57. 41.100 / 57. 41.100<br>
libavdevice 57. 0.102 / 57. 0.102<br>
libavfilter 6. 47.100 / 6. 47.100<br>
libswscale 4. 1.100 / 4. 1.100<br>
libswresample 2. 1.100 / 2. 1.100<br>
libpostproc 54. 0.100 / 54. 0.100<br>
2015-03-17 21:00:18 +01:00
```
(3) FFmpeg 32-bit Shared
(4) FFmpeg 64-bit Shared
```
* Dynamic library OpenCV need to download [here][4]<br>
Files: _2413.dll and _2413d.dll
2015-03-17 21:00:18 +01:00
```
After installing OpenCV:
2015-03-17 21:00:18 +01:00
(5) 32-bit in the C:\OpenCV\build\x86\vc12\bin\
(6) 64-bit in the C:\OpenCV\build\x64\vc12\bin\
```
* Some examples (FFMPEG) required [SDL 2.0 and SDL 1.2][3]<br>
2014-11-27 22:11:47 +01:00
```
2015-03-17 21:00:18 +01:00
(7) SDL.dll and SDL2.dll
```
2014-11-27 22:11:47 +01:00
2015-03-17 21:00:18 +01:00
####Copy files
<b>OS Windows 64-bit</b><br>
```
Target platform 64-bit: (2),(4),(6) -> "C:\Windows\System32\"
Target platform 32-bit: (1),(3),(5),(7) -> "C:\Windows\SysWOW64\"
```
<b>OS Windows 32-bit</b><br>
```
Target platform 32-bit: (1),(3),(5),(7) -> "C:\Windows\System32\"
2014-11-27 22:11:47 +01:00
```
##How to install:
Download the [archive][1].<br>
Unzip it to a convenient directory, thus get the following directory structure<br>
2013-06-10 06:36:45 +02:00
```
<PROJECT_ROOT> - Directory, for example, "C:\Delphi\OpenCV\"
2014-05-24 20:37:15 +02:00
<bin>
<redist>
2014-05-24 20:37:15 +02:00
<resource>
<samples>
<source>
2013-06-10 06:36:45 +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
```
<PROJECT_ROOT>\source
<PROJECT_ROOT>\source\utils
<PROJECT_ROOT>\source\component
<PROJECT_ROOT>\source\sdl
<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
To install the components, open and install
2014-05-24 20:39:55 +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
```
Open in Delphi IDE and compile:<br>
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
```
2014-05-24 20:37:15 +02:00
Examples of using FFMPEG library header files are in the
```
<PROJECT_ROOT>\samples\FFMpeg\FFMPEG.groupproj
```
Examples of use of components
```
<PROJECT_ROOT>\samples\Components\ComponentsDemo.groupproj
```
2015-01-24 14:47:05 +01:00
<br><a href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=5Z5JQ7C9JCJQN">Donate (PayPal USD)</a>
<br><a href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=WQYST8J8PR4K2">Donate (PayPal EUR)</a>
<br><a href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=XN8D6TJMSXPFL">Donate (PayPal RUB)</a>
2015-01-23 14:13:38 +01:00
<br>Yandex Money: 410012802258318
[1]: https://github.com/Laex/Delphi-OpenCV/archive/master.zip
[2]: http://www.microsoft.com/ru-ru/download/details.aspx?id=40784
[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/