Skip to content

Commit

Permalink
Update pyclesperanto to 0.15.1
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Nov 14, 2024
1 parent 6cbd633 commit cc749cd
Showing 1 changed file with 24 additions and 24 deletions.
48 changes: 24 additions & 24 deletions pyclesperanto/_tier2.py
Original file line number Diff line number Diff line change
Expand Up @@ -602,9 +602,9 @@ def degrees_to_radians(
def detect_maxima_box(
input_image: Image,
output_image: Optional[Image] =None,
radius_x: float =1,
radius_y: float =1,
radius_z: float =1,
radius_x: float =0,
radius_y: float =0,
radius_z: float =0,
device: Optional[Device] =None
) -> Image:
"""Detects local maxima in a given square/cubic neighborhood. Pixels in the
Expand All @@ -617,11 +617,11 @@ def detect_maxima_box(
Input image to process.
output_image: Optional[Image] (= None)
Output result image.
radius_x: float (= 1)
radius_x: float (= 0)
Radius along the x axis.
radius_y: float (= 1)
radius_y: float (= 0)
Radius along the y axis.
radius_z: float (= 1)
radius_z: float (= 0)
Radius along the z axis.
device: Optional[Device] (= None)
Device to perform the operation on.
Expand All @@ -640,9 +640,9 @@ def detect_maxima_box(
def detect_maxima(
input_image: Image,
output_image: Optional[Image] =None,
radius_x: float =1,
radius_y: float =1,
radius_z: float =1,
radius_x: float =0,
radius_y: float =0,
radius_z: float =0,
connectivity: str ="box",
device: Optional[Device] =None
) -> Image:
Expand All @@ -656,11 +656,11 @@ def detect_maxima(
Input image to process.
output_image: Optional[Image] (= None)
Output result image.
radius_x: float (= 1)
radius_x: float (= 0)
Radius along the x axis.
radius_y: float (= 1)
radius_y: float (= 0)
Radius along the y axis.
radius_z: float (= 1)
radius_z: float (= 0)
Radius along the z axis.
connectivity: str (= "box")
Element shape, "box" or "sphere"
Expand All @@ -682,9 +682,9 @@ def detect_maxima(
def detect_minima_box(
input_image: Image,
output_image: Optional[Image] =None,
radius_x: float =1,
radius_y: float =1,
radius_z: float =1,
radius_x: float =0,
radius_y: float =0,
radius_z: float =0,
device: Optional[Device] =None
) -> Image:
"""Detects local maxima in a given square/cubic neighborhood. Pixels in the
Expand All @@ -697,11 +697,11 @@ def detect_minima_box(
Input image to process.
output_image: Optional[Image] (= None)
Output result image.
radius_x: float (= 1)
radius_x: float (= 0)
Radius along the x axis.
radius_y: float (= 1)
radius_y: float (= 0)
Radius along the y axis.
radius_z: float (= 1)
radius_z: float (= 0)
Radius along the z axis.
device: Optional[Device] (= None)
Device to perform the operation on.
Expand All @@ -720,9 +720,9 @@ def detect_minima_box(
def detect_minima(
input_image: Image,
output_image: Optional[Image] =None,
radius_x: float =1,
radius_y: float =1,
radius_z: float =1,
radius_x: float =0,
radius_y: float =0,
radius_z: float =0,
connectivity: str ="box",
device: Optional[Device] =None
) -> Image:
Expand All @@ -736,11 +736,11 @@ def detect_minima(
Input image to process.
output_image: Optional[Image] (= None)
Output result image.
radius_x: float (= 1)
radius_x: float (= 0)
Radius along the x axis.
radius_y: float (= 1)
radius_y: float (= 0)
Radius along the y axis.
radius_z: float (= 1)
radius_z: float (= 0)
Radius along the z axis.
connectivity: str (= "box")
Element shape, "box" or "sphere"
Expand Down

0 comments on commit cc749cd

Please sign in to comment.