/** * Return a threshold for a histogram using Yen algorithm. * @param histogram - The image histogram. * @param total - Total number of pixels of the image. * @returns The threshold. */ export default function yen(histogram: Uint32Array, total: number): number; //# sourceMappingURL=yen.d.ts.map