Skip to content

Commit

Permalink
eliminated convertTo
Browse files Browse the repository at this point in the history
  • Loading branch information
ilya-lavrenov committed Jun 10, 2014
1 parent c072c28 commit eeaa4b3
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 14 deletions.
19 changes: 7 additions & 12 deletions modules/imgproc/src/histogram.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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());
Expand All @@ -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)
Expand Down
16 changes: 14 additions & 2 deletions modules/imgproc/src/opencl/histogram.cl
Original file line number Diff line number Diff line change
Expand Up @@ -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)
{
Expand Down Expand Up @@ -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];
Expand All @@ -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);
}
}
Expand Down

0 comments on commit eeaa4b3

Please sign in to comment.