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
017d970b
Commit
017d970b
authored
Oct 25, 2012
by
marina.kolpakova
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
load SoftCascade from FileStorage
parent
a22ee136
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
22 additions
and
16 deletions
+22
-16
objdetect.hpp
modules/objdetect/include/opencv2/objdetect/objdetect.hpp
+11
-7
perf_cascadeclassifier.cpp
modules/objdetect/perf/perf_cascadeclassifier.cpp
+2
-1
softcascade.cpp
modules/objdetect/src/softcascade.cpp
+5
-6
test_softcascade.cpp
modules/objdetect/test/test_softcascade.cpp
+4
-2
No files found.
modules/objdetect/include/opencv2/objdetect/objdetect.hpp
View file @
017d970b
...
...
@@ -500,25 +500,29 @@ public:
float
confidence
;
int
kind
;
enum
{
PEDESTRIAN
=
0
};
enum
{
PEDESTRIAN
=
1
};
//! Create detection from an object bounding rectangle and confidence. Only PEDESTRIAN type carrently supported.
//! Param r is a boundinf rectangle
//! param c is a confidence that object belongs to class k
//! Paral k is an object class
Detection
(
const
cv
::
Rect
&
r
,
const
float
c
,
int
k
=
PEDESTRIAN
)
:
rect
(
r
),
confidence
(
c
),
kind
(
k
)
{}
};
//! An empty cascade will be created.
SoftCascade
();
//! Cascade will be created f
rom file f
or scales from minScale to maxScale.
//! Param f
ilename is a path to xml-serialized casc
ade.
//! Cascade will be created for scales from minScale to maxScale.
//! Param f
s is a serialized sacs
ade.
//! Param minScale is a minimum scale relative to the original size of the image on which cascade will be applyed.
//! Param minScale is a maximum scale relative to the original size of the image on which cascade will be applyed.
SoftCascade
(
const
string
&
filename
,
const
float
minScale
=
0.4
f
,
const
float
maxScale
=
5.
f
);
SoftCascade
(
const
cv
::
FileStorage
&
fs
,
const
float
minScale
=
0.4
f
,
const
float
maxScale
=
5.
f
);
//! cascade will be loaded
from file "filename"
. The previous cascade will be destroyed.
//! Param f
ilename is a path to xml-serialized casc
ade.
//! cascade will be loaded. The previous cascade will be destroyed.
//! Param f
s is a serialized sacs
ade.
//! Param minScale is a minimum scale relative to the original size of the image on which cascade will be applyed.
//! Param minScale is a maximum scale relative to the original size of the image on which cascade will be applyed.
bool
load
(
const
string
&
filename
,
const
float
minScale
=
0.4
f
,
const
float
maxScale
=
5.
f
);
bool
read
(
const
cv
::
FileStorage
&
fs
,
const
float
minScale
=
0.4
f
,
const
float
maxScale
=
5.
f
);
virtual
~
SoftCascade
();
...
...
modules/objdetect/perf/perf_cascadeclassifier.cpp
View file @
017d970b
...
...
@@ -65,7 +65,8 @@ PERF_TEST_P(detect, SoftCascade,
ASSERT_FALSE
(
colored
.
empty
());
cv
::
SoftCascade
cascade
;
ASSERT_TRUE
(
cascade
.
load
(
getDataPath
(
get
<
0
>
(
GetParam
()))));
cv
::
FileStorage
fs
(
getDataPath
(
get
<
0
>
(
GetParam
())),
cv
::
FileStorage
::
READ
);
ASSERT_TRUE
(
cascade
.
read
(
fs
));
std
::
vector
<
cv
::
Rect
>
rois
;
std
::
vector
<
detection_t
>
objectBoxes
;
...
...
modules/objdetect/src/softcascade.cpp
View file @
017d970b
...
...
@@ -499,24 +499,23 @@ struct cv::SoftCascade::Filds
cv
::
SoftCascade
::
SoftCascade
()
:
filds
(
0
)
{}
cv
::
SoftCascade
::
SoftCascade
(
const
string
&
filename
,
const
float
minScale
,
const
float
maxScale
)
:
filds
(
0
)
cv
::
SoftCascade
::
SoftCascade
(
const
cv
::
FileStorage
&
fs
,
const
float
minScale
,
const
float
maxScale
)
:
filds
(
0
)
{
load
(
filename
,
minScale
,
maxScale
);
read
(
fs
,
minScale
,
maxScale
);
}
cv
::
SoftCascade
::~
SoftCascade
()
{
delete
filds
;
}
bool
cv
::
SoftCascade
::
load
(
const
string
&
filename
,
const
float
minScale
,
const
float
maxScale
)
bool
cv
::
SoftCascade
::
read
(
const
cv
::
FileStorage
&
fs
,
const
float
minScale
,
const
float
maxScale
)
{
if
(
!
fs
.
isOpened
())
return
false
;
if
(
filds
)
delete
filds
;
filds
=
0
;
cv
::
FileStorage
fs
(
filename
,
FileStorage
::
READ
);
if
(
!
fs
.
isOpened
())
return
false
;
filds
=
new
Filds
;
Filds
&
flds
=
*
filds
;
if
(
!
flds
.
fill
(
fs
.
getFirstTopLevelNode
(),
minScale
,
maxScale
))
return
false
;
...
...
modules/objdetect/test/test_softcascade.cpp
View file @
017d970b
...
...
@@ -45,7 +45,8 @@ TEST(SoftCascade, readCascade)
{
std
::
string
xml
=
cvtest
::
TS
::
ptr
()
->
get_data_path
()
+
"cascadeandhog/icf-template.xml"
;
cv
::
SoftCascade
cascade
;
ASSERT_TRUE
(
cascade
.
load
(
xml
));
cv
::
FileStorage
fs
(
xml
,
cv
::
FileStorage
::
READ
);
ASSERT_TRUE
(
cascade
.
read
(
fs
));
}
...
...
@@ -54,7 +55,8 @@ TEST(SoftCascade, detect)
typedef
cv
::
SoftCascade
::
Detection
detection_t
;
std
::
string
xml
=
cvtest
::
TS
::
ptr
()
->
get_data_path
()
+
"cascadeandhog/sc_cvpr_2012_to_opencv.xml"
;
cv
::
SoftCascade
cascade
;
ASSERT_TRUE
(
cascade
.
load
(
xml
));
cv
::
FileStorage
fs
(
xml
,
cv
::
FileStorage
::
READ
);
ASSERT_TRUE
(
cascade
.
read
(
fs
));
cv
::
Mat
colored
=
cv
::
imread
(
cvtest
::
TS
::
ptr
()
->
get_data_path
()
+
"cascadeandhog/bahnhof/image_00000000_0.png"
);
ASSERT_FALSE
(
colored
.
empty
());
...
...
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