diff --git a/README.md b/README.md index 58ec89dc..a12fdf33 100644 --- a/README.md +++ b/README.md @@ -211,6 +211,7 @@ Affine transformation, deconvolution and many filter functions are automatically - `focus_map` → Find focus using variance of Laplacian method. - `stokes` → Analyze polarization using Stokes parameters. - `fft`:zap::maple_leaf:, `power_spectra`:zap::maple_leaf:, `ifft`:zap::maple_leaf: → Fourier transformation. + - `local_dft`:zap::maple_leaf:, `local_power_spectra`:zap::maple_leaf: → Local Fourier transformation (upsampling in Fourier space while avoid calculating whole values). - `threshold` → Thresholding (many methods included). - `crop_center`, `crop_kernel`, `remove_edges`, `rotated_crop` → Crop image. - `clip`, `rescale_intensity` → Rescale the intensity profile into certain range. @@ -294,8 +295,8 @@ Affine transformation, deconvolution and many filter functions are automatically - `/` → Reslice selected image-layers with all the lines and paths in selected shape-layers. Result is stored in `ip.gui.results` for now. - `Ctrl` + `P` → Projection of shape-layers or point-layers to 2D layers. - `Ctrl` + `G` / `Ctrl` + `Shift` + `G` → Link/Unlink layers. Like "grouping" in PowerPoint. - - `Shift` + `S` / `S` → Add 2D/nD shape-layer. - - `Shift` + `P` / `P` → Add 2D/nD point-layer. + - `S` → Add hape-layer. + - `P` → Add point-layer. - Show coordinates of selected point-layers or track-layers. You can also copy it to clipboard. - Note pad in `Window > Note`. - Call `impy.imread` in `File > imread ...`. Call `impy.imsave` in `File > imsave ...`. diff --git a/impy/__init__.py b/impy/__init__.py index 523c36b9..3e362ba1 100644 --- a/impy/__init__.py +++ b/impy/__init__.py @@ -1,4 +1,4 @@ -__version__ = "1.18.6" +__version__ = "1.18.7" import logging from ._const import Const, SetConst