コード例 #1
0
        public YoloTrackingItemExtended(YoloItem item, string objectId)
        {
            this.ObjectId = objectId;

            this.Type       = item.Type;
            this.Confidence = item.Confidence;
            this.X          = item.X;
            this.Y          = item.Y;
            this.Width      = item.Width;
            this.Height     = item.Height;
        }
コード例 #2
0
        public YoloTrackingItemExtended(YoloItem item, string objectId)
        {
            ObjectId = objectId;

            Type       = item.Type;
            Confidence = item.Confidence;
            X          = item.X;
            Y          = item.Y;
            Width      = item.Width;
            Height     = item.Height;
        }