Commit 5f74b34 1 parent d4d8050 commit 5f74b34 Copy full SHA for 5f74b34
File tree 6 files changed +14
-8
lines changed
6 files changed +14
-8
lines changed Original file line number Diff line number Diff line change @@ -36,7 +36,6 @@ interface
36
36
System.SyncObjs,
37
37
VCL.Controls,
38
38
VCL.Graphics,
39
- VCL.Themes,
40
39
VCL.Direct2D,
41
40
D2D1,
42
41
cpp.utils,
@@ -472,7 +471,7 @@ implementation
472
471
473
472
uses
474
473
System.UITypes,
475
- WinApi.DxgiFormat,
474
+
476
475
cv.utils;
477
476
478
477
var
Original file line number Diff line number Diff line change @@ -39,6 +39,10 @@ requires
39
39
contains
40
40
CVClass in '..\CVClass.pas',
41
41
CVProp in '..\CVProp.pas',
42
- CVRegVCL in '..\CVRegVCL.pas';
42
+ CVRegVCL in '..\CVRegVCL.pas',
43
+ cpp.utils in '..\..\source\cpp.utils.pas',
44
+ cv.external in '..\..\source\cv.external.pas',
45
+ cv.opencv in '..\..\source\cv.opencv.pas',
46
+ cv.utils in '..\..\source\cv.utils.pas';
43
47
44
48
end.
Original file line number Diff line number Diff line change 84
84
<DCC_UnitSearchPath>..\..\source\;$(DCC_UnitSearchPath)</DCC_UnitSearchPath>
85
85
<DCC_Define>PACKAGE;$(DCC_Define)</DCC_Define>
86
86
<DCC_OutputXMLDocumentation>true</DCC_OutputXMLDocumentation>
87
+ <DCC_NO_RETVAL>false</DCC_NO_RETVAL>
87
88
</PropertyGroup>
88
89
<PropertyGroup Condition="'$(Base_Android)'!=''">
89
90
<VerInfo_Keys>package=com.embarcadero.$(MSBuildProjectName);label=$(MSBuildProjectName);versionCode=1;versionName=1.0.0;persistent=False;restoreAnyVersion=False;installLocation=auto;largeHeap=False;theme=TitleBar;hardwareAccelerated=true;apiKey=</VerInfo_Keys>
145
146
<DCCReference Include="..\CVClass.pas"/>
146
147
<DCCReference Include="..\CVProp.pas"/>
147
148
<DCCReference Include="..\CVRegVCL.pas"/>
149
+ <DCCReference Include="..\..\source\cpp.utils.pas"/>
150
+ <DCCReference Include="..\..\source\cv.external.pas"/>
151
+ <DCCReference Include="..\..\source\cv.opencv.pas"/>
152
+ <DCCReference Include="..\..\source\cv.utils.pas"/>
148
153
<RcItem Include="..\resource\DCV32x32.bmp">
149
154
<ResourceType>BITMAP</ResourceType>
150
155
<ResourceId>DOCVSPLASH</ResourceId>
Original file line number Diff line number Diff line change 1
1
<?xml version =" 1.0" encoding =" utf-8" ?>
2
2
<namespace name =" .dclCVClass" platform =" Win32" >
3
- <contains name =" cv.external" />
4
3
<contains name =" cv.utils" />
5
- <contains name =" cpp.utils" />
6
4
<contains name =" cv.opencv" />
5
+ <contains name =" cv.external" />
6
+ <contains name =" cpp.utils" />
7
7
<contains name =" CVRegVCL" />
8
8
<contains name =" CVProp" />
9
9
<contains name =" CVClass" />
Original file line number Diff line number Diff line change @@ -27,8 +27,6 @@ function depthToString(depth: int): pCVChar;
27
27
begin
28
28
{ $IF not defined(PACKAGE)}
29
29
Result := func_depthToString(depth);
30
- // {$ELSE}
31
- // Result := nil;
32
30
{ $IFEND}
33
31
end ;
34
32
Original file line number Diff line number Diff line change @@ -2859,7 +2859,7 @@ function morphologyDefaultBorderValue(): TScalar; {$IFDEF USE_INLINE}inline; {$E
2859
2859
function getAffineTransform (const src,dst:TArray<TPoint2f>):TMat; overload; { $IFDEF USE_INLINE} inline; { $ENDIF}
2860
2860
Type
2861
2861
TAffineTransformPoints = array [0 ..2 ] of TPoint2f;
2862
- pPoint2f = TPoint2f;
2862
+ pPoint2f = ^ TPoint2f;
2863
2863
function getAffineTransform (const src,dst:TAffineTransformPoints):TMat; overload; { $IFDEF USE_INLINE} inline; { $ENDIF}
2864
2864
function getAffineTransform (const src,dst:pPoint2f):TMat; overload; { $IFDEF USE_INLINE} inline; { $ENDIF}
2865
2865
You can’t perform that action at this time.
0 commit comments