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
cba926a4
Commit
cba926a4
authored
Jul 28, 2010
by
Maria Dimashova
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
added c++ interface for cvPyrMeanShiftFiltering; added sample on meanshift segmentation
parent
69ef5efb
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
83 additions
and
1 deletion
+83
-1
calonder.cpp
modules/features2d/src/calonder.cpp
+1
-1
imgproc.hpp
modules/imgproc/include/opencv2/imgproc/imgproc.hpp
+5
-0
segmentation.cpp
modules/imgproc/src/segmentation.cpp
+11
-0
meanshift_segmentation.cpp
samples/cpp/meanshift_segmentation.cpp
+66
-0
No files found.
modules/features2d/src/calonder.cpp
View file @
cba926a4
...
...
@@ -333,7 +333,7 @@ void RandomizedTree::train(std::vector<BaseKeypoint> const& base_set,
Size
patchSize
(
PATCH_SIZE
,
PATCH_SIZE
);
for
(
keypt_it
=
base_set
.
begin
();
keypt_it
!=
base_set
.
end
();
++
keypt_it
,
++
class_id
)
{
for
(
int
i
=
0
;
i
<
views
;
++
i
)
{
make_patch
(
Mat
(
keypt_it
->
image
),
Point
(
keypt_it
->
y
,
keypt_it
->
x
),
patch
,
patchSize
,
rng
);
make_patch
(
Mat
(
keypt_it
->
image
),
Point
(
keypt_it
->
x
,
keypt_it
->
y
),
patch
,
patchSize
,
rng
);
IplImage
iplPatch
=
patch
;
addExample
(
class_id
,
getData
(
&
iplPatch
));
}
...
...
modules/imgproc/include/opencv2/imgproc/imgproc.hpp
View file @
cba926a4
...
...
@@ -653,6 +653,11 @@ CV_EXPORTS void equalizeHist( const Mat& src, Mat& dst );
//! segments the image using watershed algorithm
CV_EXPORTS
void
watershed
(
const
Mat
&
image
,
Mat
&
markers
);
//! filters image using meanshift algorithm
CV_EXPORTS
void
pyrMeanShiftFiltering
(
const
Mat
&
src
,
Mat
&
dst
,
double
sp
,
double
sr
,
int
maxLevel
=
1
,
TermCriteria
termcrit
=
TermCriteria
(
TermCriteria
::
MAX_ITER
+
TermCriteria
::
EPS
,
5
,
1
)
);
//! class of the pixel in GrabCut algorithm
enum
{
GC_BGD
=
0
,
//!< background
GC_FGD
=
1
,
//!< foreground
...
...
modules/imgproc/src/segmentation.cpp
View file @
cba926a4
...
...
@@ -526,3 +526,14 @@ cvPyrMeanShiftFiltering( const CvArr* srcarr, CvArr* dstarr,
}
}
void
cv
::
pyrMeanShiftFiltering
(
const
Mat
&
src
,
Mat
&
dst
,
double
sp
,
double
sr
,
int
maxLevel
,
TermCriteria
termcrit
)
{
if
(
src
.
empty
()
)
return
;
dst
.
create
(
src
.
size
(),
src
.
type
()
);
CvMat
_src
=
src
,
_dst
=
dst
;
cvPyrMeanShiftFiltering
(
&
_src
,
&
_dst
,
sp
,
sr
,
maxLevel
,
termcrit
);
}
samples/cpp/meanshift_segmentation.cpp
0 → 100644
View file @
cba926a4
#include <highgui.h>
#include "opencv2/core/core.hpp"
#include "opencv2/imgproc/imgproc.hpp"
#include <iostream>
using
namespace
cv
;
using
namespace
std
;
void
floodFillPostprocess
(
Mat
&
img
,
const
Scalar
&
colorDiff
=
Scalar
::
all
(
1
)
)
{
CV_Assert
(
!
img
.
empty
()
);
RNG
rng
=
theRNG
();
Mat
mask
(
img
.
rows
+
2
,
img
.
cols
+
2
,
CV_8UC1
,
Scalar
::
all
(
0
)
);
for
(
int
y
=
0
;
y
<
img
.
rows
;
y
++
)
{
for
(
int
x
=
0
;
x
<
img
.
cols
;
x
++
)
{
if
(
mask
.
at
<
uchar
>
(
y
+
1
,
x
+
1
)
==
0
)
{
Scalar
newVal
(
rng
(
256
),
rng
(
256
),
rng
(
256
)
);
floodFill
(
img
,
mask
,
Point
(
x
,
y
),
newVal
,
0
,
colorDiff
,
colorDiff
);
}
}
}
}
string
winName
=
"meanshift"
;
int
spatialRad
,
colorRad
,
maxPyrLevel
;
Mat
img
,
res
;
void
meanShiftSegmentation
(
int
,
void
*
)
{
cout
<<
"spatialRad="
<<
spatialRad
<<
"; "
<<
"colorRad="
<<
colorRad
<<
"; "
<<
"maxPyrLevel="
<<
maxPyrLevel
<<
endl
;
pyrMeanShiftFiltering
(
img
,
res
,
spatialRad
,
colorRad
,
maxPyrLevel
);
floodFillPostprocess
(
res
,
Scalar
::
all
(
2
)
);
imshow
(
winName
,
res
);
}
int
main
(
int
argc
,
char
**
argv
)
{
if
(
argc
!=
2
)
{
cout
<<
"Format:"
<<
endl
<<
argv
[
0
]
<<
" image"
<<
endl
;
return
-
1
;
}
img
=
imread
(
argv
[
1
]
);
if
(
img
.
empty
()
)
return
-
1
;
spatialRad
=
10
;
colorRad
=
10
;
maxPyrLevel
=
1
;
namedWindow
(
winName
,
CV_WINDOW_AUTOSIZE
);
createTrackbar
(
"spatialRad"
,
winName
,
&
spatialRad
,
80
,
meanShiftSegmentation
);
createTrackbar
(
"colorRad"
,
winName
,
&
colorRad
,
60
,
meanShiftSegmentation
);
createTrackbar
(
"maxPyrLevel"
,
winName
,
&
maxPyrLevel
,
5
,
meanShiftSegmentation
);
meanShiftSegmentation
(
0
,
0
);
waitKey
();
return
0
;
}
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