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
3432108e
Commit
3432108e
authored
Mar 18, 2012
by
Davis King
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added an example use of heatmap()
parent
6dbb0d81
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
1 deletion
+6
-1
image_ex.cpp
examples/image_ex.cpp
+6
-1
No files found.
examples/image_ex.cpp
View file @
3432108e
...
@@ -63,12 +63,17 @@ int main(int argc, char** argv)
...
@@ -63,12 +63,17 @@ int main(int argc, char** argv)
// 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
);
// We can also easily display the edge_image as a heatmap like so.
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
);
// wait until the user closes
both
windows before we let the program
// wait until the user closes
the
windows before we let the program
// terminate.
// terminate.
my_window
.
wait_until_closed
();
my_window
.
wait_until_closed
();
win_hot
.
wait_until_closed
();
my_window2
.
wait_until_closed
();
my_window2
.
wait_until_closed
();
}
}
catch
(
exception
&
e
)
catch
(
exception
&
e
)
...
...
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