using System.Collections.Generic; namespace MMDeploy { /// /// Single classification result of a picture. /// A picture may contains multiple reuslts. /// public struct Label { /// /// Id. /// public int Id; /// /// Score. /// public float Score; /// /// Initializes a new instance of the struct. /// /// id. /// score. public Label(int id, float score) { Id = id; Score = score; } } /// /// Output of Classifier. /// public struct ClassifierOutput { /// /// Classification results for single image. /// public List