Skip to content

Instantly share code, notes, and snippets.

@vvo
Created September 2, 2021 09:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vvo/af0d0a66a92e99ba4a28b1cfd658f4d1 to your computer and use it in GitHub Desktop.
Save vvo/af0d0a66a92e99ba4a28b1cfd658f4d1 to your computer and use it in GitHub Desktop.
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