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
0314e0e5
Commit
0314e0e5
authored
Sep 27, 2012
by
marina.kolpakova
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add kind in detection representation
parent
c0359ed5
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
27 additions
and
72 deletions
+27
-72
isf-sc.cu
modules/gpu/src/cuda/isf-sc.cu
+9
-8
icf.hpp
modules/gpu/src/icf.hpp
+18
-64
No files found.
modules/gpu/src/cuda/isf-sc.cu
View file @
0314e0e5
...
@@ -123,7 +123,6 @@ namespace icf {
...
@@ -123,7 +123,6 @@ namespace icf {
{
{
dprintf("feature box %d %d %d %d ", area.x, area.y, area.z, area.w);
dprintf("feature box %d %d %d %d ", area.x, area.y, area.z, area.w);
dprintf("get for channel %d\n", channel);
dprintf("extract feature for: [%d %d] [%d %d] [%d %d] [%d %d]\n",
dprintf("extract feature for: [%d %d] [%d %d] [%d %d] [%d %d]\n",
x + area.x, y + area.y, x + area.z, y + area.y, x + area.z,y + area.w,
x + area.x, y + area.y, x + area.z, y + area.y, x + area.z,y + area.w,
x + area.x, y + area.w);
x + area.x, y + area.w);
...
@@ -140,13 +139,13 @@ namespace icf {
...
@@ -140,13 +139,13 @@ namespace icf {
}
}
__global__ void test_kernel(const Level* levels, const Octave* octaves, const float* stages,
__global__ void test_kernel(const Level* levels, const Octave* octaves, const float* stages,
const Node* nodes, const float* leaves,
PtrStepSz<uchar4> object
s, uint* ctr)
const Node* nodes, const float* leaves,
Detection* objects, const uint ndetection
s, uint* ctr)
{
{
const int y = blockIdx.y * blockDim.y + threadIdx.y;
const int y = blockIdx.y * blockDim.y + threadIdx.y;
const int x = blockIdx.x * blockDim.x + threadIdx.x;
const int x = blockIdx.x * blockDim.x + threadIdx.x;
Level level = levels[blockIdx.z];
Level level = levels[blockIdx.z];
// if (
x > 0 || y > 0 || blockIdx.z > 0
) return;
// if (
blockIdx.z != 31
) return;
if(x >= level.workRect.x || y >= level.workRect.y) return;
if(x >= level.workRect.x || y >= level.workRect.y) return;
Octave octave = octaves[level.octave];
Octave octave = octaves[level.octave];
...
@@ -191,10 +190,10 @@ namespace icf {
...
@@ -191,10 +190,10 @@ namespace icf {
if(st == stEnd)
if(st == stEnd)
{
{
int idx = atomicInc(ctr,
objects.col
s);
int idx = atomicInc(ctr,
ndetection
s);
uchar4 val;
// store detection
val.x = x * 4;
objects[idx] = Detection(__float2int_rn(x * octave.shrinkage),
objects(0, idx) = val
;
__float2int_rn(y * octave.shrinkage), level.objSize.x, level.objSize.y, confidence)
;
}
}
}
}
...
@@ -214,11 +213,13 @@ namespace icf {
...
@@ -214,11 +213,13 @@ namespace icf {
const Node* nd = (const Node*)nodes.ptr();
const Node* nd = (const Node*)nodes.ptr();
const float* lf = (const float*)leaves.ptr();
const float* lf = (const float*)leaves.ptr();
uint* ctr = (uint*)counter.ptr();
uint* ctr = (uint*)counter.ptr();
Detection* det = (Detection*)objects.ptr();
uint max_det = objects.cols / sizeof(Detection);
cudaChannelFormatDesc desc = cudaCreateChannelDesc<int>();
cudaChannelFormatDesc desc = cudaCreateChannelDesc<int>();
cudaSafeCall( cudaBindTexture2D(0, thogluv, hogluv.data, desc, hogluv.cols, hogluv.rows, hogluv.step));
cudaSafeCall( cudaBindTexture2D(0, thogluv, hogluv.data, desc, hogluv.cols, hogluv.rows, hogluv.step));
test_kernel<<<grid, block>>>(l, oct, st, nd, lf,
objects
, ctr);
test_kernel<<<grid, block>>>(l, oct, st, nd, lf,
det, max_det
, ctr);
cudaSafeCall( cudaGetLastError());
cudaSafeCall( cudaGetLastError());
cudaSafeCall( cudaDeviceSynchronize());
cudaSafeCall( cudaDeviceSynchronize());
...
...
modules/gpu/src/icf.hpp
View file @
0314e0e5
...
@@ -47,11 +47,11 @@
...
@@ -47,11 +47,11 @@
#include <opencv2/gpu/device/common.hpp>
#include <opencv2/gpu/device/common.hpp>
#include <stdio.h>
#include <stdio.h>
//
#if defined __CUDACC__
#if defined __CUDACC__
//
# define __device __device__ __forceinline__
# define __device __device__ __forceinline__
//
#else
#else
//
# define __device
# define __device
//
#endif
#endif
namespace
cv
{
namespace
gpu
{
namespace
device
{
namespace
cv
{
namespace
gpu
{
namespace
device
{
...
@@ -108,66 +108,21 @@ struct __align__(8) Node
...
@@ -108,66 +108,21 @@ struct __align__(8) Node
}
}
};
};
// struct __align__(8) Feature
struct
__align__
(
16
)
Detection
// {
{
// int channel;
ushort
x
;
// uchar4 rect;
ushort
y
;
ushort
w
;
ushort
h
;
float
confidence
;
int
kind
;
Detection
(){}
__device
Detection
(
int
_x
,
int
_y
,
uchar
_w
,
uchar
_h
,
float
c
)
:
x
(
_x
),
y
(
_y
),
w
(
_w
),
h
(
_h
),
confidence
(
c
),
kind
(
0
)
{};
};
// Feature(const int c, const uchar4 r) : channel(c), rect(r) {}
// };
}
}
}}}
}}}
// struct Cascade
// {
// Cascade() {}
// Cascade(const cv::gpu::PtrStepSzb& octs, const cv::gpu::PtrStepSzf& sts, const cv::gpu::PtrStepSzb& nds,
// const cv::gpu::PtrStepSzf& lvs, const cv::gpu::PtrStepSzb& fts, const cv::gpu::PtrStepSzb& lls)
// : octaves(octs), stages(sts), nodes(nds), leaves(lvs), features(fts), levels(lls) {}
// void detect(const cv::gpu::PtrStepSzi& hogluv, cv::gpu::PtrStepSz<uchar4> objects, cudaStream_t stream) const;
// void __device detectAt(const int* __restrict__ hogluv, const int pitch, PtrStepSz<uchar4>& objects) const;
// float __device rescale(const icf::Level& level, uchar4& scaledRect,
// const int channel, const float threshold) const;
// PtrStepSzb octaves;
// PtrStepSzf stages;
// PtrStepSzb nodes;
// PtrStepSzf leaves;
// PtrStepSzb features;
// PtrStepSzb levels;
// };
// struct ChannelStorage
// {
// ChannelStorage(){}
// ChannelStorage(const cv::gpu::PtrStepSzb& buff, const cv::gpu::PtrStepSzb& shr,
// const cv::gpu::PtrStepSzb& itg, const int s)
// : dmem (buff), shrunk(shr), hogluv(itg), shrinkage(s) {}
// void frame(const cv::gpu::PtrStepSz<uchar3>& rgb, cudaStream_t stream){}
// PtrStepSzb dmem;
// PtrStepSzb shrunk;
// PtrStepSzb hogluv;
// enum
// {
// FRAME_WIDTH = 640,
// FRAME_HEIGHT = 480,
// TOTAL_SCALES = 55,
// CLASSIFIERS = 5,
// ORIG_OBJECT_WIDTH = 64,
// ORIG_OBJECT_HEIGHT = 128,
// HOG_BINS = 6,
// HOG_LUV_BINS = 10
// };
// int shrinkage;
// static const float magnitudeScaling = 1.f ;// / sqrt(2);
// };
// }}}
#endif
#endif
\ No newline at end of file
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