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
7391df38
Commit
7391df38
authored
Jun 12, 2014
by
Ilya Lavrenov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fixed usage of reshape
parent
14671e0c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
8 deletions
+8
-8
filter.cpp
modules/imgproc/src/filter.cpp
+8
-8
No files found.
modules/imgproc/src/filter.cpp
View file @
7391df38
...
...
@@ -3219,16 +3219,16 @@ static bool ocl_filter2D( InputArray _src, OutputArray _dst, int ddepth,
((
ksize
.
width
<
5
&&
ksize
.
height
<
5
)
||
(
ksize
.
width
==
5
&&
ksize
.
height
==
5
&&
cn
==
1
)))
{
kernelMat
.
reshape
(
0
,
1
);
kernelMat
=
kernelMat
.
reshape
(
0
,
1
);
String
kerStr
=
ocl
::
kernelToStr
(
kernelMat
,
CV_32F
);
int
h
=
isolated
?
sz
.
height
:
wholeSize
.
height
;
int
w
=
isolated
?
sz
.
width
:
wholeSize
.
width
;
if
(
(
w
<
ksize
.
width
)
||
(
h
<
ksize
.
height
)
)
if
(
w
<
ksize
.
width
||
h
<
ksize
.
height
)
return
false
;
// Figure out what vector size to use for loading the pixels.
int
pxLoadNumPixels
=
((
cn
!=
1
)
||
sz
.
width
%
4
)
?
1
:
4
;
int
pxLoadNumPixels
=
cn
!=
1
||
sz
.
width
%
4
?
1
:
4
;
int
pxLoadVecSize
=
cn
*
pxLoadNumPixels
;
// Figure out how many pixels per work item to compute in X and Y
...
...
@@ -3273,8 +3273,8 @@ static bool ocl_filter2D( InputArray _src, OutputArray _dst, int ddepth,
ocl
::
typeToStr
(
ddepth
),
ocl
::
typeToStr
(
wtype
),
ocl
::
typeToStr
(
wdepth
),
ocl
::
convertTypeStr
(
sdepth
,
wdepth
,
cn
,
cvt
[
0
]),
ocl
::
convertTypeStr
(
wdepth
,
ddepth
,
cn
,
cvt
[
1
]),
kerStr
.
c_str
());
cv
::
String
errmsg
;
if
(
!
k
.
create
(
"filter2DSmall"
,
cv
::
ocl
::
imgproc
::
filter2DSmall_oclsrc
,
build_options
,
&
errmsg
))
if
(
!
k
.
create
(
"filter2DSmall"
,
cv
::
ocl
::
imgproc
::
filter2DSmall_oclsrc
,
build_options
))
return
false
;
}
else
...
...
@@ -3289,13 +3289,13 @@ static bool ocl_filter2D( InputArray _src, OutputArray _dst, int ddepth,
size_t
BLOCK_SIZE
=
tryWorkItems
;
while
(
BLOCK_SIZE
>
32
&&
BLOCK_SIZE
>=
(
size_t
)
ksize
.
width
*
2
&&
BLOCK_SIZE
>
(
size_t
)
sz
.
width
*
2
)
BLOCK_SIZE
/=
2
;
#if 1 // TODO Mode with several blocks requires a much more VGPRs, so this optimization is not actual for the current devices
#if 1 // TODO Mode with several blocks requires a much more VGPRs, so this optimization is not actual for the current devices
size_t
BLOCK_SIZE_Y
=
1
;
#else
#else
size_t
BLOCK_SIZE_Y
=
8
;
// TODO Check heuristic value on devices
while
(
BLOCK_SIZE_Y
<
BLOCK_SIZE
/
8
&&
BLOCK_SIZE_Y
*
src
.
clCxt
->
getDeviceInfo
().
maxComputeUnits
*
32
<
(
size_t
)
src
.
rows
)
BLOCK_SIZE_Y
*=
2
;
#endif
#endif
if
((
size_t
)
ksize
.
width
>
BLOCK_SIZE
)
return
false
;
...
...
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