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
07e07655
Commit
07e07655
authored
Apr 28, 2015
by
Vadim Pisarevsky
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #3967 from Belev:fix-typo
parents
e60dcc9b
2200e0fb
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
5 additions
and
5 deletions
+5
-5
adding_images.markdown
doc/tutorials/core/adding_images/adding_images.markdown
+1
-1
basic_geometric_drawing.markdown
.../basic_geometric_drawing/basic_geometric_drawing.markdown
+1
-1
random_generator_and_text.markdown
...dom_generator_and_text/random_generator_and_text.markdown
+2
-2
imgproc.hpp
modules/imgproc/include/opencv2/imgproc.hpp
+1
-1
No files found.
doc/tutorials/core/adding_images/adding_images.markdown
View file @
07e07655
...
@@ -22,7 +22,7 @@ From our previous tutorial, we know already a bit of *Pixel operators*. An inter
...
@@ -22,7 +22,7 @@ From our previous tutorial, we know already a bit of *Pixel operators*. An inter
\f
[
g(x) = (1 - \alpha)f_{0}(x) + \alpha f_{1}(x)\f
]
\f
[
g(x) = (1 - \alpha)f_{0}(x) + \alpha f_{1}(x)\f
]
By varying
\f
$
\a
lpha
\f
$ from
\f
$0
\r
ightarrow 1
\f
$ this operator can be used to perform a temporal
By varying
\f
$
\a
lpha
\f
$ from
\f
$0
\r
ightarrow 1
\f
$ this operator can be used to perform a temporal
*cross-disolve*
between two images or videos, as seen in slide shows and film productions (cool,
*cross-dis
s
olve*
between two images or videos, as seen in slide shows and film productions (cool,
eh?)
eh?)
Code
Code
...
...
doc/tutorials/core/basic_geometric_drawing/basic_geometric_drawing.markdown
View file @
07e07655
...
@@ -145,7 +145,7 @@ Explanation
...
@@ -145,7 +145,7 @@ Explanation
of size **(w/4.0, w/16.0)**
of size **(w/4.0, w/16.0)**
- The ellipse is rotated **angle** degrees
- The ellipse is rotated **angle** degrees
- The ellipse extends an arc between **0** and **360** degrees
- The ellipse extends an arc between **0** and **360** degrees
- The color of the figure will be **Scalar( 255,
255
, 0)** which means blue in RGB value.
- The color of the figure will be **Scalar( 255,
0
, 0)** which means blue in RGB value.
- The ellipse's **thickness** is 2.
- The ellipse's **thickness** is 2.
- *MyFilledCircle*
- *MyFilledCircle*
@code{.cpp}
@code{.cpp}
...
...
doc/tutorials/core/random_generator_and_text/random_generator_and_text.markdown
View file @
07e07655
...
@@ -111,7 +111,7 @@ Explanation
...
@@ -111,7 +111,7 @@ Explanation
pt1.y = rng.uniform( y_1, y_2 );
pt1.y = rng.uniform( y_1, y_2 );
@endcode
@endcode
- We know that **rng** is a *Random number generator* object. In the code above we are
- We know that **rng** is a *Random number generator* object. In the code above we are
calling **rng.uniform(a,b)**. This generates a ra
domb
ly uniformed distribution between
calling **rng.uniform(a,b)**. This generates a ra
ndom
ly uniformed distribution between
the values **a** and **b** (inclusive in **a**, exclusive in **b**).
the values **a** and **b** (inclusive in **a**, exclusive in **b**).
- From the explanation above, we deduce that the extremes *pt1* and *pt2* will be random
- From the explanation above, we deduce that the extremes *pt1* and *pt2* will be random
values, so the lines positions will be quite impredictable, giving a nice visual effect
values, so the lines positions will be quite impredictable, giving a nice visual effect
...
@@ -133,7 +133,7 @@ Explanation
...
@@ -133,7 +133,7 @@ Explanation
are used as the *R*, *G* and *B* parameters for the line color. Hence, the color of the
are used as the *R*, *G* and *B* parameters for the line color. Hence, the color of the
lines will be random too!
lines will be random too!
-# The explanation above applies for the other functions generating circles, ellipses, polygon
e
s,
-# The explanation above applies for the other functions generating circles, ellipses, polygons,
etc. The parameters such as
*center*
and
*vertices*
are also generated randomly.
etc. The parameters such as
*center*
and
*vertices*
are also generated randomly.
-# Before finishing, we also should take a look at the functions
*Display_Random_Text*
and
-# Before finishing, we also should take a look at the functions
*Display_Random_Text*
and
*Displaying_Big_End*
, since they both have a few interesting features:
*Displaying_Big_End*
, since they both have a few interesting features:
...
...
modules/imgproc/include/opencv2/imgproc.hpp
View file @
07e07655
...
@@ -3494,7 +3494,7 @@ CV_EXPORTS_W double contourArea( InputArray contour, bool oriented = false );
...
@@ -3494,7 +3494,7 @@ CV_EXPORTS_W double contourArea( InputArray contour, bool oriented = false );
The function calculates and returns the minimum-area bounding rectangle (possibly rotated) for a
The function calculates and returns the minimum-area bounding rectangle (possibly rotated) for a
specified point set. See the OpenCV sample minarea.cpp . Developer should keep in mind that the
specified point set. See the OpenCV sample minarea.cpp . Developer should keep in mind that the
returned rotatedRect can contain negative indices when data is close t
he
the containing Mat element
returned rotatedRect can contain negative indices when data is close t
o
the containing Mat element
boundary.
boundary.
@param points Input vector of 2D points, stored in std::vector\<\> or Mat
@param points Input vector of 2D points, stored in std::vector\<\> or Mat
...
...
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