Skip to content

Commit 073a338

Browse files
OpenCV 4.5.4 is out, remove the old workaround.
1 parent fb43242 commit 073a338

File tree

5 files changed

+5
-52
lines changed

5 files changed

+5
-52
lines changed

SonicVisualSplit/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,5 +32,5 @@
3232
// You can specify all the values or you can default the Build and Revision Numbers
3333
// by using the '*' as shown below:
3434
// [assembly: AssemblyVersion("1.0.*")]
35-
[assembly: AssemblyVersion("1.2.3")]
36-
[assembly: AssemblyFileVersion("1.2.3")]
35+
[assembly: AssemblyVersion("1.2.4")]
36+
[assembly: AssemblyFileVersion("1.2.4")]

SonicVisualSplitBase/SonicVisualSplitBase.vcxproj

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,6 @@
137137
<ClInclude Include="ObsWindowCapture.h" />
138138
<ClInclude Include="AnalysisSettings.h" />
139139
<ClInclude Include="TimeRecognizer.h" />
140-
<ClInclude Include="TrivialTypes.h" />
141140
<ClInclude Include="VirtualCamCapture.h" />
142141
<ClInclude Include="WindowCapture.h" />
143142
</ItemGroup>

SonicVisualSplitBase/SonicVisualSplitBase.vcxproj.filters

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -71,8 +71,5 @@
7171
<ClInclude Include="AnalysisSettings.h">
7272
<Filter>Header Files</Filter>
7373
</ClInclude>
74-
<ClInclude Include="TrivialTypes.h">
75-
<Filter>Header Files</Filter>
76-
</ClInclude>
7774
</ItemGroup>
7875
</Project>

SonicVisualSplitBase/TimeRecognizer.h

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@
1111
#include <memory>
1212
#include <atomic>
1313
#include <chrono>
14-
#include "TrivialTypes.h"
1514

1615

1716
namespace SonicVisualSplitBase {
@@ -45,14 +44,14 @@ class TimeRecognizer {
4544

4645
/* The rectangle where the time digits are located
4746
* after the frame has been scaled down to bestScale. */
48-
RectTrivial digitsRect;
47+
cv::Rect digitsRect;
4948

5049
/* The bounding rectangle of the "TIME" label
5150
* after the frame has been scaled down to bestScale. */
52-
RectTrivial timeRect;
51+
cv::Rect timeRect;
5352

5453
// The size of the frame for which the above properties hold true.
55-
SizeTrivial frameSize;
54+
cv::Size frameSize;
5655

5756
bool isValid() const;
5857
};

SonicVisualSplitBase/TrivialTypes.h

Lines changed: 0 additions & 42 deletions
This file was deleted.

0 commit comments

Comments
 (0)