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
beef60ba
Commit
beef60ba
authored
May 15, 2018
by
Alexander Alekhin
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #1642 from fegorsch:rename-near-to-znear
parents
1b588570
78392f78
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
ovis.cpp
modules/ovis/src/ovis.cpp
+5
-5
No files found.
modules/ovis/src/ovis.cpp
View file @
beef60ba
...
...
@@ -97,11 +97,11 @@ static void _setCameraIntrinsics(Camera* cam, InputArray _K, const Size& imsize)
Matx33f
K
=
_K
.
getMat
();
float
n
ear
=
cam
->
getNearClipDistance
();
float
top
=
n
ear
*
K
(
1
,
2
)
/
K
(
1
,
1
);
float
left
=
-
n
ear
*
K
(
0
,
2
)
/
K
(
0
,
0
);
float
right
=
n
ear
*
(
imsize
.
width
-
K
(
0
,
2
))
/
K
(
0
,
0
);
float
bottom
=
-
n
ear
*
(
imsize
.
height
-
K
(
1
,
2
))
/
K
(
1
,
1
);
float
zN
ear
=
cam
->
getNearClipDistance
();
float
top
=
zN
ear
*
K
(
1
,
2
)
/
K
(
1
,
1
);
float
left
=
-
zN
ear
*
K
(
0
,
2
)
/
K
(
0
,
0
);
float
right
=
zN
ear
*
(
imsize
.
width
-
K
(
0
,
2
))
/
K
(
0
,
0
);
float
bottom
=
-
zN
ear
*
(
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
...
...
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