From 79f615c454766fc7cb382a2d322a46fe7ebed3bf Mon Sep 17 00:00:00 2001 From: Jim Martens Date: Sun, 7 May 2017 16:10:25 +0200 Subject: [PATCH] [CCV] Restructured lab_pyramid header Signed-off-by: Jim Martens --- ccv/sheet4/lab_pyramid.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/ccv/sheet4/lab_pyramid.h b/ccv/sheet4/lab_pyramid.h index ce6e6de..fbc51bd 100644 --- a/ccv/sheet4/lab_pyramid.h +++ b/ccv/sheet4/lab_pyramid.h @@ -68,10 +68,9 @@ public: void static compute_dog(lab_pyramid center, lab_pyramid surround, int number_of_layers); /** - * Computes the feature maps. - * Has to be called after compute_dog. + * Visualizes the center-surround and surround-center contrasts. They have to be computed first. */ - void static compute_feature_maps(); + void static visualize_dog(); /** * Takes the scale images, adds them up and returns the result. @@ -82,9 +81,10 @@ public: cv::Mat static across_scale_addition(const std::vector& scale_images); /** - * Visualizes the center-surround and surround-center contrasts. They have to be computed first. + * Computes the feature maps. + * Has to be called after compute_dog. */ - void static visualize_dog(); + void static compute_feature_maps(); };