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