Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 | /** * Retrieves the DICOM instance associated with a specific imageId * @param services - The OHIF services object * @param imageId - The image ID to find the instance for * @returns The DICOM instance object or undefined if not found */ export default function getInstanceByImageId(services: AppTypes.Services, imageId: string) { const activeDisplaySets = services.displaySetService.getActiveDisplaySets(); const displaySet = activeDisplaySets.find(displaySet => displaySet?.imageIds?.includes(imageId)); return displaySet?.instance; } |