최적의 FPS 성능을 얻으려면 요청을 동시에 전송합니다.
예를 들어 다음 조건에서는 동시 요청 6개에서 20개로 늘리면 FPS를 30FPS에서 60FPS로 향상시킬 수 있습니다.
압축 사용 안 함
DICOM 데이터가 모두 동일한 리전에 있는 경우
DICOM 이미지 크기가 0.5MB인 경우
단일 요청에서 프레임 검색
retrieveStudy 및 retrieveSeries 메서드는 단일 요청에서 DICOM 파일 여러 개를 효율적으로 반환합니다.
이러한 메서드를 사용하면 최적의 동시 요청 수를 사용하는 속도와 동일한 속도로 이미지를 검색할 수 있습니다. 다음과 같은 경우 동시 요청을 사용하는 대신 단일 요청에서 이러한 메서드를 호출할 수 있습니다.
클라이언트는 전체 연구를 메모리에 저장하거나 응답을 스트림으로 파싱하여 한 번에 DICOM 인스턴스 하나를 처리할 수 있습니다.
검색된 이미지의 순서를 맞춤설정할 필요가 없습니다.
웹 뷰어 성능 향상
다음 섹션에서는 웹 뷰어를 사용하는 경우 DICOM 이미지 검색에 적용됩니다.
최대 동시 요청 수 늘리기
웹 기반 뷰어를 사용하는 경우 대부분의 브라우저는 호스트당 최대 연결 수를 적용합니다. 이 숫자는 일반적으로 6입니다. 하지만 실제로는 다음과 같은 이유로 인해 최대 동시 요청 수에 제한이 없습니다.
서버에서 HTTP/2를 지원하는 경우 대부분의 브라우저는 기본적으로 HTTP/2를 사용합니다.
[[["이해하기 쉬움","easyToUnderstand","thumb-up"],["문제가 해결됨","solvedMyProblem","thumb-up"],["기타","otherUp","thumb-up"]],[["이해하기 어려움","hardToUnderstand","thumb-down"],["잘못된 정보 또는 샘플 코드","incorrectInformationOrSampleCode","thumb-down"],["필요한 정보/샘플이 없음","missingTheInformationSamplesINeed","thumb-down"],["번역 문제","translationIssue","thumb-down"],["기타","otherDown","thumb-down"]],["최종 업데이트: 2025-04-15(UTC)"],[[["This page details best practices for optimizing performance when working with DICOM data in the Cloud Healthcare API, focusing on improving frames per second (FPS) in medical imaging viewers."],["Sending requests concurrently can significantly improve FPS, with an example showing an increase from 30 FPS to 60 FPS when increasing concurrent requests from six to 20 under specific conditions."],["The `retrieveStudy` and `retrieveSeries` methods allow for the efficient retrieval of multiple DICOM files in a single request, matching the performance of optimal concurrent requests under certain conditions."],["For web viewers, the default limit on concurrent connections in browsers can be bypassed with HTTP/2, and tools like Cornerstone.js allow customization of maximum concurrent requests for optimized performance."],["Utilizing web workers can enhance concurrency in JavaScript environments, potentially doubling a viewer's FPS by processing DICOM images and HTTP requests in separate threads."]]],[]]