Created
September 2, 2021 09:32
-
-
Save vvo/af0d0a66a92e99ba4a28b1cfd658f4d1 to your computer and use it in GitHub Desktop.
This file contains hidden or 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