====== MorphologicalOperations ====== ===== Usage ===== This logic applies mathematical morphology operators onto the data. As input, a (stack of) binary or grayscale image(s) is possible. The respecitve effect of each operator is described below. ===== Operators ===== ==== Closing ==== FIXME ==== Dilation ==== The basic effect of Dilation is to enlarge boundaries of regions of foreground pixels (1's). Thus areas of foreground pixels grow in size and wholes within those regions shrink. A typical kernel used during Dilation consists of a 3×3 mask containing all 1’s. However, every other size and pattern may be used. ==== Erosion ==== Erosion performs the mathematical morphology operator called Erosion. It must be applied to a binary or grayscale image. Its basic effect is to shrink boundaries of regions of foreground pixels (1's). Thus areas of foreground pixels shrink in size and wholes within those regions grow. ==== Opening ==== FIXME ==== Skeletonization ==== FIXME ===== Parameters and I/O ===== |< 100% 30% >| ^ Parameters ^ Description ^ | Input image format | This value can either be set to binary or grayscale. Choose according to the input data format. | | binary | Sets the input format to binary (only 0 and 1 as values). | | grayscale | Sets the input format to floating point grayscale. | |< 100% 30% >| ^ Input ^ Description ^ | input1 | Stack of input images, binary or grayscale are accepted if the corresponding format is chosen. | | input2 | This input holds the kernel used during the morphology operator. | |< 100% 30% >| ^ Output ^ Description ^ | output | Images after application of the operation. |