image-js
Version:
Image processing and manipulation in JavaScript
11 lines • 339 B
TypeScript
import type { Image } from '../Image.js';
/**
* Find the min and max values of each channel of the image.
* @param image - Image to process.
* @returns An object with arrays of the min and max values.
*/
export declare function getMinMax(image: Image): {
min: number[];
max: number[];
};
//# sourceMappingURL=getMinMax.d.ts.map