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
7e952e2f
Commit
7e952e2f
authored
Dec 31, 2013
by
Anatoly Baksheev
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
removed incorrect and unnecessarily methods from Affine3f
parent
bf30c33e
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
21 deletions
+0
-21
affine.hpp
modules/core/include/opencv2/core/affine.hpp
+0
-21
No files found.
modules/core/include/opencv2/core/affine.hpp
View file @
7e952e2f
...
...
@@ -73,9 +73,6 @@ namespace cv
//Combines all contructors above. Supports 4x4, 3x3, 1x3, 3x1 sizes of data matrix
explicit
Affine3
(
const
cv
::
Mat
&
data
,
const
Vec3
&
t
=
Vec3
::
all
(
0
));
//Euler angles
Affine3
(
float_type
alpha
,
float_type
beta
,
float_type
gamma
,
const
Vec3
&
t
=
Vec3
::
all
(
0
));
static
Affine3
Identity
();
//Rotation matrix
...
...
@@ -87,9 +84,6 @@ namespace cv
//Combines rotation methods above. Suports 3x3, 1x3, 3x1 sizes of data matrix;
void
rotation
(
const
Mat
&
data
);
//Euler angles
void
rotation
(
float_type
alpha
,
float_type
beta
,
float_type
gamma
);
void
linear
(
const
Mat3
&
L
);
void
translation
(
const
Vec3
&
t
);
...
...
@@ -186,15 +180,6 @@ cv::Affine3<T>::Affine3(const cv::Mat& data, const Vec3& t)
matrix
.
val
[
15
]
=
1
;
}
template
<
typename
T
>
inline
cv
::
Affine3
<
T
>::
Affine3
(
float_type
alpha
,
float_type
beta
,
float_type
gamma
,
const
Vec3
&
t
)
{
rotation
(
alpha
,
beta
,
gamma
);
translation
(
t
);
matrix
.
val
[
12
]
=
matrix
.
val
[
13
]
=
matrix
.
val
[
14
]
=
0
;
matrix
.
val
[
15
]
=
1
;
}
template
<
typename
T
>
inline
cv
::
Affine3
<
T
>
cv
::
Affine3
<
T
>::
Identity
()
{
...
...
@@ -261,12 +246,6 @@ void cv::Affine3<T>::rotation(const cv::Mat& data)
CV_Assert
(
!
"Input marix can be 3x3, 1x3 or 3x1"
);
}
template
<
typename
T
>
inline
void
cv
::
Affine3
<
T
>::
rotation
(
float_type
alpha
,
float_type
beta
,
float_type
gamma
)
{
rotation
(
Vec3
(
alpha
,
beta
,
gamma
));
}
template
<
typename
T
>
inline
void
cv
::
Affine3
<
T
>::
linear
(
const
Mat3
&
L
)
{
...
...
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