Click or drag to resize
SoImageStackProjectionProcessing3dProjectionModes Enumeration

Namespace: OIV.ImageViz.Engines.ImageManipulation.StackOperations
Assembly: OIV.ImageViz (in OIV.ImageViz.dll) Version: 10.12.3.0 (10.12.3.0)
Syntax
public enum ProjectionModes
Members
  Member nameValueDescription
INTENSITY_MAXIMA0

Select the pixel with the highest value of the sequence.

GRADIENT_MAXIMA1

Select the pixel with the highest gradient.

This mode enables the OIV.ImageViz.Engines.ImageManipulation.StackOperations.SoImageStackProjectionProcessing3d.gradientOperator field.

PROJECTION2

Sum all values of the sequence.

INTENSITY_MINIMA3

Select the pixel with the lowest value of the sequence.

MEDIAN4

Select the pixel which is the median of the sequence.

MEAN5

Compute the average of the sequence.

VARIANCE6

Compute the variance of the sequence.

ENTROPY7

Compute the entropy of the sequence based on this formula: where is the probability to have a pixel with value (it's the number of those pixels divided by the total number of pixels).

ENERGY8

Compute the energy of the sequence based on this formula: .

Remarks