image-js
Version:
Image processing and manipulation in JavaScript
9 lines • 378 B
TypeScript
import type { Mask } from '../Mask.js';
import type { ConvexHull } from './maskAnalysis.types.js';
/**
* Get the vertices of the convex Hull polygon of a mask.
* @param mask - Mask to process.
* @returns Array of the vertices of the convex Hull in clockwise order.
*/
export declare function getConvexHull(mask: Mask): ConvexHull;
//# sourceMappingURL=getConvexHull.d.ts.map