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