12345678910111213141516171819202122232425262728293031323334 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace YOLODetectProcessLib
- {
- public class InferNetOnnxDetectLiverLesion : InferNetOnnxDetectBasicYolov8
- {
- #region override
- public override string HashCode => "57cf65d1a217480145b80deb53df1d90";
- public override string NetworkName => "liverlesiondetectyolov8.emd";
- public override void Dispose()
- {
- base.Dispose();
- LogHelper.InfoLog("Liverlesiondetect.Disposed manually.");
- }
- #endregion
- #region constructor
- public InferNetOnnxDetectLiverLesion()
- {
- _allboxesnum = 16660;
- _classesnum = 4;
- }
- #endregion
- }
- }
|