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
69582705
Commit
69582705
authored
Sep 05, 2012
by
marina.kolpakova
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Integral images for ICF
parent
b0b85f36
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
86 additions
and
3 deletions
+86
-3
objdetect.hpp
modules/objdetect/include/opencv2/objdetect/objdetect.hpp
+1
-0
softcascade.cpp
modules/objdetect/src/softcascade.cpp
+85
-3
No files found.
modules/objdetect/include/opencv2/objdetect/objdetect.hpp
View file @
69582705
...
...
@@ -507,6 +507,7 @@ public:
int
step
=
4
,
int
rejectfactor
=
1
);
protected
:
virtual
void
detectInRoi
();
virtual
void
detectForOctave
(
int
octave
);
// virtual bool detectSingleScale( const Mat& image, int stripCount, Size processingRectSize,
// int stripSize, int yStep, double factor, vector<Rect>& candidates,
...
...
modules/objdetect/src/softcascade.cpp
View file @
69582705
...
...
@@ -59,7 +59,7 @@ namespace {
Octave
(){}
Octave
(
const
cv
::
FileNode
&
fn
)
:
scale
((
float
)
fn
[
SC_OCT_SCALE
]),
stages
((
int
)
fn
[
SC_OCT_STAGES
])
{
printf
(
"octave: %f %d
\n
"
,
scale
,
stages
);
}
{
/*printf("octave: %f %d\n", scale, stages);*/
}
};
static
const
char
*
SC_STAGE_THRESHOLD
=
"stageThreshold"
;
...
...
@@ -72,7 +72,7 @@ namespace {
Stage
(){}
Stage
(
const
cv
::
FileNode
&
fn
)
:
threshold
((
float
)
fn
[
SC_STAGE_THRESHOLD
]),
weight
((
float
)
fn
[
SC_STAGE_WEIGHT
])
{
printf
(
" stage: %f %f
\n
"
,
threshold
,
weight
);
}
{
/*printf(" stage: %f %f\n",threshold, weight);*/
}
};
// according to R. Benenson, M. Mathias, R. Timofte and L. Van Gool paper
...
...
@@ -131,7 +131,8 @@ namespace {
cv
::
FileNode
rn
=
fn
[
SC_F_RECT
];
cv
::
FileNodeIterator
r_it
=
rn
.
begin
();
rect
=
cv
::
Rect
(
*
(
r_it
++
),
*
(
r_it
++
),
*
(
r_it
++
),
*
(
r_it
++
));
printf
(
" feature: %f %d %d [%d %d %d %d]
\n
"
,
threshold
,
direction
,
channel
,
rect
.
x
,
rect
.
y
,
rect
.
width
,
rect
.
height
);}
// printf(" feature: %f %d %d [%d %d %d %d]\n",threshold, direction, channel, rect.x, rect.y, rect.width, rect.height);
}
Feature
rescale
(
float
relScale
)
{
...
...
@@ -324,14 +325,95 @@ bool cv::SoftCascade::load( const string& filename, const float minScale, const
return
true
;
}
namespace
{
void
calcHistBins
(
const
cv
::
Mat
&
grey
,
std
::
vector
<
cv
::
Mat
>&
histInts
,
const
int
bins
)
{
CV_Assert
(
grey
.
type
()
==
CV_8U
);
const
int
rows
=
grey
.
rows
+
1
;
const
int
cols
=
grey
.
cols
+
1
;
cv
::
Size
intSumSize
(
cols
,
rows
);
histInts
.
clear
();
std
::
vector
<
cv
::
Mat
>
hist
;
for
(
int
bin
=
0
;
bin
<
bins
;
++
bin
)
{
hist
.
push_back
(
cv
::
Mat
(
rows
,
cols
,
CV_32FC1
));
}
cv
::
Mat
df_dx
,
df_dy
,
mag
,
angle
;
cv
::
Sobel
(
grey
,
df_dx
,
CV_32F
,
1
,
0
);
cv
::
Sobel
(
grey
,
df_dy
,
CV_32F
,
0
,
1
);
cv
::
cartToPolar
(
df_dx
,
df_dy
,
mag
,
angle
,
true
);
const
float
magnitudeScaling
=
1.0
/
sqrt
(
2
);
mag
*=
magnitudeScaling
;
angle
/=
60
;
for
(
int
h
=
0
;
h
<
mag
.
rows
;
++
h
)
{
float
*
magnitude
=
mag
.
ptr
<
float
>
(
h
);
float
*
ang
=
angle
.
ptr
<
float
>
(
h
);
for
(
int
w
=
0
;
w
<
mag
.
cols
;
++
w
)
{
hist
[(
int
)
ang
[
w
]].
ptr
<
float
>
(
h
)[
w
]
=
magnitude
[
w
];
}
}
for
(
int
bin
=
0
;
bin
<
bins
;
++
bin
)
{
cv
::
Mat
sum
;
cv
::
integral
(
hist
[
bin
],
sum
);
histInts
.
push_back
(
sum
);
}
cv
::
Mat
magIntegral
;
cv
::
integral
(
mag
,
magIntegral
,
mag
.
depth
());
}
struct
Integrals
{
/* data */
};
}
void
cv
::
SoftCascade
::
detectInRoi
()
{}
void
cv
::
SoftCascade
::
detectMultiScale
(
const
Mat
&
image
,
const
std
::
vector
<
cv
::
Rect
>&
rois
,
std
::
vector
<
cv
::
Rect
>&
objects
,
const
int
step
,
const
int
rejectfactor
)
{
typedef
std
::
vector
<
cv
::
Rect
>::
const_iterator
RIter_t
;
// only color images are supperted
CV_Assert
(
image
.
type
()
==
CV_8UC3
);
// only this window size allowed
CV_Assert
(
image
.
cols
==
640
&&
image
.
rows
==
480
);
objects
.
clear
();
// create integrals
cv
::
Mat
luv
;
cv
::
cvtColor
(
image
,
luv
,
CV_BGR2Luv
);
cv
::
Mat
luvIntegral
;
cv
::
integral
(
luv
,
luvIntegral
);
cv
::
Mat
grey
;
cv
::
cvtColor
(
image
,
grey
,
CV_RGB2GRAY
);
std
::
vector
<
cv
::
Mat
>
hist
;
const
int
bins
=
6
;
calcHistBins
(
grey
,
hist
,
bins
);
for
(
RIter_t
it
=
rois
.
begin
();
it
!=
rois
.
end
();
++
it
)
{
const
cv
::
Rect
&
roi
=
*
it
;
// detectInRoi(roi, objects, step);
}
}
void
cv
::
SoftCascade
::
detectForOctave
(
const
int
octave
)
...
...
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