intro#

def#

segmentation task:

* classifiaction - what is the object
* where is the object

alt text

types#

alt text alt text

Semantic: Pixel (Each) is labeled by its texture and other image related properties.
    
Instance: Pixel is labeled as part of a predefined set of objects. Each object is uniquely identified (Can be counted).
    
Panoptic: Pixel (Each) is labeled by its texture and object.

output#

alt text

output of L is num of classes;

argmax on each L channel will yield with

alt text

alt text

score#

  • by definition is mostly imbalanced

  • so the Imbalanced classification Scores can be:

    • Balanced Accuracy.

    • Recall, Precision.

    • Dice / F1.

    • Confusion Matrix

  • Object Scores

    • IoU.

    • mAP.

alt text

alt text

resources#

The Loss Function#

  • Cross Entropy Loss.

  • Cross Entropy Loss + Label Smoothing.

  • Balanced Cross Entropy / Focal Loss.

  • Gradient Friendly Region / Boundary Loss.

resources#