1
0
mirror of https://github.com/2martens/uni.git synced 2026-05-06 19:36:26 +02:00

[CCV] Restructured lab_pyramid header

Signed-off-by: Jim Martens <github@2martens>
This commit is contained in:
2017-05-07 16:10:25 +02:00
parent ee5b0cabd0
commit 79f615c454

View File

@ -68,10 +68,9 @@ public:
void static compute_dog(lab_pyramid center, lab_pyramid surround, int number_of_layers); void static compute_dog(lab_pyramid center, lab_pyramid surround, int number_of_layers);
/** /**
* Computes the feature maps. * Visualizes the center-surround and surround-center contrasts. They have to be computed first.
* Has to be called after compute_dog.
*/ */
void static compute_feature_maps(); void static visualize_dog();
/** /**
* Takes the scale images, adds them up and returns the result. * 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<cv::Mat>& scale_images); cv::Mat static across_scale_addition(const std::vector<cv::Mat>& 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();
}; };