DeepLabSession
DeepLab inference session for semantic segmentation. Auto-detects model input dimensions and supports both NCHW and NHWC layouts. Returns per-class coverage percentages and polygon boundaries. Example labels := ["background", "person", "bicycle", "car"]; session := DeepLabSession->New("deeplabv3.onnx"); result := session->Inference(image_bytes, labels); each(cls in result->GetClassifications()) { "{cls->GetName()}: {cls->GetConfidence()}%"->PrintLine(); }; session->Close();