Filter image
 
Applies simple filtering or scaling algorithms on an image. For more complex operations see the more specialized image manipulation nodes
| Algorithms: | 
abs Computes absolute value or complex magnitude of imageangle Gives the phase angle of a complex imagecenter image Shifts image so that center of mass lies in center of imageclamp Restricts the output values to a given maximum/minimum 
minimum:The minimum output value that can be passed throughmaximum:The maximum output value that can be passed throughgaussian Two-dimensional Gaussian filter 
sigma-x:Standard deviation of gaussian filter along X-axissigma-y:Standard deviation of gaussian filter along Y-axisborder mode:Determines how the array borders are handledk:Value outside image borders when method constant is used.hessian determinant Computes an approximation of the determinant of the hessian matrix for each pixel. 
sigma:Standard deviation of gaussian kernel (default 3.0) used for calculating Hessian. Approximation is not reliable for sigma < 3.0imag Gives the imaginary part of a complex imageintegral image Creates the integral image of the input. An integral image contains at coordinate (m,n) the sum of all values above and to the left of it. 
S(m,n) = sum(im[0:m, 0:n])normalize Adds a (positive) scale and offset so that smallest/highest value in image becomes 0 and 1 respectively. 
Operates on each channel separately 
minimum:Minimum value after normalizationmaximum:Maximum value after normalizationreal Gives the real valued part of a complex imagescale/offset Adds a scale and/or an offset to each channel equally 
scale:Scale factor applied to image before offsetoffset:Offset applied to image after scaleto integer Converts all channels into integer data | 
|---|
| Inputs: | source : image 
 | 
|---|
| Outputs: | result : image 
 | 
|---|
- Input ports:
- 
| source: | image source image to filter | 
|---|
 
 
- Output ports:
- 
| result: | image result after filtering | 
|---|
 
 
- Configuration:
- 
- algorithm
- (no description)
- scale
- (no description)
- k
- (no description)
- sigma-y
- (no description)
- sigma-x
- (no description)
- maximum
- (no description)
- border mode
- (no description)
- minimum
- (no description)
- offset
- (no description)
- sigma
- (no description)
 
Some of the docstrings for this module have been
extracted from the scikit-image library
and are covered by their respective licenses.
- 
class node_general_filters.GeneralImageFiltering[source]