image-js
Version:
Image processing and manipulation in JavaScript
8 lines • 317 B
TypeScript
/**
* Return a threshold for a histogram using its entropy.
* @param histogram - The image histogram.
* @param total - Total number of pixels of the image.
* @returns The threshold.
*/
export default function renyiEntropy(histogram: Uint32Array, total: number): number;
//# sourceMappingURL=renyiEntropy.d.ts.map