mirror of
https://github.com/davisking/dlib.git
synced 2024-11-01 10:14:53 +08:00
Simplified example and added a call to jet()
This commit is contained in:
parent
62a564bf28
commit
13b8c5f3d5
@ -63,8 +63,10 @@ int main(int argc, char** argv)
|
||||
// the window by holding CTRL and scrolling the mouse wheel)
|
||||
image_window my_window(edge_image, "Normal Edge Image");
|
||||
|
||||
// We can also easily display the edge_image as a heatmap like so.
|
||||
image_window win_hot(heatmap(edge_image, 255));
|
||||
// We can also easily display the edge_image as a heatmap or using the jet color
|
||||
// scheme like so.
|
||||
image_window win_hot(heatmap(edge_image));
|
||||
image_window win_jet(jet(edge_image));
|
||||
|
||||
// also make a window to display the original image
|
||||
image_window my_window2(img, "Original Image");
|
||||
|
Loading…
Reference in New Issue
Block a user