This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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