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