image-js
Version:
Image processing and manipulation in JavaScript
9 lines • 325 B
TypeScript
import type { Mask } from '../Mask.js';
import type { Mbr } from './maskAnalysis.types.js';
/**
* Get the four corners of the minimum bounding rectangle of an ROI.
* @param mask - The ROI to process.
* @returns The array of corners.
*/
export declare function getMbr(mask: Mask): Mbr;
//# sourceMappingURL=getMbr.d.ts.map