From 6a7c4b921e6421373ea9b9dd167c5b932b452aad Mon Sep 17 00:00:00 2001 From: Ybawan <92610152+Ybawan@users.noreply.github.com> Date: Fri, 25 Oct 2024 15:48:58 -0500 Subject: [PATCH] [DOC] Rasterize function description correction Made a small correction to one of the function descriptions that I noticed seems to be incorrectly describing the default behavior. The default value of draw is described as 0, but seems to actually be 10000. --- STalign/STalign.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/STalign/STalign.py b/STalign/STalign.py index 23af422..4643dbc 100644 --- a/STalign/STalign.py +++ b/STalign/STalign.py @@ -78,7 +78,7 @@ def rasterize(x, y, g=np.ones(1), dx=30.0, blur=1.0, expand=1.1, draw=10000, wav expand : float Factor to expand sampled area beyond cells. Defaults to 1.1. draw : int - If True, draw a figure every draw points return its handle. Defaults to False (0). + If True, draw a figure every draw points and return its handle. Defaults to 10000 draw points. If set to False (0), no handle is returned. wavelet_magnitude : bool If True, take the absolute value of difference between scales for raster images. When using this option blur should be sorted from greatest to least.