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
eeaa4b36
Commit
eeaa4b36
authored
Jun 09, 2014
by
Ilya Lavrenov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
eliminated convertTo
parent
c072c28e
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
21 additions
and
14 deletions
+21
-14
histogram.cpp
modules/imgproc/src/histogram.cpp
+7
-12
histogram.cl
modules/imgproc/src/opencl/histogram.cl
+14
-2
No files found.
modules/imgproc/src/histogram.cpp
View file @
eeaa4b36
...
...
@@ -1494,7 +1494,7 @@ static bool ocl_calcHist1(InputArray _src, OutputArray _hist, int ddepth = CV_32
_hist
.
create
(
BINS
,
1
,
ddepth
);
UMat
src
=
_src
.
getUMat
(),
ghist
(
1
,
BINS
*
compunits
,
CV_32SC1
),
hist
=
ddepth
==
CV_32S
?
_hist
.
getUMat
()
:
UMat
(
BINS
,
1
,
CV_32SC1
);
hist
=
_hist
.
getUMat
(
);
k1
.
args
(
ocl
::
KernelArg
::
ReadOnly
(
src
),
ocl
::
KernelArg
::
PtrWriteOnly
(
ghist
),
(
int
)
src
.
total
());
...
...
@@ -1503,23 +1503,18 @@ static bool ocl_calcHist1(InputArray _src, OutputArray _hist, int ddepth = CV_32
if
(
!
k1
.
run
(
1
,
&
globalsize
,
&
wgs
,
false
))
return
false
;
char
cvt
[
40
];
ocl
::
Kernel
k2
(
"merge_histogram"
,
ocl
::
imgproc
::
histogram_oclsrc
,
format
(
"-D BINS=%d -D HISTS_COUNT=%d -D WGS=%d"
,
BINS
,
compunits
,
(
int
)
wgs
));
format
(
"-D BINS=%d -D HISTS_COUNT=%d -D WGS=%d -D convertToHT=%s -D HT=%s"
,
BINS
,
compunits
,
(
int
)
wgs
,
ocl
::
convertTypeStr
(
CV_32S
,
ddepth
,
1
,
cvt
),
ocl
::
typeToStr
(
ddepth
)));
if
(
k2
.
empty
())
return
false
;
k2
.
args
(
ocl
::
KernelArg
::
PtrReadOnly
(
ghist
),
ocl
::
KernelArg
::
PtrWriteOnly
(
hist
));
if
(
!
k2
.
run
(
1
,
&
wgs
,
&
wgs
,
false
))
return
false
;
if
(
hist
.
depth
()
!=
ddepth
)
hist
.
convertTo
(
_hist
,
ddepth
);
else
_hist
.
getUMatRef
()
=
hist
;
ocl
::
KernelArg
::
WriteOnlyNoSize
(
hist
));
return
true
;
return
k2
.
run
(
1
,
&
wgs
,
&
wgs
,
false
)
;
}
static
bool
ocl_calcHist
(
InputArrayOfArrays
images
,
OutputArray
hist
)
...
...
modules/imgproc/src/opencl/histogram.cl
View file @
eeaa4b36
...
...
@@ -45,6 +45,8 @@
#
define
T
uchar
#
endif
#
define
noconvert
__kernel
void
calculate_histogram
(
__global
const
uchar
*
src,
int
src_step,
int
src_offset,
int
src_rows,
int
src_cols,
__global
uchar
*
histptr,
int
total
)
{
...
...
@@ -111,10 +113,20 @@ __kernel void calculate_histogram(__global const uchar * src, int src_step, int
hist[i]
=
localhist[i]
;
}
__kernel
void
merge_histogram
(
__global
const
int
*
ghist,
__global
int
*
hist
)
#
ifndef
HT
#
define
HT
int
#
endif
#
ifndef
convertToHT
#
define
convertToHT
noconvert
#
endif
__kernel
void
merge_histogram
(
__global
const
int
*
ghist,
__global
uchar
*
histptr,
int
hist_step,
int
hist_offset
)
{
int
lid
=
get_local_id
(
0
)
;
__global
HT
*
hist
=
(
__global
HT
*
)(
histptr
+
hist_offset
)
;
#
pragma
unroll
for
(
int
i
=
lid
; i < BINS; i += WGS)
hist[i]
=
ghist[i]
;
...
...
@@ -126,7 +138,7 @@ __kernel void merge_histogram(__global const int * ghist, __global int * hist)
ghist
+=
BINS
;
#
pragma
unroll
for
(
int
j
=
lid
; j < BINS; j += WGS)
hist[j]
+=
ghist[j]
;
hist[j]
+=
convertToHT
(
ghist[j]
)
;
barrier
(
CLK_LOCAL_MEM_FENCE
)
;
}
}
...
...
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