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

[CCV] Increased sigma values

Signed-off-by: Jim Martens <github@2martens>
This commit is contained in:
2017-05-04 13:17:17 +02:00
parent a98fc12db2
commit 2e714037fb

View File

@ -13,8 +13,8 @@ int main(int argc, char** argv) {
image = cv::imread(argv[1], cv::ImreadModes::IMREAD_COLOR);
int layers = 4;
float sigma_center = 3;
float sigma_surround = 5;
float sigma_center = 5;
float sigma_surround = 9;
// center
lab_pyramid pyr_center = lab_pyramid(image);