image-js
Version:
Image processing and manipulation in JavaScript
9 lines • 331 B
TypeScript
import { Image } from '../../Image.js';
import type { Stack } from '../../Stack.js';
/**
* Returns a new image with the minimum values of each pixel from the stack.
* @param stack - Stack to process.
* @returns The minimum image.
*/
export declare function minImage(stack: Stack): Image;
//# sourceMappingURL=minImage.d.ts.map