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
64a5789f
Commit
64a5789f
authored
Jan 09, 2013
by
Davis King
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
simplified code
parent
d9118a5d
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
3 deletions
+2
-3
image_ex.cpp
examples/image_ex.cpp
+2
-3
No files found.
examples/image_ex.cpp
View file @
64a5789f
...
@@ -61,14 +61,13 @@ int main(int argc, char** argv)
...
@@ -61,14 +61,13 @@ int main(int argc, char** argv)
// Now we would like to see what our images look like. So lets use a
// Now we would like to see what our images look like. So lets use a
// window to display them on the screen. (Note that you can zoom into
// window to display them on the screen. (Note that you can zoom into
// the window by holding CTRL and scrolling the mouse wheel)
// the window by holding CTRL and scrolling the mouse wheel)
image_window
my_window
(
edge_image
);
image_window
my_window
(
edge_image
,
"Normal Edge Image"
);
// We can also easily display the edge_image as a heatmap like so.
// We can also easily display the edge_image as a heatmap like so.
image_window
win_hot
(
heatmap
(
edge_image
,
255
));
image_window
win_hot
(
heatmap
(
edge_image
,
255
));
win_hot
.
set_title
(
"heatmap version of edge image"
);
// also make a window to display the original image
// also make a window to display the original image
image_window
my_window2
(
img
);
image_window
my_window2
(
img
,
"Original Image"
);
// wait until the user closes the windows before we let the program
// wait until the user closes the windows before we let the program
// terminate.
// terminate.
...
...
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