|
|
@ -85,6 +85,8 @@ namespace cv { namespace gpu { namespace device { |
|
|
|
namespace icf { |
|
|
|
namespace icf { |
|
|
|
void fillBins(cv::gpu::PtrStepSzb hogluv, const cv::gpu::PtrStepSzf& nangle, |
|
|
|
void fillBins(cv::gpu::PtrStepSzb hogluv, const cv::gpu::PtrStepSzf& nangle, |
|
|
|
const int fw, const int fh, const int bins, cudaStream_t stream); |
|
|
|
const int fw, const int fh, const int bins, cudaStream_t stream); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void suppress(const PtrStepSzb& objects, PtrStepSzb overlaps, PtrStepSzi ndetections); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
namespace imgproc { |
|
|
|
namespace imgproc { |
|
|
@ -309,6 +311,8 @@ struct cv::gpu::SCascade::Fields |
|
|
|
hogluv.create((fh / shr) * HOG_LUV_BINS + 1, fw / shr + 1, CV_32SC1); |
|
|
|
hogluv.create((fh / shr) * HOG_LUV_BINS + 1, fw / shr + 1, CV_32SC1); |
|
|
|
hogluv.setTo(cv::Scalar::all(0)); |
|
|
|
hogluv.setTo(cv::Scalar::all(0)); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
overlaps.create(1, 5000, CV_8UC1); |
|
|
|
|
|
|
|
|
|
|
|
return true; |
|
|
|
return true; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
@ -437,7 +441,15 @@ private: |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#include <iostream> |
|
|
|
public: |
|
|
|
public: |
|
|
|
|
|
|
|
void suppress(GpuMat& ndetections, GpuMat& objects) |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
ensureSizeIsEnough(objects.rows, objects.cols, CV_8UC1, overlaps); |
|
|
|
|
|
|
|
overlaps.setTo(0); |
|
|
|
|
|
|
|
device::icf::suppress(objects, overlaps, ndetections); |
|
|
|
|
|
|
|
// std::cout << cv::Mat(overlaps) << std::endl;
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
// scales range
|
|
|
|
// scales range
|
|
|
|
float minScale; |
|
|
|
float minScale; |
|
|
@ -469,6 +481,9 @@ public: |
|
|
|
// 161x121x10
|
|
|
|
// 161x121x10
|
|
|
|
GpuMat hogluv; |
|
|
|
GpuMat hogluv; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// used for area overlap computing during
|
|
|
|
|
|
|
|
GpuMat overlaps; |
|
|
|
|
|
|
|
|
|
|
|
// Cascade from xml
|
|
|
|
// Cascade from xml
|
|
|
|
GpuMat octaves; |
|
|
|
GpuMat octaves; |
|
|
|
GpuMat stages; |
|
|
|
GpuMat stages; |
|
|
@ -478,6 +493,8 @@ public: |
|
|
|
|
|
|
|
|
|
|
|
GpuMat sobelBuf; |
|
|
|
GpuMat sobelBuf; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
GpuMat collected; |
|
|
|
|
|
|
|
|
|
|
|
std::vector<device::icf::Octave> voctaves; |
|
|
|
std::vector<device::icf::Octave> voctaves; |
|
|
|
|
|
|
|
|
|
|
|
DeviceInfo info; |
|
|
|
DeviceInfo info; |
|
|
@ -494,7 +511,7 @@ public: |
|
|
|
}; |
|
|
|
}; |
|
|
|
|
|
|
|
|
|
|
|
cv::gpu::SCascade::SCascade(const double mins, const double maxs, const int sc, const int rjf) |
|
|
|
cv::gpu::SCascade::SCascade(const double mins, const double maxs, const int sc, const int rjf) |
|
|
|
: fields(0), minScale(mins), maxScale(maxs), scales(sc), rejfactor(rjf) {} |
|
|
|
: fields(0), minScale(mins), maxScale(maxs), scales(sc), rejCriteria(rjf) {} |
|
|
|
|
|
|
|
|
|
|
|
cv::gpu::SCascade::~SCascade() { delete fields; } |
|
|
|
cv::gpu::SCascade::~SCascade() { delete fields; } |
|
|
|
|
|
|
|
|
|
|
@ -534,6 +551,9 @@ void cv::gpu::SCascade::detect(InputArray image, InputArray _rois, OutputArray _ |
|
|
|
cudaStream_t stream = StreamAccessor::getStream(s); |
|
|
|
cudaStream_t stream = StreamAccessor::getStream(s); |
|
|
|
|
|
|
|
|
|
|
|
flds.detect(rois, tmp, objects, stream); |
|
|
|
flds.detect(rois, tmp, objects, stream); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// if (rejCriteria != NO_REJECT)
|
|
|
|
|
|
|
|
flds.suppress(tmp, objects); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
void cv::gpu::SCascade::genRoi(InputArray _roi, OutputArray _mask, Stream& stream) const |
|
|
|
void cv::gpu::SCascade::genRoi(InputArray _roi, OutputArray _mask, Stream& stream) const |
|
|
|