Train Mask-RCNN on a Custom Dataset

In this post, We will see how to fune-tune Mask-RCNN on a custom dataset. I will cover the processing pipeline from how to prepare a custom dataset to model funtuning and evaluation. It will be very useful, so keep reading.

more ...

Foetal Head Segmentation on Ultrasound Images using Residual U-Net

Measuring foetal head circumference is one of the most accurate method to estimate gestational age after the first trimester (first three months of pregnancy). To automate this procedure, the most important step is segment the foetal head area in ultrasound images. Then we can fit an ellipse on the head area, and build a regressor using the head mask to estimate gestational age.
In this post, we will use a U-Net architecture with residual blocks to make head segmentations. U-Net performs very well on medical images. And due to its relatively compact structure, its speed is much faster than Mask-RCNN.

more ...



Semantic Segmentation using FCN and DeepLabV3

Semantic Segmentation is an image analysis task in which we classify each pixel in the image into a class. In this post, we will perform semantic segmentation using pre-trained models built in Pytorch. They are FCN and DeepLabV3.

more ...