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
a96c5b5d
Commit
a96c5b5d
authored
Oct 11, 2017
by
Ryan Fox
Committed by
GitHub
Oct 11, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix some grammatical errors
parent
af8ed9d0
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
py_depthmap.markdown
doc/py_tutorials/py_calib3d/py_depthmap/py_depthmap.markdown
+6
-6
No files found.
doc/py_tutorials/py_calib3d/py_depthmap/py_depthmap.markdown
View file @
a96c5b5d
...
...
@@ -5,14 +5,14 @@ Goal
----
In this session,
-
We will learn to create depth map from stereo images.
-
We will learn to create
a
depth map from stereo images.
Basics
------
In last session, we saw basic concepts like epipolar constraints and other related terms. We also
In
the
last session, we saw basic concepts like epipolar constraints and other related terms. We also
saw that if we have two images of same scene, we can get depth information from that in an intuitive
way. Below is an image and some simple mathematical formulas which prove
s
that intuition. (Image
way. Below is an image and some simple mathematical formulas which prove that intuition. (Image
Courtesy :

...
...
@@ -24,7 +24,7 @@ following result:
\f
$x
\f
$ and
\f
$x'
\f
$ are the distance between points in image plane corresponding to the scene point 3D and
their camera center.
\f
$B
\f
$ is the distance between two cameras (which we know) and
\f
$f
\f
$ is the focal
length of camera (already known). So in short, above equation says that the depth of a point in a
length of camera (already known). So in short,
the
above equation says that the depth of a point in a
scene is inversely proportional to the difference in distance of corresponding image points and
their camera centers. So with this information, we can derive the depth of all pixels in an image.
...
...
@@ -35,7 +35,7 @@ how we can do it with OpenCV.
Code
----
Below code snippet shows a simple procedure to create disparity map.
Below code snippet shows a simple procedure to create
a
disparity map.
@code{.py}
import numpy as np
import cv2
...
...
@@ -49,7 +49,7 @@ disparity = stereo.compute(imgL,imgR)
plt.imshow(disparity,'gray')
plt.show()
@endcode
Below image contains the original image (left) and its disparity map (right). As you can see, result
Below image contains the original image (left) and its disparity map (right). As you can see,
the
result
is contaminated with high degree of noise. By adjusting the values of numDisparities and blockSize,
you can get a better result.
...
...
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