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
caf9fdbd
Commit
caf9fdbd
authored
Sep 11, 2013
by
Roman Donchenko
Committed by
OpenCV Buildbot
Sep 11, 2013
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #1432 from SpecLad:unseq
parents
6fcd9e38
51ed1873
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
dpstereo.cpp
modules/legacy/src/dpstereo.cpp
+3
-3
No files found.
modules/legacy/src/dpstereo.cpp
View file @
caf9fdbd
...
...
@@ -76,8 +76,8 @@ typedef struct _CvRightImData
uchar
min_val
,
max_val
;
}
_CvRightImData
;
#define CV_IMAX3(a,b,c) (
(temp3 = (a) >= (b) ? (a) : (b)),(temp3 >= (c) ? temp3 :
(c)))
#define CV_IMIN3(a,b,c) (
(temp3 = (a) <= (b) ? (a) : (b)),(temp3 <= (c) ? temp3 :
(c)))
#define CV_IMAX3(a,b,c) (
std::max(std::max((a), (b)),
(c)))
#define CV_IMIN3(a,b,c) (
std::min(std::min((a), (b)),
(c)))
static
void
icvFindStereoCorrespondenceByBirchfieldDP
(
uchar
*
src1
,
uchar
*
src2
,
uchar
*
disparities
,
...
...
@@ -87,7 +87,7 @@ static void icvFindStereoCorrespondenceByBirchfieldDP( uchar* src1, uchar* src2,
float
_param3
,
float
_param4
,
float
_param5
)
{
int
x
,
y
,
i
,
j
,
temp3
;
int
x
,
y
,
i
,
j
;
int
d
,
s
;
int
dispH
=
maxDisparity
+
3
;
uchar
*
dispdata
;
...
...
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