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
e9b9a6fc
Commit
e9b9a6fc
authored
Aug 06, 2013
by
kocheganovvm
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix unsequenced assignment (Bug #3191).
parent
4ed9b1ca
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
dpstereo.cpp
modules/legacy/src/dpstereo.cpp
+2
-2
No files found.
modules/legacy/src/dpstereo.cpp
View file @
e9b9a6fc
...
...
@@ -76,7 +76,7 @@ typedef struct _CvRightImData
uchar
min_val
,
max_val
;
}
_CvRightImData
;
#define CV_IMAX3(a,b,c) ((temp
3 = (a) >= (b) ? (a) : (b)),(temp3 >= (c) ? temp3
: (c)))
#define CV_IMAX3(a,b,c) ((temp
2 = (a) >= (b) ? (a) : (b)),(temp2 >= (c) ? temp2
: (c)))
#define CV_IMIN3(a,b,c) ((temp3 = (a) <= (b) ? (a) : (b)),(temp3 <= (c) ? temp3 : (c)))
static
void
icvFindStereoCorrespondenceByBirchfieldDP
(
uchar
*
src1
,
uchar
*
src2
,
...
...
@@ -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
,
temp
2
,
temp
3
;
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