Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
O
opencv_contrib
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_contrib
Commits
8e308ab6
Commit
8e308ab6
authored
Mar 24, 2018
by
Alexander Alekhin
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #1590 from paroj:ovisup
parents
c3070557
bae6838b
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
3 deletions
+11
-3
ovis.cpp
modules/ovis/src/ovis.cpp
+11
-3
No files found.
modules/ovis/src/ovis.cpp
View file @
8e308ab6
...
...
@@ -102,11 +102,19 @@ static void _setCameraIntrinsics(Camera* cam, InputArray _K, const Size& imsize)
Matx33f
K
=
_K
.
getMat
();
float
near
=
cam
->
getNearClipDistance
();
float
top
=
near
*
K
(
1
,
2
)
/
K
(
1
,
1
);
float
left
=
-
near
*
K
(
0
,
2
)
/
K
(
0
,
0
);
float
right
=
near
*
(
imsize
.
width
-
K
(
0
,
2
))
/
K
(
0
,
0
);
float
bottom
=
-
near
*
(
imsize
.
height
-
K
(
1
,
2
))
/
K
(
1
,
1
);
// use frustum extents instead of setFrustumOffset as the latter
// assumes centered FOV, which is not the case
cam
->
setFrustumExtents
(
left
,
right
,
top
,
bottom
);
// top and bottom parts of the FOV
float
fovy
=
atan2
(
K
(
1
,
2
),
K
(
1
,
1
))
+
atan2
(
imsize
.
height
-
K
(
1
,
2
),
K
(
1
,
1
));
cam
->
setFOVy
(
Radian
(
fovy
));
Vec2f
pp_offset
=
Vec2f
(
0.5
,
0.5
)
-
Vec2f
(
K
(
0
,
2
)
/
imsize
.
width
,
K
(
1
,
2
)
/
imsize
.
height
);
cam
->
setFrustumOffset
(
toOGRE_SS
*
Vector2
(
pp_offset
.
val
));
}
static
SceneNode
&
_getSceneNode
(
SceneManager
*
sceneMgr
,
const
String
&
name
)
...
...
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