From eb397407830a6a9c9932449886aa699b4c625d15 Mon Sep 17 00:00:00 2001 From: "Houman.M_Dastjerdi" Date: Fri, 1 Dec 2023 08:44:29 +0100 Subject: [PATCH] Improve GuidedFilter and Radial Center localization citation --- piscat/Localization/radial_symmetry_centering.py | 1 + piscat/Preproccessing/filtering.py | 13 +++++++++++++ 2 files changed, 14 insertions(+) diff --git a/piscat/Localization/radial_symmetry_centering.py b/piscat/Localization/radial_symmetry_centering.py index 8406806..5702310 100644 --- a/piscat/Localization/radial_symmetry_centering.py +++ b/piscat/Localization/radial_symmetry_centering.py @@ -16,6 +16,7 @@ def __init__(self): References ---------- + The Radial Center localization algorithm code has been adopted from this paper. Parthasarathy, R. Rapid, accurate particle tracking by calculation of radial symmetry centers. Nat Methods 9, 724–726 (2012). diff --git a/piscat/Preproccessing/filtering.py b/piscat/Preproccessing/filtering.py index cb6bc87..f4d11da 100644 --- a/piscat/Preproccessing/filtering.py +++ b/piscat/Preproccessing/filtering.py @@ -975,6 +975,12 @@ def __init__(self, I, radius, eps): eps: float Value controlling sharpness + + References + ---------- + The guided filter for gray guided image code has been adopted from the GitHub repository mentioned below. + + [1] https://github.com/lisabug/guided-filter """ self.I = np.float32(I) self.radius = radius @@ -1027,6 +1033,13 @@ def __init__(self, I, radius, eps): eps: float Value controlling sharpness + + References + ---------- + + The guided filter for color guided image code has been adopted from the GitHub repository mentioned below. + + [1] https://github.com/lisabug/guided-filter """ self.I = np.float32(I) self.radius = radius