Filtering data
The qim3d
library provides a set of methods for filtering volumes.
qim3d.filters
qim3d.filters.gaussian
Applies a Gaussian filter to the input volume using scipy.ndimage.gaussian_filter or dask_image.ndfilters.gaussian_filter.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
vol |
ndarray
|
The input image or volume. |
required |
sigma |
float or sequence of floats
|
The standard deviations of the Gaussian filter are given for each axis as a sequence, or as a single number, in which case it is equal for all axes. |
required |
dask |
bool
|
Whether to use Dask for the Gaussian filter. |
False
|
chunks |
int or tuple or 'auto'
|
Defines how to divide the array into blocks when using Dask. Can be an integer, tuple, size in bytes, or "auto" for automatic sizing. |
'auto'
|
**kwargs |
Any
|
Additional keyword arguments for the Gaussian filter. |
{}
|
Returns:
Name | Type | Description |
---|---|---|
filtered_vol |
ndarray
|
The filtered image or volume. |
Source code in qim3d/filters/_common_filter_methods.py
qim3d.filters.median
Applies a median filter to the input volume using scipy.ndimage.median_filter or dask_image.ndfilters.median_filter.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
vol |
ndarray
|
The input image or volume. |
required |
size |
scalar or tuple
|
Either size or footprint must be defined. size gives the shape that is taken from the input array, at every element position, to define the input to the filter function. |
None
|
footprint |
ndarray
|
Boolean array that specifies (implicitly) a shape, but also which of the elements within this shape will get passed to the filter function. |
None
|
dask |
bool
|
Whether to use Dask for the median filter. |
False
|
chunks |
int or tuple or 'auto'
|
Defines how to divide the array into blocks when using Dask. Can be an integer, tuple, size in bytes, or "auto" for automatic sizing. |
'auto'
|
**kwargs |
Any
|
Additional keyword arguments for the median filter. |
{}
|
Returns:
Name | Type | Description |
---|---|---|
filtered_vol |
ndarray
|
The filtered image or volume. |
Raises:
Type | Description |
---|---|
RuntimeError
|
If neither size nor footprint is defined |
Source code in qim3d/filters/_common_filter_methods.py
qim3d.filters.maximum
Applies a maximum filter to the input volume using scipy.ndimage.maximum_filter or dask_image.ndfilters.maximum_filter.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
vol |
ndarray
|
The input image or volume. |
required |
size |
scalar or tuple
|
Either size or footprint must be defined. size gives the shape that is taken from the input array, at every element position, to define the input to the filter function. |
None
|
footprint |
ndarray
|
Boolean array that specifies (implicitly) a shape, but also which of the elements within this shape will get passed to the filter function. |
None
|
dask |
bool
|
Whether to use Dask for the maximum filter. |
False
|
chunks |
int or tuple or 'auto'
|
Defines how to divide the array into blocks when using Dask. Can be an integer, tuple, size in bytes, or "auto" for automatic sizing. |
'auto'
|
**kwargs |
Any
|
Additional keyword arguments for the maximum filter. |
{}
|
Returns:
Name | Type | Description |
---|---|---|
filtered_vol |
ndarray
|
The filtered image or volume. |
Raises:
Type | Description |
---|---|
RuntimeError
|
If neither size nor footprint is defined |
Source code in qim3d/filters/_common_filter_methods.py
qim3d.filters.minimum
Applies a minimum filter to the input volume using scipy.ndimage.minimum_filter or dask_image.ndfilters.minimum_filter.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
vol |
ndarray
|
The input image or volume. |
required |
size |
scalar or tuple
|
Either size or footprint must be defined. size gives the shape that is taken from the input array, at every element position, to define the input to the filter function. |
None
|
footprint |
ndarray
|
Boolean array that specifies (implicitly) a shape, but also which of the elements within this shape will get passed to the filter function. |
None
|
dask |
bool
|
Whether to use Dask for the minimum filter. |
False
|
chunks |
int or tuple or 'auto'
|
Defines how to divide the array into blocks when using Dask. Can be an integer, tuple, size in bytes, or "auto" for automatic sizing. |
'auto'
|
**kwargs |
Any
|
Additional keyword arguments for the minimum filter. |
{}
|
Returns:
Name | Type | Description |
---|---|---|
filtered_vol |
ndarray
|
The filtered image or volume. |
Raises:
Type | Description |
---|---|
RuntimeError
|
If neither size nor footprint is defined |
Source code in qim3d/filters/_common_filter_methods.py
qim3d.filters.tophat
Remove background from the volume.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
vol |
ndarray
|
The volume to remove background from. |
required |
dask |
bool
|
Whether to use Dask for the tophat filter (not supported, will default to SciPy). |
False
|
**kwargs |
Any
|
Additional keyword arguments.
|
{}
|
Returns:
Name | Type | Description |
---|---|---|
filtered_vol |
ndarray
|
The volume with background removed. |
Source code in qim3d/filters/_common_filter_methods.py
qim3d.filters.Pipeline
Example
import qim3d
from qim3d.filters import Pipeline, Median, Gaussian, Maximum, Minimum
# Get data
vol = qim3d.examples.fly_150x256x256
# Show original
fig1 = qim3d.viz.slices_grid(vol, num_slices=5, display_figure=True)
# Create filter pipeline
pipeline = Pipeline(
Median(size=5),
Gaussian(sigma=3, dask = True)
)
# Append a third filter to the pipeline
pipeline.append(Maximum(size=3))
# Apply filter pipeline
vol_filtered = pipeline(vol)
# Show filtered
fig2 = qim3d.viz.slices_grid(vol_filtered, num_slices=5, display_figure=True)


Source code in qim3d/filters/_common_filter_methods.py
218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 |
|
qim3d.filters.Pipeline.append
Appends a filter to the end of the sequence.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
fn |
FilterBase
|
An instance of a FilterBase subclass to be appended. |
required |