Skip to content

Commit

Permalink
Feat : DicomInferenceMLService Interface(#232/#236)
Browse files Browse the repository at this point in the history
  • Loading branch information
BEOKS committed Mar 30, 2022
1 parent 977fbca commit bf8163e
Showing 1 changed file with 17 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
package com.knuipalab.dsmp.service.machineLearning;

import com.fasterxml.jackson.databind.JsonNode;

public interface DicomInferenceMLService {
/**
* @param instanceID 추론에 사용할 Dicom 이미지의 ID, orthanc의 ID가 아닌 메타데이터에 저장된 ID를 의미합니다.
* @return 머신러닝 처리 결과 중 분류기 모델의 데이터를 반환합니다.
*/
JsonNode getClassificationData(String instanceID);

/**
* @param instanceID 추론에 사용할 Dicom 이미지의 ID, orthanc의 ID가 아닌 메타데이터에 저장된 ID를 의미합니다.
* @return 머신러닝 처리 결과 중 Segmentation 모델의 데이터를 반환합니다.
*/
JsonNode getSegmentationData(String instanceID);
}

0 comments on commit bf8163e

Please sign in to comment.