public CustomVisionPredictionController(
     IWebHostEnvironment webHostEnvironment,
     ICustomVisionPredictionService predictionService,
     IVideoFrameExtractionService videoFrameExtractionService,
     ISystemSettings systemSettings)
 {
     _webHostEnvironment          = webHostEnvironment;
     _predictionService           = predictionService;
     _videoFrameExtractionService = videoFrameExtractionService;
     _systemSettings = systemSettings;
 }
コード例 #2
0
 public CustomVisionAuthoringController(
     IWebHostEnvironment webHostEnvironment,
     ICustomVisionProjectService projectService,
     ICustomVisionAuthoringService authoringService,
     IVideoFrameExtractionService videoFrameExtractionService,
     ISystemSettings systemSettings)
 {
     _webHostEnvironment          = webHostEnvironment;
     _projectService              = projectService;
     _authoringService            = authoringService;
     _videoFrameExtractionService = videoFrameExtractionService;
     _systemSettings              = systemSettings;
 }