Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
O
opencv
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
opencv
Commits
7ec2b6ba
Commit
7ec2b6ba
authored
Mar 21, 2013
by
Alexander Smorkalov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Highgui tests for GUI disabled for WinRT;
Warnings fix;
parent
429cd85b
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
test_gui.cpp
modules/highgui/test/test_gui.cpp
+1
-1
warpers.hpp
...es/stitching/include/opencv2/stitching/detail/warpers.hpp
+3
-3
No files found.
modules/highgui/test/test_gui.cpp
View file @
7ec2b6ba
...
...
@@ -43,7 +43,7 @@
#include "test_precomp.hpp"
#include "opencv2/highgui/highgui.hpp"
#if defined HAVE_GTK
|| defined HAVE_QT || defined WIN32 || defined _WIN32
|| defined HAVE_CARBON || defined HAVE_COCOA
#if defined HAVE_GTK
|| defined HAVE_QT || ((defined WIN32 || defined _WIN32) && !_M_ARM)
|| defined HAVE_CARBON || defined HAVE_COCOA
using
namespace
cv
;
using
namespace
std
;
...
...
modules/stitching/include/opencv2/stitching/detail/warpers.hpp
View file @
7ec2b6ba
...
...
@@ -460,7 +460,7 @@ struct SphericalPortraitProjector : ProjectorBase
// Projects image onto unit sphere with origin at (0, 0, 0).
// Poles are located NOT at (0, -1, 0) and (0, 1, 0) points, BUT at (1, 0, 0) and (-1, 0, 0) points.
class
SphericalPortraitWarper
:
public
RotationWarperBase
<
SphericalPortraitProjector
>
class
CV_EXPORTS
SphericalPortraitWarper
:
public
RotationWarperBase
<
SphericalPortraitProjector
>
{
public
:
SphericalPortraitWarper
(
float
scale
)
{
projector_
.
scale
=
scale
;
}
...
...
@@ -476,7 +476,7 @@ struct CylindricalPortraitProjector : ProjectorBase
};
class
CylindricalPortraitWarper
:
public
RotationWarperBase
<
CylindricalPortraitProjector
>
class
C
V_EXPORTS
C
ylindricalPortraitWarper
:
public
RotationWarperBase
<
CylindricalPortraitProjector
>
{
public
:
CylindricalPortraitWarper
(
float
scale
)
{
projector_
.
scale
=
scale
;
}
...
...
@@ -495,7 +495,7 @@ struct PlanePortraitProjector : ProjectorBase
};
class
PlanePortraitWarper
:
public
RotationWarperBase
<
PlanePortraitProjector
>
class
CV_EXPORTS
PlanePortraitWarper
:
public
RotationWarperBase
<
PlanePortraitProjector
>
{
public
:
PlanePortraitWarper
(
float
scale
)
{
projector_
.
scale
=
scale
;
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment