image-js
Version:
Image processing and manipulation in JavaScript
13 lines • 769 B
TypeScript
import type { Image } from '../../Image.js';
import type { Point } from '../../geometry/index.js';
import type { GetPatchIntensityMomentOptions } from './getPatchIntensityMoment.js';
/**
* Compute the intensity centroid of the circular patch in an image for each channel relatively to the center of the image.
* Original article: {@link https://doi.org/10.1006/cviu.1998.0719}.
* @see {@link https://en.wikipedia.org/wiki/Image_moment}
* @param image - Image to process.
* @param options - Patch intensity centroid options.
* @returns The intensity centroid of each channel of the image.
*/
export declare function getPatchIntensityCentroid(image: Image, options?: GetPatchIntensityMomentOptions): Point[];
//# sourceMappingURL=getPatchIntensityCentroid.d.ts.map