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
ee180d5b
Commit
ee180d5b
authored
Mar 05, 2018
by
Alexander Alekhin
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #10980 from sturkmen72:update_doc
parents
667f5b65
5e1a656b
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
8 deletions
+8
-8
core.hpp
modules/core/include/opencv2/core.hpp
+8
-8
No files found.
modules/core/include/opencv2/core.hpp
View file @
ee180d5b
...
...
@@ -1063,19 +1063,19 @@ around both axes.
CV_EXPORTS_W
void
flip
(
InputArray
src
,
OutputArray
dst
,
int
flipCode
);
enum
RotateFlags
{
ROTATE_90_CLOCKWISE
=
0
,
//Rotate 90 degrees clockwise
ROTATE_180
=
1
,
//Rotate 180 degrees clockwise
ROTATE_90_COUNTERCLOCKWISE
=
2
,
//Rotate 270 degrees clockwise
ROTATE_90_CLOCKWISE
=
0
,
//
!<
Rotate 90 degrees clockwise
ROTATE_180
=
1
,
//
!<
Rotate 180 degrees clockwise
ROTATE_90_COUNTERCLOCKWISE
=
2
,
//
!<
Rotate 270 degrees clockwise
};
/** @brief Rotates a 2D array in multiples of 90 degrees.
The function rotate rotates the array in one of three different ways:
* Rotate by 90 degrees clockwise (rotateCode = ROTATE_90).
The function
cv::
rotate rotates the array in one of three different ways:
* Rotate by 90 degrees clockwise (rotateCode = ROTATE_90
_CLOCKWISE
).
* Rotate by 180 degrees clockwise (rotateCode = ROTATE_180).
* Rotate by 270 degrees clockwise (rotateCode = ROTATE_
270
).
* Rotate by 270 degrees clockwise (rotateCode = ROTATE_
90_COUNTERCLOCKWISE
).
@param src input array.
@param dst output array of the same type as src. The size is the same with ROTATE_180,
and the rows and cols are switched for ROTATE_90
and ROTATE_270
.
@param rotateCode an enum to specify how to rotate the array; see the enum RotateFlags
and the rows and cols are switched for ROTATE_90
_CLOCKWISE and ROTATE_90_COUNTERCLOCKWISE
.
@param rotateCode an enum to specify how to rotate the array; see the enum
#
RotateFlags
@sa transpose , repeat , completeSymm, flip, RotateFlags
*/
CV_EXPORTS_W
void
rotate
(
InputArray
src
,
OutputArray
dst
,
int
rotateCode
);
...
...
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