From a89bb8763af909936af281deacb7c6821258afeb Mon Sep 17 00:00:00 2001 From: Dan Costinas <19265585+Dantsz@users.noreply.github.com> Date: Wed, 22 May 2024 16:24:43 +0300 Subject: [PATCH] Update src/contrast.rs Co-authored-by: ripytide <62516857+ripytide@users.noreply.github.com> --- src/contrast.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/contrast.rs b/src/contrast.rs index b052abda..ce015510 100644 --- a/src/contrast.rs +++ b/src/contrast.rs @@ -13,7 +13,7 @@ use crate::stats::{cumulative_histogram, histogram}; /// Applies an adaptive threshold to an image. /// -/// Equivalent to `adaptive_threshold_with_delta` with delta=0. +/// Equivalent to [`adaptive_threshold_with_delta()`] with delta=0. pub fn adaptive_threshold(image: &GrayImage, block_radius: u32) -> GrayImage { adaptive_threshold_with_delta(image, block_radius, 0) }