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
14671e0c
Commit
14671e0c
authored
Jun 11, 2014
by
Alexander Alekhin
Committed by
OpenCV Buildbot
Jun 11, 2014
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #2823 from ilya-lavrenov:tapi_warpaffine
parents
88ceee05
2cc4cf36
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
73 additions
and
46 deletions
+73
-46
imgwarp.cpp
modules/imgproc/src/imgwarp.cpp
+11
-10
warp_affine.cl
modules/imgproc/src/opencl/warp_affine.cl
+62
-36
No files found.
modules/imgproc/src/imgwarp.cpp
View file @
14671e0c
...
...
@@ -4167,11 +4167,12 @@ static bool ocl_warpTransform(InputArray _src, OutputArray _dst, InputArray _M0,
int
op_type
)
{
CV_Assert
(
op_type
==
OCL_OP_AFFINE
||
op_type
==
OCL_OP_PERSPECTIVE
);
const
ocl
::
Device
&
dev
=
ocl
::
Device
::
getDefault
();
int
type
=
_src
.
type
(),
depth
=
CV_MAT_DEPTH
(
type
),
cn
=
CV_MAT_CN
(
type
);
double
doubleSupport
=
ocl
::
Device
::
getDefault
()
.
doubleFPConfig
()
>
0
;
double
doubleSupport
=
dev
.
doubleFPConfig
()
>
0
;
int
interpolation
=
flags
&
INTER_MAX
;
int
interpolation
=
flags
&
INTER_MAX
,
rowsPerWI
=
dev
.
isIntel
()
&&
interpolation
<=
INTER_LINEAR
?
4
:
1
;
if
(
interpolation
==
INTER_AREA
)
interpolation
=
INTER_LINEAR
;
...
...
@@ -4193,30 +4194,30 @@ static bool ocl_warpTransform(InputArray _src, OutputArray _dst, InputArray _M0,
String
opts
;
if
(
interpolation
==
INTER_NEAREST
)
{
opts
=
format
(
"-D INTER_NEAREST -D T=%s%s -D T1=%s -D ST=%s -D cn=%d
"
,
ocl
::
typeToStr
(
type
)
,
doubleSupport
?
" -D DOUBLE_SUPPORT"
:
""
,
opts
=
format
(
"-D INTER_NEAREST -D T=%s%s -D T1=%s -D ST=%s -D cn=%d
-D rowsPerWI=%d"
,
ocl
::
typeToStr
(
type
),
doubleSupport
?
" -D DOUBLE_SUPPORT"
:
""
,
ocl
::
typeToStr
(
CV_MAT_DEPTH
(
type
)),
ocl
::
typeToStr
(
sctype
),
cn
);
ocl
::
typeToStr
(
sctype
),
cn
,
rowsPerWI
);
}
else
{
char
cvt
[
2
][
50
];
opts
=
format
(
"-D INTER_%s -D T=%s -D T1=%s -D ST=%s -D WT=%s -D depth=%d -D convertToWT=%s -D convertToT=%s%s -D cn=%d"
,
opts
=
format
(
"-D INTER_%s -D T=%s -D T1=%s -D ST=%s -D WT=%s -D depth=%d"
" -D convertToWT=%s -D convertToT=%s%s -D cn=%d -D rowsPerWI=%d"
,
interpolationMap
[
interpolation
],
ocl
::
typeToStr
(
type
),
ocl
::
typeToStr
(
CV_MAT_DEPTH
(
type
)),
ocl
::
typeToStr
(
sctype
),
ocl
::
typeToStr
(
CV_MAKE_TYPE
(
wdepth
,
cn
)),
depth
,
ocl
::
convertTypeStr
(
depth
,
wdepth
,
cn
,
cvt
[
0
]),
ocl
::
convertTypeStr
(
wdepth
,
depth
,
cn
,
cvt
[
1
]),
doubleSupport
?
" -D DOUBLE_SUPPORT"
:
""
,
cn
);
doubleSupport
?
" -D DOUBLE_SUPPORT"
:
""
,
cn
,
rowsPerWI
);
}
k
.
create
(
kernelName
,
program
,
opts
);
if
(
k
.
empty
())
return
false
;
double
borderBuf
[]
=
{
0
,
0
,
0
,
0
};
double
borderBuf
[]
=
{
0
,
0
,
0
,
0
};
scalarToRawData
(
borderValue
,
borderBuf
,
sctype
);
UMat
src
=
_src
.
getUMat
(),
M0
;
...
...
@@ -4251,7 +4252,7 @@ static bool ocl_warpTransform(InputArray _src, OutputArray _dst, InputArray _M0,
k
.
args
(
ocl
::
KernelArg
::
ReadOnly
(
src
),
ocl
::
KernelArg
::
WriteOnly
(
dst
),
ocl
::
KernelArg
::
PtrReadOnly
(
M0
),
ocl
::
KernelArg
(
0
,
0
,
0
,
0
,
borderBuf
,
CV_ELEM_SIZE
(
sctype
)));
size_t
globalThreads
[
2
]
=
{
dst
.
cols
,
dst
.
rows
};
size_t
globalThreads
[
2
]
=
{
dst
.
cols
,
(
dst
.
rows
+
rowsPerWI
-
1
)
/
rowsPerWI
};
return
k
.
run
(
2
,
globalThreads
,
NULL
,
false
);
}
...
...
modules/imgproc/src/opencl/warp_affine.cl
View file @
14671e0c
...
...
@@ -91,30 +91,33 @@ __kernel void warpAffine(__global const uchar * srcptr, int src_step, int src_of
__constant
CT
*
M,
ST
scalar_
)
{
int
dx
=
get_global_id
(
0
)
;
int
dy
=
get_global_id
(
1
)
;
int
dy
0
=
get_global_id
(
1
)
*
rowsPerWI
;
if
(
dx
<
dst_cols
&&
dy
<
dst_rows
)
if
(
dx
<
dst_cols
)
{
int
round_delta
=
(
AB_SCALE
>>
1
)
;
int
X0
=
rint
(
M[0]
*
dx
*
AB_SCALE
)
;
int
Y0
=
rint
(
M[3]
*
dx
*
AB_SCALE
)
;
X0
+=
rint
((
M[1]*dy
+
M[2]
)
*
AB_SCALE
)
+
round_delta
;
Y0
+=
rint
((
M[4]*dy
+
M[5]
)
*
AB_SCALE
)
+
round_delta
;
int
X0_
=
rint
(
M[0]
*
dx
*
AB_SCALE
)
;
int
Y0_
=
rint
(
M[3]
*
dx
*
AB_SCALE
)
;
int
dst_index
=
mad24
(
dy0,
dst_step,
mad24
(
dx,
pixsize,
dst_offset
))
;
for
(
int
dy
=
dy0,
dy1
=
min
(
dst_rows,
dy0
+
rowsPerWI
)
; dy < dy1; ++dy, dst_index += dst_step)
{
int
X0
=
X0_
+
rint
(
fma
(
M[1],
dy,
M[2]
)
*
AB_SCALE
)
+
round_delta
;
int
Y0
=
Y0_
+
rint
(
fma
(
M[4],
dy,
M[5]
)
*
AB_SCALE
)
+
round_delta
;
short
sx
=
convert_short_sat
(
X0
>>
AB_BITS
)
;
short
sy
=
convert_short_sat
(
Y0
>>
AB_BITS
)
;
int
dst_index
=
mad24
(
dy,
dst_step,
dst_offset
+
dx
*
pixsize
)
;
if
(
sx
>=
0
&&
sx
<
src_cols
&&
sy
>=
0
&&
sy
<
src_rows
)
{
int
src_index
=
mad24
(
sy,
src_step,
src_offset
+
sx
*
pixsize
)
;
int
src_index
=
mad24
(
sy,
src_step,
mad24
(
sx,
pixsize,
src_offset
)
)
;
storepix
(
loadpix
(
srcptr
+
src_index
)
,
dstptr
+
dst_index
)
;
}
else
storepix
(
scalar,
dstptr
+
dst_index
)
;
}
}
}
#
elif
defined
INTER_LINEAR
...
...
@@ -124,17 +127,20 @@ __kernel void warpAffine(__global const uchar * srcptr, int src_step, int src_of
__constant
CT
*
M,
ST
scalar_
)
{
int
dx
=
get_global_id
(
0
)
;
int
dy
=
get_global_id
(
1
)
;
int
dy
0
=
get_global_id
(
1
)
*
rowsPerWI
;
if
(
dx
<
dst_cols
&&
dy
<
dst_rows
)
if
(
dx
<
dst_cols
)
{
int
round_delta
=
AB_SCALE/INTER_TAB_SIZE/2
;
int
tmp
=
(
dx
<<
AB_BITS
)
;
int
X0
=
rint
(
M[0]
*
tmp
)
;
int
Y0
=
rint
(
M[3]
*
tmp
)
;
X0
+=
rint
((
M[1]*dy
+
M[2]
)
*
AB_SCALE
)
+
round_delta
;
Y0
+=
rint
((
M[4]*dy
+
M[5]
)
*
AB_SCALE
)
+
round_delta
;
int
X0_
=
rint
(
M[0]
*
tmp
)
;
int
Y0_
=
rint
(
M[3]
*
tmp
)
;
for
(
int
dy
=
dy0,
dy1
=
min
(
dst_rows,
dy0
+
rowsPerWI
)
; dy < dy1; ++dy)
{
int
X0
=
X0_
+
rint
(
fma
(
M[1],
dy,
M[2]
)
*
AB_SCALE
)
+
round_delta
;
int
Y0
=
Y0_
+
rint
(
fma
(
M[4],
dy,
M[5]
)
*
AB_SCALE
)
+
round_delta
;
X0
=
X0
>>
(
AB_BITS
-
INTER_BITS
)
;
Y0
=
Y0
>>
(
AB_BITS
-
INTER_BITS
)
;
...
...
@@ -143,19 +149,26 @@ __kernel void warpAffine(__global const uchar * srcptr, int src_step, int src_of
short
ax
=
convert_short
(
X0
&
(
INTER_TAB_SIZE-1
))
;
short
ay
=
convert_short
(
Y0
&
(
INTER_TAB_SIZE-1
))
;
WT
v0
=
(
sx
>=
0
&&
sx
<
src_cols
&&
sy
>=
0
&&
sy
<
src_rows
)
?
convertToWT
(
loadpix
(
srcptr
+
mad24
(
sy,
src_step,
src_offset
+
sx
*
pixsize
)))
:
scalar
;
WT
v1
=
(
sx+1
>=
0
&&
sx+1
<
src_cols
&&
sy
>=
0
&&
sy
<
src_rows
)
?
convertToWT
(
loadpix
(
srcptr
+
mad24
(
sy,
src_step,
src_offset
+
(
sx+1
)
*
pixsize
)))
:
scalar
;
WT
v2
=
(
sx
>=
0
&&
sx
<
src_cols
&&
sy+1
>=
0
&&
sy+1
<
src_rows
)
?
convertToWT
(
loadpix
(
srcptr
+
mad24
(
sy+1,
src_step,
src_offset
+
sx
*
pixsize
)))
:
scalar
;
WT
v3
=
(
sx+1
>=
0
&&
sx+1
<
src_cols
&&
sy+1
>=
0
&&
sy+1
<
src_rows
)
?
convertToWT
(
loadpix
(
srcptr
+
mad24
(
sy+1,
src_step,
src_offset
+
(
sx+1
)
*
pixsize
)))
:
scalar
;
WT
v0
=
scalar,
v1
=
scalar,
v2
=
scalar,
v3
=
scalar
;
if
(
sx
>=
0
&&
sx
<
src_cols
)
{
if
(
sy
>=
0
&&
sy
<
src_rows
)
v0
=
convertToWT
(
loadpix
(
srcptr
+
mad24
(
sy,
src_step,
mad24
(
sx,
pixsize,
src_offset
))))
;
if
(
sy+1
>=
0
&&
sy+1
<
src_rows
)
v2
=
convertToWT
(
loadpix
(
srcptr
+
mad24
(
sy+1,
src_step,
mad24
(
sx,
pixsize,
src_offset
))))
;
}
if
(
sx+1
>=
0
&&
sx+1
<
src_cols
)
{
if
(
sy
>=
0
&&
sy
<
src_rows
)
v1
=
convertToWT
(
loadpix
(
srcptr
+
mad24
(
sy,
src_step,
mad24
(
sx+1,
pixsize,
src_offset
))))
;
if
(
sy+1
>=
0
&&
sy+1
<
src_rows
)
v3
=
convertToWT
(
loadpix
(
srcptr
+
mad24
(
sy+1,
src_step,
mad24
(
sx+1,
pixsize,
src_offset
))))
;
}
float
taby
=
1.f/INTER_TAB_SIZE*ay
;
float
tabx
=
1.f/INTER_TAB_SIZE*ax
;
int
dst_index
=
mad24
(
dy,
dst_step,
dst_offset
+
dx
*
pixsize
)
;
int
dst_index
=
mad24
(
dy,
dst_step,
mad24
(
dx,
pixsize,
dst_offset
)
)
;
#
if
depth
<=
4
int
itab0
=
convert_short_sat_rte
(
(
1.0f-taby
)
*
(
1.0f-tabx
)
*
INTER_REMAP_COEF_SCALE
)
;
...
...
@@ -163,14 +176,15 @@ __kernel void warpAffine(__global const uchar * srcptr, int src_step, int src_of
int
itab2
=
convert_short_sat_rte
(
taby*
(
1.0f-tabx
)
*
INTER_REMAP_COEF_SCALE
)
;
int
itab3
=
convert_short_sat_rte
(
taby*tabx
*
INTER_REMAP_COEF_SCALE
)
;
WT
val
=
v0
*
itab0
+
v1
*
itab1
+
v2
*
itab2
+
v3
*
itab3
;
WT
val
=
mad24
(
v0,
itab0,
mad24
(
v1,
itab1,
mad24
(
v2,
itab2,
v3
*
itab3
)))
;
storepix
(
convertToT
((
val
+
(
1
<<
(
INTER_REMAP_COEF_BITS-1
)))
>>
INTER_REMAP_COEF_BITS
)
,
dstptr
+
dst_index
)
;
#
else
float
tabx2
=
1.0f
-
tabx,
taby2
=
1.0f
-
taby
;
WT
val
=
v0
*
tabx2
*
taby2
+
v1
*
tabx
*
taby2
+
v2
*
tabx2
*
taby
+
v3
*
tabx
*
taby
;
WT
val
=
fma
(
v0,
tabx2
*
taby2,
fma
(
v1,
tabx
*
taby2,
fma
(
v2,
tabx2
*
taby,
v3
*
tabx
*
taby
)))
;
storepix
(
convertToT
(
val
)
,
dstptr
+
dst_index
)
;
#
endif
}
}
}
#
elif
defined
INTER_CUBIC
...
...
@@ -179,9 +193,9 @@ inline void interpolateCubic( float x, float* coeffs )
{
const
float
A
=
-0.75f
;
coeffs[0]
=
((
A*
(
x
+
1.f
)
-
5.0f*A
)
*
(
x
+
1.f
)
+
8.0f*A
)
*
(
x
+
1.f
)
-
4.0f*A
;
coeffs[1]
=
((
A
+
2.f
)
*x
-
(
A
+
3.f
))
*x*
x
+
1.f
;
coeffs[2]
=
((
A
+
2.f
)
*
(
1.f
-
x
)
-
(
A
+
3.f
))
*
(
1.f
-
x
)
*
(
1.f
-
x
)
+
1.f
;
coeffs[0]
=
fma
(
fma
(
fma
(
A,
(
x
+
1.f
)
,
-
5.0f*A
)
,
(
x
+
1.f
)
,
8.0f*A
)
,
x
+
1.f,
-
4.0f*A
)
;
coeffs[1]
=
fma
(
fma
(
A
+
2.f,
x,
-
(
A
+
3.f
))
,
x*x,
1.f
)
;
coeffs[2]
=
fma
(
fma
(
A
+
2.f,
1.f
-
x,
-
(
A
+
3.f
))
,
(
1.f
-
x
)
*
(
1.f
-
x
)
,
1.f
)
;
coeffs[3]
=
1.f
-
coeffs[0]
-
coeffs[1]
-
coeffs[2]
;
}
...
...
@@ -199,8 +213,9 @@ __kernel void warpAffine(__global const uchar * srcptr, int src_step, int src_of
int
tmp
=
(
dx
<<
AB_BITS
)
;
int
X0
=
rint
(
M[0]
*
tmp
)
;
int
Y0
=
rint
(
M[3]
*
tmp
)
;
X0
+=
rint
((
M[1]*dy
+
M[2]
)
*
AB_SCALE
)
+
round_delta
;
Y0
+=
rint
((
M[4]*dy
+
M[5]
)
*
AB_SCALE
)
+
round_delta
;
X0
+=
rint
(
fma
(
M[1],
dy,
M[2]
)
*
AB_SCALE
)
+
round_delta
;
Y0
+=
rint
(
fma
(
M[4],
dy,
M[5]
)
*
AB_SCALE
)
+
round_delta
;
X0
=
X0
>>
(
AB_BITS
-
INTER_BITS
)
;
Y0
=
Y0
>>
(
AB_BITS
-
INTER_BITS
)
;
...
...
@@ -212,10 +227,21 @@ __kernel void warpAffine(__global const uchar * srcptr, int src_step, int src_of
WT
v[16]
;
#
pragma
unroll
for
(
int
y
=
0
; y < 4; y++)
{
if
(
sy+y
>=
0
&&
sy+y
<
src_rows
)
{
#
pragma
unroll
for
(
int
x
=
0
; x < 4; x++)
v[mad24
(
y,
4
,
x
)
]
=
(
sx+x
>=
0
&&
sx+x
<
src_cols
&&
sy+y
>=
0
&&
sy+y
<
src_rows
)
?
convertToWT
(
loadpix
(
srcptr
+
mad24
(
sy+y,
src_step,
src_offset
+
(
sx+x
)
*
pixsize
)))
:
scalar
;
v[mad24
(
y,
4
,
x
)
]
=
sx+x
>=
0
&&
sx+x
<
src_cols
?
convertToWT
(
loadpix
(
srcptr
+
mad24
(
sy+y,
src_step,
mad24
(
sx+x,
pixsize,
src_offset
))))
:
scalar
;
}
else
{
#
pragma
unroll
for
(
int
x
=
0
; x < 4; x++)
v[mad24
(
y,
4
,
x
)
]
=
scalar
;
}
}
float
tab1y[4],
tab1x[4]
;
...
...
@@ -224,7 +250,7 @@ __kernel void warpAffine(__global const uchar * srcptr, int src_step, int src_of
interpolateCubic
(
ayy,
tab1y
)
;
interpolateCubic
(
axx,
tab1x
)
;
int
dst_index
=
mad24
(
dy,
dst_step,
dst_offset
+
dx
*
pixsize
)
;
int
dst_index
=
mad24
(
dy,
dst_step,
mad24
(
dx,
pixsize,
dst_offset
)
)
;
WT
sum
=
(
WT
)(
0
)
;
#
if
depth
<=
4
...
...
@@ -236,12 +262,12 @@ __kernel void warpAffine(__global const uchar * srcptr, int src_step, int src_of
#
pragma
unroll
for
(
int
i
=
0
; i < 16; i++)
sum
+=
v[i]
*
itab[i]
;
sum
=
mad24
(
v[i],
itab[i],
sum
)
;
storepix
(
convertToT
(
(
sum
+
(
1
<<
(
INTER_REMAP_COEF_BITS-1
)))
>>
INTER_REMAP_COEF_BITS
)
,
dstptr
+
dst_index
)
;
#
else
#
pragma
unroll
for
(
int
i
=
0
; i < 16; i++)
sum
+=
v[i]
*
tab1y[
(
i>>2
)
]
*
tab1x[
(
i&3
)
]
;
sum
=
fma
(
v[i],
tab1y[
(
i>>2
)
]
*
tab1x[
(
i&3
)
],
sum
)
;
storepix
(
convertToT
(
sum
)
,
dstptr
+
dst_index
)
;
#
endif
}
...
...
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