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
ca9a3af7
Commit
ca9a3af7
authored
Oct 02, 2017
by
Alexander Alekhin
Committed by
GitHub
Oct 02, 2017
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #9756 from pranitbauva1997:doc-typo-faster
doc: fix typo in py_tutorials
parents
eca5906a
d3e3d099
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
5 additions
and
5 deletions
+5
-5
py_basic_ops.markdown
doc/py_tutorials/py_core/py_basic_ops/py_basic_ops.markdown
+1
-1
py_matcher.markdown
doc/py_tutorials/py_feature2d/py_matcher/py_matcher.markdown
+1
-1
py_surf_intro.markdown
...torials/py_feature2d/py_surf_intro/py_surf_intro.markdown
+2
-2
py_histogram_begins.markdown
...stograms/py_histogram_begins/py_histogram_begins.markdown
+1
-1
No files found.
doc/py_tutorials/py_core/py_basic_ops/py_basic_ops.markdown
View file @
ca9a3af7
...
...
@@ -130,7 +130,7 @@ Or
>>> b = img[:,:,0]
@endcode
Suppose, you want to make all the red pixels to zero, you need not split like this and put it equal
to zero. You can simply use Numpy indexing, and that is
more
faster.
to zero. You can simply use Numpy indexing, and that is faster.
@code{.py}
>>> img[:,:,2] = 0
@endcode
...
...
doc/py_tutorials/py_feature2d/py_matcher/py_matcher.markdown
View file @
ca9a3af7
...
...
@@ -140,7 +140,7 @@ FLANN based Matcher
FLANN stands for Fast Library for Approximate Nearest Neighbors. It contains a collection of
algorithms optimized for fast nearest neighbor search in large datasets and for high dimensional
features. It works
more
faster than BFMatcher for large datasets. We will see the second example
features. It works faster than BFMatcher for large datasets. We will see the second example
with FLANN based matcher.
For FLANN based matcher, we need to pass two dictionaries which specifies the algorithm to be used,
...
...
doc/py_tutorials/py_feature2d/py_surf_intro/py_surf_intro.markdown
View file @
ca9a3af7
...
...
@@ -34,7 +34,7 @@ applications, rotation invariance is not required, so no need of finding this or
speeds up the process. SURF provides such a functionality called Upright-SURF or U-SURF. It improves
speed and is robust upto
\f
$
\p
m 15^{
\c
irc}
\f
$. OpenCV supports both, depending upon the flag,
**upright**
. If it is 0, orientation is calculated. If it is 1, orientation is not calculated and it
is
more
faster.
is faster.

...
...
@@ -130,7 +130,7 @@ False
>>> plt.imshow(img2),plt.show()
@endcode
See the results below. All the orientations are shown in same direction. It is
more
faster than
See the results below. All the orientations are shown in same direction. It is faster than
previous. If you are working on cases where orientation is not a problem (like panorama stitching)
etc, this is better.
...
...
doc/py_tutorials/py_imgproc/py_histograms/py_histogram_begins/py_histogram_begins.markdown
View file @
ca9a3af7
...
...
@@ -99,7 +99,7 @@ as 0-0.99, 1-1.99, 2-2.99 etc. So final range would be 255-255.99. To represent
np.histogram(). So for one-dimensional histograms, you can better try that. Don't forget to set
minlength = 256 in np.bincount. For example, hist = np.bincount(img.ravel(),minlength=256)
@note OpenCV function is
more
faster than (around 40X) than np.histogram(). So stick with OpenCV
@note OpenCV function is faster than (around 40X) than np.histogram(). So stick with OpenCV
function.
Now we should plot histograms, but how?
...
...
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