2026-07-01 05:41:17 +00:00
|
|
|
import type { SegmentMaskResult } from './maskSegmentation';
|
2026-07-02 02:07:32 +00:00
|
|
|
/** Placeholder value for non-wall pixels in wallSubLabels */
|
2026-07-01 05:41:17 +00:00
|
|
|
export declare const WALL_SUB_LABEL_NONE = 255;
|
|
|
|
|
/**
|
2026-07-02 02:07:32 +00:00
|
|
|
* After semantic segmentation, subdivide the wall region into wall-1, wall-2… by source image texture features
|
2026-07-01 05:41:17 +00:00
|
|
|
*/
|
|
|
|
|
export declare function splitWallRegionsByTexture(result: SegmentMaskResult, originBgr: Uint8Array, cols: number, rows: number, minArea: number): SegmentMaskResult;
|
|
|
|
|
export declare function isWallSubRegionName(name: string): boolean;
|