Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
ftl
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Nicolas Pope
ftl
Commits
5a709f7f
Commit
5a709f7f
authored
4 years ago
by
Sebastian Hahta
Browse files
Options
Downloads
Patches
Plain Diff
middlebury: noise
parent
ad02b72b
No related branches found
No related tags found
No related merge requests found
Pipeline
#24363
failed
4 years ago
Stage: all
Stage: deploy
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
lib/libstereo/middlebury/middlebury.cpp
+10
-0
10 additions, 0 deletions
lib/libstereo/middlebury/middlebury.cpp
lib/libstereo/middlebury/middlebury.hpp
+9
-0
9 additions, 0 deletions
lib/libstereo/middlebury/middlebury.hpp
with
19 additions
and
0 deletions
lib/libstereo/middlebury/middlebury.cpp
+
10
−
0
View file @
5a709f7f
...
@@ -169,3 +169,13 @@ MiddEvalResult evaluate(const cv::Mat &disp, const cv::Mat >, const cv::Mat &m
...
@@ -169,3 +169,13 @@ MiddEvalResult evaluate(const cv::Mat &disp, const cv::Mat >, const cv::Mat &m
result
.
rms_bad_nonoccl
=
sqrt
(
err2_bad
/
n
);
result
.
rms_bad_nonoccl
=
sqrt
(
err2_bad
/
n
);
return
result
;
return
result
;
}
}
void
add_noise
(
cv
::
Mat
&
im
,
double
stddev
,
double
mean
)
{
cv
::
Mat
noise
=
cv
::
Mat
(
im
.
size
(),
CV_64FC3
);
cv
::
randn
(
noise
,
mean
,
stddev
);
cv
::
Mat
tmp
;
im
.
convertTo
(
tmp
,
CV_64FC3
,
1.0
/
255.0
);
tmp
+=
noise
;
cv
::
normalize
(
tmp
,
im
,
0
,
255
,
cv
::
NORM_MINMAX
,
CV_8UC3
);
}
This diff is collapsed.
Click to expand it.
lib/libstereo/middlebury/middlebury.hpp
+
9
−
0
View file @
5a709f7f
...
@@ -32,3 +32,12 @@ MiddEvalCalib read_calibration(const std::string &filename);
...
@@ -32,3 +32,12 @@ MiddEvalCalib read_calibration(const std::string &filename);
MiddEvalResult
evaluate
(
const
cv
::
Mat
&
disp
,
const
cv
::
Mat
&
gt
,
const
cv
::
Mat
&
mask
,
float
threshold
=
1.0
f
);
MiddEvalResult
evaluate
(
const
cv
::
Mat
&
disp
,
const
cv
::
Mat
&
gt
,
const
cv
::
Mat
&
mask
,
float
threshold
=
1.0
f
);
cv
::
Mat
read_pfm
(
const
std
::
string
&
filename
);
cv
::
Mat
read_pfm
(
const
std
::
string
&
filename
);
/**
* Add gaussian noise to image.
*
* @param im CV_8UC3
* @param stddev standar deviation
* @param mean mean for noise
*/
void
add_noise
(
cv
::
Mat
&
im
,
double
stddev
,
double
mean
=
0.0
);
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment