Enumerations | |
enum | af_morph_t { AF_BW_Dilate = 0, AF_BW_Erode, AF_BW_Open, AF_BW_Close, AF_BW_Diag, AF_BW_Remove, AF_BW_Fill, AF_BW_Tophat, AF_BW_Bothat, AF_BW_Hbreak, AF_BW_Endpoints, AF_BW_Majority, AF_BW_Clean } |
Image Morphology enum. More... | |
Functions | |
array | erode (const array &image, const array &mask) |
Image erosion. | |
array | dilate (const array &image, const array &mask) |
Image dilation. | |
array | morph (const array &image, af_morph_t type) |
Image morphology (binary) |
enum af_morph_t |
array af::erode | ( | const array & | image, |
const array & | mask | ||
) |
Image erosion.
[in] | image | |
[in] | mask | indicating neighborhood to match |
array af::dilate | ( | const array & | image, |
const array & | mask | ||
) |
Image dilation.
[in] | image | |
[in] | mask | indicating neighborhood to match |
array af::morph | ( | const array & | image, |
af_morph_t | type | ||
) |
Image morphology (binary)
[in] | image | The input image (logical) |
[in] | type | type of image morphology |