-
Notifications
You must be signed in to change notification settings - Fork 0
Home
This work implements a semi-automatic segmentation algorithm by region growing. Several methods have been used: *image filtering*, *morphological operations* and *image segmentation techniques*.
Processing a computed tomography (CT) image to extract atomic measurements of vertebral height and width.
The algorithm asks the user to provide a starting point for the region growth. He can then click on the image that is displayed and the function returns the coordinates of the selected point.
Here we have the implementation of the growth algorithm. The algorithm is composed of three steps in order to work properly.
- Preprocessing and initialization of data
- Iterative segmentation process
- Post-processing of segmentation.
Once the vertebra is segmented, we measure its height and width and display them.
Here, the width of a vertebra is equal to the distance between the two most distant points horizontally, i.e. on the x-axis, while its height is equal to the distance between the two most distant points vertically, i.e. on the y-axis.
Figure: (a) original image, (b) segmentation of the vertebra, (c) extraction of the vertebra measurements.