Skip to content

Instantly share code, notes, and snippets.

@vvo
Created September 2, 2021 09:32
Embed
What would you like to do?
import { Label, ModelType, Version } from "@customTypes/templates";
export default class Segmentation {
constructor(
public b64_mask = "",
public label = Label.Uncategorized,
public main_colors = "",
public model_type = ModelType.Free,
public model_version = Version.UnknownVersion,
public no_objects = false,
public raw_label = Label.Uncategorized
) { }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment