1
0
mirror of https://github.com/2martens/uni.git synced 2026-05-07 03:46:25 +02:00

[CCV] Added across scale addition method

Signed-off-by: Jim Martens <github@2martens>
This commit is contained in:
2017-05-07 15:49:07 +02:00
parent 57eaab1aa0
commit 3003bf5338
2 changed files with 19 additions and 0 deletions

View File

@ -61,6 +61,14 @@ public:
*/
void static compute_dog(lab_pyramid center, lab_pyramid surround, int number_of_layers);
/**
* Takes the scale images, adds them up and returns the result.
*
* @param scale_images the scale images
* @return the sum of the 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.
*/