Interface RoiMap

interface RoiMap {
    data: Int32Array;
    height: number;
    nbNegative: number;
    nbPositive: number;
    width: number;
}

Properties

data: Int32Array

Data of the ROIs. Each ROI is associated with a negative or a positive value, depending if it derives from a zone made of zeros or ones in the original mask.

height: number

Height of the map.

nbNegative: number

Number of distinct negative values in the ROI map.

nbPositive: number

Number of distinct positive values in the ROI map.

width: number

Width of the map.