Functions | |
| VImage | VDTErode (VImage src, VImage dest, VDouble radius) |
| 3D morphological erosion | |
| VImage | VDTDilate (VImage src, VImage dest, VDouble radius) |
| 3D morphological dilation | |
| VImage | VDTClose (VImage src, VImage dest, VDouble radius) |
| 3D morphological closing (dilation+erosion) | |
| VImage | VDTOpen (VImage src, VImage dest, VDouble radius) |
| 3D morphological closing (erosion+dilation) | |
3D binary morphological operations are implemented using distance transforms. This implementation is usually much faster than the Minkowski addition. However, only structuring elements of spherical shape are permitted.
| VImage VDTErode | ( | VImage | src, | |
| VImage | dest, | |||
| VDouble | radius | |||
| ) |
3D morphological erosion
| src | input image (bit repn) | |
| dest | output image (bit repn) | |
| radius | radius of the spherical structural element |
| VImage VDTDilate | ( | VImage | src, | |
| VImage | dest, | |||
| VDouble | radius | |||
| ) |
3D morphological dilation
| src | input image (bit repn) | |
| dest | output image (bit repn) | |
| radius | radius of the spherical structural element |
| VImage VDTClose | ( | VImage | src, | |
| VImage | dest, | |||
| VDouble | radius | |||
| ) |
3D morphological closing (dilation+erosion)
| src | input image (bit repn) | |
| dest | output image (bit repn) | |
| radius | radius of the spherical structural element |
| VImage VDTOpen | ( | VImage | src, | |
| VImage | dest, | |||
| VDouble | radius | |||
| ) |
3D morphological closing (erosion+dilation)
| src | input image (bit repn) | |
| dest | output image (bit repn) | |
| radius | radius of the spherical structural element |
1.5.5