dicom-microscopy-viewer-changed
Version:
Interactive web-based viewer for DICOM Microscopy Images
9 lines (8 loc) • 366 B
TypeScript
/**
* Generates a shaded relief image given elevation data. Uses a 3x3
* neighborhood for determining slope and aspect.
* @param {Array<ImageData>} inputs Array of input images.
* @param {Object} data Data added in the "beforeoperations" event.
* @return {ImageData} Output image.
*/
export function hillshade(inputs: Array<ImageData>, data: any): ImageData;