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
60f2f789
Commit
60f2f789
authored
Dec 29, 2014
by
Ilya Lavrenov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
SSE4.1 addWeighted fo 16u
parent
f6b3bc01
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
46 additions
and
0 deletions
+46
-0
arithm.cpp
modules/core/src/arithm.cpp
+46
-0
No files found.
modules/core/src/arithm.cpp
View file @
60f2f789
...
...
@@ -2863,6 +2863,52 @@ struct AddWeighted_SIMD<short, float>
bool
haveSSE2
;
};
#if CV_SSE4_1
template
<>
struct
AddWeighted_SIMD
<
ushort
,
float
>
{
AddWeighted_SIMD
()
{
haveSSE4_1
=
checkHardwareSupport
(
CV_CPU_SSE4_1
);
}
int
operator
()
(
const
ushort
*
src1
,
const
ushort
*
src2
,
ushort
*
dst
,
int
width
,
float
alpha
,
float
beta
,
float
gamma
)
const
{
int
x
=
0
;
if
(
!
haveSSE4_1
)
return
x
;
__m128i
v_zero
=
_mm_setzero_si128
();
__m128
v_alpha
=
_mm_set1_ps
(
alpha
),
v_beta
=
_mm_set1_ps
(
beta
),
v_gamma
=
_mm_set1_ps
(
gamma
);
for
(
;
x
<=
width
-
8
;
x
+=
8
)
{
__m128i
v_src1
=
_mm_loadu_si128
((
const
__m128i
*
)(
src1
+
x
));
__m128i
v_src2
=
_mm_loadu_si128
((
const
__m128i
*
)(
src2
+
x
));
__m128
v_dstf0
=
_mm_mul_ps
(
_mm_cvtepi32_ps
(
_mm_unpacklo_epi16
(
v_src1
,
v_zero
)),
v_alpha
);
v_dstf0
=
_mm_add_ps
(
_mm_add_ps
(
v_dstf0
,
v_gamma
),
_mm_mul_ps
(
_mm_cvtepi32_ps
(
_mm_unpacklo_epi16
(
v_src2
,
v_zero
)),
v_beta
));
__m128
v_dstf1
=
_mm_mul_ps
(
_mm_cvtepi32_ps
(
_mm_unpackhi_epi16
(
v_src1
,
v_zero
)),
v_alpha
);
v_dstf1
=
_mm_add_ps
(
_mm_add_ps
(
v_dstf1
,
v_gamma
),
_mm_mul_ps
(
_mm_cvtepi32_ps
(
_mm_unpackhi_epi16
(
v_src2
,
v_zero
)),
v_beta
));
_mm_storeu_si128
((
__m128i
*
)(
dst
+
x
),
_mm_packus_epi32
(
_mm_cvtps_epi32
(
v_dstf0
),
_mm_cvtps_epi32
(
v_dstf1
)));
}
return
x
;
}
bool
haveSSE4_1
;
};
#endif
#elif CV_NEON
template
<>
...
...
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