Skip to content

Commit

Permalink
Fixed problem in compiling API in the website
Browse files Browse the repository at this point in the history
  • Loading branch information
Houman.M_Dastjerdi committed Dec 1, 2023
1 parent 8d34df8 commit b9946cb
Showing 1 changed file with 12 additions and 11 deletions.
23 changes: 12 additions & 11 deletions piscat/Preproccessing/filtering.py
Original file line number Diff line number Diff line change
Expand Up @@ -219,11 +219,11 @@ def __init__(self, inter_flag_parallel_active=True):
----------
The Radial Variance Transform code has been adopted from the GitHub repository mentioned below.
[1] Kashkanova, Anna D., et al. "Precision single-particle localization
using radial variance transform." Optics Express 29.7 (2021):
11070-11083.
[1] Kashkanova, Anna D., et al. "Precision single-particle localization
using radial variance transform." Optics Express 29.7 (2021):
11070-11083.
[2] https://github.com/SandoghdarLab/rvt
[2] https://github.com/SandoghdarLab/rvt
"""
self.cpu = CPUConfigurations()
Expand Down Expand Up @@ -790,11 +790,12 @@ def __init__(self):
References
----------
The fast radial symmetry transform code has been adopted from the GitHub repository mentioned below.
[1] Loy, G., & Zelinsky, A. (2002). A fast radial symmetry transform
for detecting points of interest. Computer Vision, ECCV 2002.
[1] Loy, G., & Zelinsky, A. (2002). A fast radial symmetry transform
for detecting points of interest. Computer Vision, ECCV 2002.
[2] https://github.com/Xonxt/frst
[2] https://github.com/Xonxt/frst
"""
pass
Expand Down Expand Up @@ -976,11 +977,11 @@ def __init__(self, I, radius, eps):
eps: float
Value controlling sharpness
References
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
[1] https://github.com/lisabug/guided-filter
"""
self.I = np.float32(I)
self.radius = radius
Expand Down Expand Up @@ -1034,12 +1035,12 @@ def __init__(self, I, radius, eps):
eps: float
Value controlling sharpness
References
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
[1] https://github.com/lisabug/guided-filter
"""
self.I = np.float32(I)
self.radius = radius
Expand Down

0 comments on commit b9946cb

Please sign in to comment.