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 13 14 15 16 17 18 19 20 21 22 23 24 | /** * Creates a map that associates each imageId with a set of segmentation imageIds. * Note that this function assumes that the imageIds and segmentationImageIds arrays * are the same length and same order. * * @param imageIdsArray - An array of imageIds. * @param segmentationImageIds - An array of segmentation imageIds. * @returns A map that maps each imageId to a set of segmentation imageIds. */ function createImageIdReferenceMap( imageIdsArray: string[], segmentationImageIds: string[] ): Map<string, string> { const imageIdReferenceMap = new Map<string, string>( imageIdsArray.map((imageId, index) => { return [imageId, segmentationImageIds[index]]; }) ); return imageIdReferenceMap; } export { createImageIdReferenceMap }; |