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 maximum values of each pixel from the stack.
* @param stack - Stack to process.
* @returns The maximum image.
*/
export declare function maxImage(stack: Stack): Image;
//# sourceMappingURL=maxImage.d.ts.map