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
0e53c56c
Commit
0e53c56c
authored
Apr 03, 2013
by
Andrey Kamaev
Committed by
OpenCV Buildbot
Apr 03, 2013
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #744 from pengx17:Branch_2.4_stereobp_ocl
parents
91f6eb7c
917138f5
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
79 additions
and
6 deletions
+79
-6
ocl.hpp
modules/ocl/include/opencv2/ocl/ocl.hpp
+30
-0
stereobp.cl
modules/ocl/src/opencl/stereobp.cl
+0
-0
stereobp.cpp
modules/ocl/src/stereobp.cpp
+0
-0
test_calib3d.cpp
modules/ocl/test/test_calib3d.cpp
+49
-6
No files found.
modules/ocl/include/opencv2/ocl/ocl.hpp
View file @
0e53c56c
...
...
@@ -1701,6 +1701,36 @@ namespace cv
private
:
oclMat
minSSD
,
leBuf
,
riBuf
;
};
class
CV_EXPORTS
StereoBeliefPropagation
{
public
:
enum
{
DEFAULT_NDISP
=
64
};
enum
{
DEFAULT_ITERS
=
5
};
enum
{
DEFAULT_LEVELS
=
5
};
static
void
estimateRecommendedParams
(
int
width
,
int
height
,
int
&
ndisp
,
int
&
iters
,
int
&
levels
);
explicit
StereoBeliefPropagation
(
int
ndisp
=
DEFAULT_NDISP
,
int
iters
=
DEFAULT_ITERS
,
int
levels
=
DEFAULT_LEVELS
,
int
msg_type
=
CV_16S
);
StereoBeliefPropagation
(
int
ndisp
,
int
iters
,
int
levels
,
float
max_data_term
,
float
data_weight
,
float
max_disc_term
,
float
disc_single_jump
,
int
msg_type
=
CV_32F
);
void
operator
()(
const
oclMat
&
left
,
const
oclMat
&
right
,
oclMat
&
disparity
);
void
operator
()(
const
oclMat
&
data
,
oclMat
&
disparity
);
int
ndisp
;
int
iters
;
int
levels
;
float
max_data_term
;
float
data_weight
;
float
max_disc_term
;
float
disc_single_jump
;
int
msg_type
;
private
:
oclMat
u
,
d
,
l
,
r
,
u2
,
d2
,
l2
,
r2
;
std
::
vector
<
oclMat
>
datas
;
oclMat
out
;
};
}
}
#if defined _MSC_VER && _MSC_VER >= 1200
...
...
modules/ocl/src/opencl/stereobp.cl
0 → 100644
View file @
0e53c56c
This diff is collapsed.
Click to expand it.
modules/ocl/src/stereobp.cpp
0 → 100644
View file @
0e53c56c
This diff is collapsed.
Click to expand it.
modules/ocl/test/test_calib3d.cpp
View file @
0e53c56c
...
...
@@ -15,7 +15,7 @@
// Third party copyrights are property of their respective owners.
//
// @Authors
// Peng Xiao, pengxiao@outlook.com
//
// Redistribution and use in source and binary forms, with or without modification,
// are permitted provided that the following conditions are met:
...
...
@@ -63,12 +63,12 @@ PARAM_TEST_CASE(StereoMatchBM, int, int)
}
};
TEST_P
(
StereoMatchBM
,
Accuracy
)
TEST_P
(
StereoMatchBM
,
Regression
)
{
Mat
left_image
=
readImage
(
workdir
+
"../ocl
/aloe-L.png"
,
IMREAD_GRAYSCALE
);
Mat
right_image
=
readImage
(
workdir
+
"../ocl
/aloe-R.png"
,
IMREAD_GRAYSCALE
);
Mat
disp_gold
=
readImage
(
workdir
+
"../ocl
/aloe-disp.png"
,
IMREAD_GRAYSCALE
);
Mat
left_image
=
readImage
(
"stereobm
/aloe-L.png"
,
IMREAD_GRAYSCALE
);
Mat
right_image
=
readImage
(
"stereobm
/aloe-R.png"
,
IMREAD_GRAYSCALE
);
Mat
disp_gold
=
readImage
(
"stereobm
/aloe-disp.png"
,
IMREAD_GRAYSCALE
);
ocl
::
oclMat
d_left
,
d_right
;
ocl
::
oclMat
d_disp
(
left_image
.
size
(),
CV_8U
);
Mat
disp
;
...
...
@@ -88,7 +88,50 @@ TEST_P(StereoMatchBM, Accuracy)
EXPECT_MAT_SIMILAR
(
disp_gold
,
disp
,
1e-3
);
}
INSTANTIATE_TEST_CASE_P
(
GPU
_Calib3D
,
StereoMatchBM
,
testing
::
Combine
(
testing
::
Values
(
128
),
INSTANTIATE_TEST_CASE_P
(
OCL
_Calib3D
,
StereoMatchBM
,
testing
::
Combine
(
testing
::
Values
(
128
),
testing
::
Values
(
19
)));
PARAM_TEST_CASE
(
StereoMatchBP
,
int
,
int
,
int
,
float
,
float
,
float
,
float
)
{
int
ndisp_
;
int
iters_
;
int
levels_
;
float
max_data_term_
;
float
data_weight_
;
float
max_disc_term_
;
float
disc_single_jump_
;
virtual
void
SetUp
()
{
ndisp_
=
GET_PARAM
(
0
);
iters_
=
GET_PARAM
(
1
);
levels_
=
GET_PARAM
(
2
);
max_data_term_
=
GET_PARAM
(
3
);
data_weight_
=
GET_PARAM
(
4
);
max_disc_term_
=
GET_PARAM
(
5
);
disc_single_jump_
=
GET_PARAM
(
6
);
}
};
TEST_P
(
StereoMatchBP
,
Regression
)
{
Mat
left_image
=
readImage
(
"stereobp/aloe-L.png"
);
Mat
right_image
=
readImage
(
"stereobp/aloe-R.png"
);
Mat
disp_gold
=
readImage
(
"stereobp/aloe-disp.png"
,
IMREAD_GRAYSCALE
);
ocl
::
oclMat
d_left
,
d_right
;
ocl
::
oclMat
d_disp
;
Mat
disp
;
ASSERT_FALSE
(
left_image
.
empty
());
ASSERT_FALSE
(
right_image
.
empty
());
ASSERT_FALSE
(
disp_gold
.
empty
());
d_left
.
upload
(
left_image
);
d_right
.
upload
(
right_image
);
ocl
::
StereoBeliefPropagation
bp
(
ndisp_
,
iters_
,
levels_
,
max_data_term_
,
data_weight_
,
max_disc_term_
,
disc_single_jump_
,
CV_16S
);
bp
(
d_left
,
d_right
,
d_disp
);
d_disp
.
download
(
disp
);
disp
.
convertTo
(
disp
,
disp_gold
.
depth
());
EXPECT_MAT_NEAR
(
disp_gold
,
disp
,
0.0
,
""
);
}
INSTANTIATE_TEST_CASE_P
(
OCL_Calib3D
,
StereoMatchBP
,
testing
::
Combine
(
testing
::
Values
(
64
),
testing
::
Values
(
8
),
testing
::
Values
(
2
),
testing
::
Values
(
25.0
f
),
testing
::
Values
(
0.1
f
),
testing
::
Values
(
15.0
f
),
testing
::
Values
(
1.0
f
)));
#endif // HAVE_OPENCL
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