From 056bbb85fc487e34c1595c5c173d6a9eaca16b43 Mon Sep 17 00:00:00 2001 From: Jim Martens Date: Tue, 2 May 2017 15:55:11 +0200 Subject: [PATCH] [CCV] DoG is now computed and visualized Signed-off-by: Jim Martens --- ccv/sheet4/main.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ccv/sheet4/main.cpp b/ccv/sheet4/main.cpp index bc8cbe6..d0df64d 100644 --- a/ccv/sheet4/main.cpp +++ b/ccv/sheet4/main.cpp @@ -24,6 +24,7 @@ int main(int argc, char** argv) { lab_pyramid pyr_surround = lab_pyramid(image); pyr_surround.create_pyramids(sigma_surround, layers); - + lab_pyramid::compute_dog(pyr_center, pyr_surround, layers); + lab_pyramid::visualize_dog(); return 0; }