2017-09-21 20:03:28 +02:00
|
|
|
# Delphi-OpenCV
|
2018-09-14 17:50:03 +02:00
|
|
|
* OpenCV version - 2.4.13<br>
|
2019-09-17 07:39:54 +02:00
|
|
|
* Development environment - Delphi 2010-10.3, FPC 3.0.4<br>
|
2014-11-26 05:38:15 +01:00
|
|
|
|
2014-11-27 22:11:47 +01:00
|
|
|
<b>Contributors:</b>
|
2017-09-21 20:03:28 +02:00
|
|
|
|
|
|
|
Laentir Valetov (email: laex@bk.ru)<br>
|
2014-05-11 02:42:34 +02:00
|
|
|
Mikhail Grigorev (email: sleuthhound@gmail.com)
|
2017-09-21 20:03:28 +02:00
|
|
|
|
|
|
|
## Requirements:
|
2017-05-26 08:43:48 +02:00
|
|
|
* Visual C++ Redistributable for Visual Studio 2015<br>
|
2018-04-27 19:30:03 +02:00
|
|
|
Files: msvcp140.dll, msvcp140d.dll in "Delphi-OpenCV\redist\" or [here][2]<br>
|
|
|
|
or from the repository:
|
2015-03-17 21:00:18 +01:00
|
|
|
```
|
2017-09-21 20:03:28 +02:00
|
|
|
(1) 32-bit in the "Delphi-OpenCV\redist\VC14\x86\"
|
|
|
|
(2) 64-bit in the "Delphi-OpenCV\redist\VC14\x64\"
|
2015-03-17 21:00:18 +01:00
|
|
|
```
|
2019-09-16 19:46:20 +02:00
|
|
|
* Shared library FFMPEG 4.2 for Windows can be downloaded from [here][5]<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>
|
2017-05-26 08:43:48 +02:00
|
|
|
Files: *2413.dll and *2413d.dll
|
2015-03-17 21:00:18 +01:00
|
|
|
```
|
2015-08-23 13:20:53 +02:00
|
|
|
After installing OpenCV:
|
2017-05-26 08:43:48 +02:00
|
|
|
(5) 32-bit in the C:\OpenCV\build\x86\vc14\bin\*.dll
|
|
|
|
(6) 64-bit in the C:\OpenCV\build\x64\vc14\bin\*.dll
|
2015-03-17 21:00:18 +01:00
|
|
|
```
|
2014-11-25 02:41:51 +01:00
|
|
|
* Some examples (FFMPEG) required [SDL 2.0 and SDL 1.2][3]<br>
|
2014-11-27 22:11:47 +01:00
|
|
|
```
|
2018-09-14 17:50:03 +02:00
|
|
|
(7) 32-bit - SDL.dll and SDL2.dll
|
|
|
|
(8) 64-bit - SDL.dll and SDL2.dll
|
2015-03-17 21:00:18 +01:00
|
|
|
```
|
2014-11-27 22:11:47 +01:00
|
|
|
|
2017-09-21 20:03:28 +02:00
|
|
|
#### Copy files
|
2015-03-17 21:00:18 +01:00
|
|
|
<b>OS Windows 64-bit</b><br>
|
|
|
|
```
|
2018-09-14 17:50:03 +02:00
|
|
|
Target platform 64-bit: (2),(4),(6),(8) -> "C:\Windows\System32\"
|
2015-03-17 21:00:18 +01:00
|
|
|
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
|
|
|
```
|
|
|
|
|
2017-09-21 20:03:28 +02:00
|
|
|
## How to install:
|
2014-11-27 22:11:47 +01:00
|
|
|
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
|
2017-09-21 20:03:28 +02:00
|
|
|
<PROJECT_ROOT>\source\classes
|
2014-05-20 06:02:43 +02:00
|
|
|
<PROJECT_ROOT>\source\component
|
2019-09-17 07:39:54 +02:00
|
|
|
<PROJECT_ROOT>\source\Delphi-FFMPEG\source
|
2017-09-21 20:03:28 +02:00
|
|
|
<PROJECT_ROOT>\source\opengl
|
|
|
|
<PROJECT_ROOT>\source\sdl
|
|
|
|
<PROJECT_ROOT>\source\sdl2
|
|
|
|
<PROJECT_ROOT>\source\utils
|
2014-05-24 20:37:15 +02:00
|
|
|
<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\dclCommonOpenCVXXX.dpk
|
2017-09-21 20:03:28 +02:00
|
|
|
<PROJECT_ROOT>\source\component\DelphiXX\dclFFMSourceXXX.dpk
|
2014-09-30 08:19:43 +02:00
|
|
|
<PROJECT_ROOT>\source\component\DelphiXX\dclFMXOpenCVXXX.dpk
|
2017-09-21 20:03:28 +02:00
|
|
|
<PROJECT_ROOT>\source\component\DelphiXX\dclVCLOpenCVXXX.dpk
|
2014-05-24 20:39:55 +02:00
|
|
|
```
|
2018-04-27 19:30:03 +02:00
|
|
|
## Verify that the environment is configured correctly
|
|
|
|
Run from the repository
|
|
|
|
```
|
|
|
|
Delphi-OpenCV/CheckCVDep/CheckCVDep.exe
|
|
|
|
```
|
|
|
|
The program checks the availability of dynamic libraries
|
|
|
|
```
|
|
|
|
------- Verifying Microsoft DLL -------
|
|
|
|
OK
|
|
|
|
------- OpenCV DLL -------
|
|
|
|
OK
|
|
|
|
------- Delphi-OpenCV classes DLL -------
|
|
|
|
OK
|
|
|
|
------- FFMPEG DLL -------
|
|
|
|
OK
|
|
|
|
------- SDL DLL -------
|
|
|
|
OK
|
|
|
|
```
|
|
|
|
To successfully install components and run most of the examples, the availability of FFMPEG DLL, Microsoft DLL and OpenCV DLL is sufficient
|
2017-09-21 20:03:28 +02:00
|
|
|
## Examples
|
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
|
|
|
|
```
|
2017-09-30 01:13:05 +02:00
|
|
|
<PROJECT_ROOT>\source\ffmpeg\examples
|
2014-05-24 20:37:15 +02:00
|
|
|
```
|
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
|
|
|
```
|
2017-09-21 20:03:28 +02:00
|
|
|
<b>Donate</b><br>
|
|
|
|
<a href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=5Z5JQ7C9JCJQN">PayPal USD</a><br>
|
|
|
|
<a href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=WQYST8J8PR4K2">PayPal EUR</a><br>
|
|
|
|
<a href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=XN8D6TJMSXPFL">PayPal RUB</a><br>
|
|
|
|
<a href="https://money.yandex.ru/to/410011600173245">Yandex Money</a>
|
|
|
|
|
2015-01-23 14:13:38 +01:00
|
|
|
|
2014-05-11 02:42:34 +02:00
|
|
|
[1]: https://github.com/Laex/Delphi-OpenCV/archive/master.zip
|
2017-05-26 08:43:48 +02:00
|
|
|
[2]: https://www.microsoft.com/en-us/download/details.aspx?id=48145
|
2014-11-25 02:41:51 +01:00
|
|
|
[3]: https://www.libsdl.org/index.php
|
2019-09-17 07:39:54 +02:00
|
|
|
[4]: https://github.com/opencv/opencv/releases/tag/2.4.13.6
|
|
|
|
[5]: http://ffmpeg.zeranoe.com/builds/
|