Input: |
- is the binary gland mask. White regions are glands on a black background. |
- is the binary nuclei-border mask. White regions are nuclei borders on a black background. |
Output: |
- is the binary maxima-seed mask. White regions are centroid locations of the gland objects. |
Function and variable description: |
- DILATE() conducts “” dilation operations on binary image with a pixels dilation window. Output image is also binary. |
- DISTANCE-TRANSFORM() computes the Euclidean distance map of image . Output image is grayscale. |
- FIND-MAXIMA() computes the local intensity maxima pixels in the . Output is a binary image indicating the maxima pixels in white. |
- Given a binary image , is a binary image with corresponding inverted pixel values. |
- is a Boolean operation defining pixel-wise AND operation between and . |
Parameters: |
- Select number of dilation operations . This value for was optimized empirically. |
1: Procedure MAXIMA-SEEDS (, ) |
2: . |
3: . ⊳ Remove nuclei borders from gland regions. |
4: . ⊳ Find the centers of the glandular objects. |
5: return maxima-seed mask . |
6: end procedure
|