Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
OpenDAS
dlib
Commits
0c23aae4
Commit
0c23aae4
authored
Jan 26, 2015
by
Davis King
Browse files
clarified spec
parent
ac52d375
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
+4
-2
dlib/image_transforms/thresholding_abstract.h
dlib/image_transforms/thresholding_abstract.h
+4
-2
No files found.
dlib/image_transforms/thresholding_abstract.h
View file @
0c23aae4
...
@@ -122,8 +122,10 @@ namespace dlib
...
@@ -122,8 +122,10 @@ namespace dlib
- #out_img == the hysteresis thresholded version of in_img (in_img is converted to a
- #out_img == the hysteresis thresholded version of in_img (in_img is converted to a
grayscale intensity image if it is color). Pixels in in_img with grayscale
grayscale intensity image if it is color). Pixels in in_img with grayscale
values >= upper_thresh have an output value of on_pixel and all others have a
values >= upper_thresh have an output value of on_pixel and all others have a
value of off_pixel unless they are >= lower_thresh and are adjacent to a pixel
value of off_pixel unless they are >= lower_thresh and are connected to a pixel
with a value >= upper_thresh in which case they have a value of on_pixel.
with a value >= upper_thresh, in which case they have a value of on_pixel. Here
pixels are connected if there is a path between them composed of pixels that
would receive an output of on_pixel.
- #out_img.nc() == in_img.nc()
- #out_img.nc() == in_img.nc()
- #out_img.nr() == in_img.nr()
- #out_img.nr() == in_img.nr()
!*/
!*/
...
...
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