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
7b28f730
Commit
7b28f730
authored
Jan 07, 2014
by
Anatoly Baksheev
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
traits for Affine3
parent
cd57c4e1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
17 additions
and
1 deletion
+17
-1
affine.hpp
modules/core/include/opencv2/core/affine.hpp
+17
-1
No files found.
modules/core/include/opencv2/core/affine.hpp
View file @
7b28f730
...
...
@@ -134,8 +134,24 @@ namespace cv
static
cv
::
Vec3f
operator
*
(
const
cv
::
Affine3f
&
affine
,
const
cv
::
Vec3f
&
vector
);
static
cv
::
Vec3d
operator
*
(
const
cv
::
Affine3d
&
affine
,
const
cv
::
Vec3d
&
vector
);
}
template
<
typename
_Tp
>
class
DataType
<
Affine3
<
_Tp
>
>
{
public
:
typedef
Affine3
<
_Tp
>
value_type
;
typedef
Affine3
<
typename
DataType
<
_Tp
>::
work_type
>
work_type
;
typedef
_Tp
channel_type
;
enum
{
generic_type
=
0
,
depth
=
DataType
<
channel_type
>::
depth
,
channels
=
16
,
fmt
=
DataType
<
channel_type
>::
fmt
+
((
channels
-
1
)
<<
8
),
type
=
CV_MAKETYPE
(
depth
,
channels
)
};
typedef
Vec
<
channel_type
,
channels
>
vec_type
;
};
}
///////////////////////////////////////////////////////////////////////////////////
...
...
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