Skip to content

Commit

Permalink
fix: wrong input
Browse files Browse the repository at this point in the history
  • Loading branch information
StRigaud committed Jul 25, 2023
1 parent 2080d3f commit 70bc52f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion clic/src/tier7.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ voronoi_otsu_labeling_func(const Device::Pointer & device,
temp = tier1::gaussian_blur_func(device, src, nullptr, outline_sigma, outline_sigma, outline_sigma);
auto segmentation = tier4::threshold_otsu_func(device, temp, nullptr);
auto binary = tier1::binary_and_func(device, spot, segmentation, nullptr);
temp = tier6::masked_voronoi_labeling_func(device, src, binary, nullptr);
temp = tier6::masked_voronoi_labeling_func(device, binary, segmentation, nullptr);
return tier1::mask_func(device, temp, segmentation, dst);
}

Expand Down

0 comments on commit 70bc52f

Please sign in to comment.