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
98e2bb87
Commit
98e2bb87
authored
Mar 11, 2019
by
Alexander Alekhin
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #14022 from alalek:core_fix_neon_intrinsics
parents
7a2dca59
842c58a7
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
+4
-2
intrin_neon.hpp
modules/core/include/opencv2/core/hal/intrin_neon.hpp
+4
-2
No files found.
modules/core/include/opencv2/core/hal/intrin_neon.hpp
View file @
98e2bb87
...
...
@@ -1202,14 +1202,16 @@ OPENCV_HAL_IMPL_NEON_EXPAND(v_int32x4, v_int64x2, int, s32)
inline
v_uint32x4
v_load_expand_q
(
const
uchar
*
ptr
)
{
uint8x8_t
v0
=
vcreate_u8
(
*
(
unsigned
*
)
ptr
);
typedef
unsigned
int
CV_DECL_ALIGNED
(
1
)
unaligned_uint
;
uint8x8_t
v0
=
vcreate_u8
(
*
(
unaligned_uint
*
)
ptr
);
uint16x4_t
v1
=
vget_low_u16
(
vmovl_u8
(
v0
));
return
v_uint32x4
(
vmovl_u16
(
v1
));
}
inline
v_int32x4
v_load_expand_q
(
const
schar
*
ptr
)
{
int8x8_t
v0
=
vcreate_s8
(
*
(
unsigned
*
)
ptr
);
typedef
unsigned
int
CV_DECL_ALIGNED
(
1
)
unaligned_uint
;
int8x8_t
v0
=
vcreate_s8
(
*
(
unaligned_uint
*
)
ptr
);
int16x4_t
v1
=
vget_low_s16
(
vmovl_s8
(
v0
));
return
v_int32x4
(
vmovl_s16
(
v1
));
}
...
...
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