Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
D
dlib
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
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
钟尚武
dlib
Commits
6aaf3467
Commit
6aaf3467
authored
Sep 24, 2011
by
Davis King
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
updated spec
parent
6df0f975
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
edge_detector_abstract.h
dlib/image_transforms/edge_detector_abstract.h
+2
-1
No files found.
dlib/image_transforms/edge_detector_abstract.h
View file @
6aaf3467
...
...
@@ -90,7 +90,8 @@ namespace dlib
ensures
- #out_img.nr() = horz.nr()
- #out_img.nc() = horz.nc()
- let edge_strength(r,c) == abs(horz[r][c]) + abs(vert[r][c])
- let edge_strength(r,c) == sqrt(pow(horz[r][c],2) + pow(vert[r][c],2))
(i.e. The Euclidean norm of the gradient)
- for all valid r and c:
- if (edge_strength(r,c) is at a maximum with respect to its 2 neighboring
pixels along the line given by edge_orientation(vert[r][c],horz[r][c])) then
...
...
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