UNPKG

@lunit/insight-viewer

Version:

Based on the cornerstone library, it provides several components for handling Dicom images

12 lines (11 loc) 396 B
interface GetHeatmapImageDataProps { canvas: HTMLCanvasElement | null; posMap: number[][]; threshold: number; } interface GetHeatmapImageDataReturn { heatmapData: ImageData | null; heatmapCanvas: HTMLCanvasElement | null; } export default function getHeatmapImageData({ canvas, posMap, threshold, }: GetHeatmapImageDataProps): GetHeatmapImageDataReturn; export {};