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

[CCV] DoG is now computed and visualized

Signed-off-by: Jim Martens <github@2martens>
This commit is contained in:
2017-05-02 15:55:11 +02:00
parent b8eb2c108f
commit 056bbb85fc

View File

@ -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;
}