This is a segmentation network to classify each pixel into four classes: BG, road, curb, mark.
Metric | Value |
---|---|
Image size | 896x512 |
GFlops | 4.770 |
MParams | 0.184 |
Source framework | PyTorch* |
The quality metrics calculated on 500 images from "Mighty AI" dataset that was converted for four class classification task are:
Label | IOU | ACC |
---|---|---|
mean | 0.844 | 0.899 |
BG | 0.986 | 0.994 |
road | 0.954 | 0.974 |
curbs | 0.727 | 0.825 |
marks | 0.707 | 0.803 |
IOU=TP/(TP+FN+FP)
ACC=TP/GT
TP
- number of true positive pixels for given classFN
- number of false negative pixels for given classFP
- number of false positive pixels for given classGT
- number of ground truth pixels for given class
A blob with a BGR
image and the shape 1, 3, 512, 896
in the format B, C, H, W
, where:
B
– batch sizeC
– number of channelsH
– image heightW
– image width
The output is a blob with the shape 1, 4, 512, 896
in the format B, C, H, W
. It can be treated as a four-channel feature map, where each channel is a probability of one of the classes: BG, road, curb, mark.
The model can be used in the following demos provided by the Open Model Zoo to show its capabilities:
[*] Other names and brands may be claimed as the property of others.