User Tools

Site Tools


tutorial:general:watershed_3d

3D Watershed tutorial

Watershed is a powerful technique of mathematical morphology and has many applications in image analysis such as merged objects splitting or zones assignment.

Basic principle

The seeded version implemented in the plugin 3DWatershed will aggregate voxels with higher values first to the seeds. Two seeds with different values for neighbouring voxels may not be growing at same speed, the one with higher values will grow faster then the one will lower values.

Watershed with seeds Watersehd result

Applications

The two main applications are objects splitting and voronoi computation (zones assignment). The watershed algorithm can also be used to segment the image based on the gradient of the intensity or the intensity itself. }

Splitting

The main application in ImageJ is the 2D splitting of merged objects. The 2D splitting application is described in this video tutorial. This splitting is based on the computation of the distance map inside the mask of the merged objects. The seeds are then the local maxima of the distance map, the farthest points from the boundaries, hence corresponding to the centres of the objects. The bigger the object, the higher the values of the distance map, then the faster the growing of the seeds and the bigger the resulting object.

Binary mask EDT of mask Result of splitting

Voronoi

The Voronoi algorithm will draw lines between objects at equal distances from the boundaries of the different objects, this then computes zones around objects and neighbouring particles can be computed. This can be seen as the splitting of the background, the seeds are the local maxima of the distance map outside the objects.

Binary seeds EDT of background Voronoi result

Segmentation

The classical segmentation with watershed is based on the gradient of the images (the edges). First we find the seeds using local extrema. In this implementation we need to invert the edge image. The we apply the watershed on the edge image starting from the seeds.

Original image Inverted edge image Seeds as local minima Final watershed result

tutorial/general/watershed_3d.txt ยท Last modified: 2019/04/12 13:13 by 127.0.0.1

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki