three.MF.V3.Descriptors.HeatMap

 1class HeatMap:
 2
 3    """
 4     Heat map descriptor.
 5    """
 6    def __init__(self, count: int, min: float, max: float, median: float, mean: float, stddev: float, outlierDistance: float):
 7        # The of points included in the point-to-mesh statistics.
 8        self.count = count
 9        # The minimum point-to-mesh distance.
10        self.min = min
11        # The maximum point-to-mesh distance.
12        self.max = max
13        # The median point-to-mesh distance.
14        self.median = median
15        # The mean point-to-mesh distance.
16        self.mean = mean
17        # The standard deviation of the point-to-mesh distances.
18        self.stddev = stddev
19        # The point-to-mesh outlier distance.  Distances greater than this value are excluded from the statistics.
20        self.outlierDistance = outlierDistance
class HeatMap:
 2class HeatMap:
 3
 4    """
 5     Heat map descriptor.
 6    """
 7    def __init__(self, count: int, min: float, max: float, median: float, mean: float, stddev: float, outlierDistance: float):
 8        # The of points included in the point-to-mesh statistics.
 9        self.count = count
10        # The minimum point-to-mesh distance.
11        self.min = min
12        # The maximum point-to-mesh distance.
13        self.max = max
14        # The median point-to-mesh distance.
15        self.median = median
16        # The mean point-to-mesh distance.
17        self.mean = mean
18        # The standard deviation of the point-to-mesh distances.
19        self.stddev = stddev
20        # The point-to-mesh outlier distance.  Distances greater than this value are excluded from the statistics.
21        self.outlierDistance = outlierDistance

Heat map descriptor.

HeatMap( count: int, min: float, max: float, median: float, mean: float, stddev: float, outlierDistance: float)
 7    def __init__(self, count: int, min: float, max: float, median: float, mean: float, stddev: float, outlierDistance: float):
 8        # The of points included in the point-to-mesh statistics.
 9        self.count = count
10        # The minimum point-to-mesh distance.
11        self.min = min
12        # The maximum point-to-mesh distance.
13        self.max = max
14        # The median point-to-mesh distance.
15        self.median = median
16        # The mean point-to-mesh distance.
17        self.mean = mean
18        # The standard deviation of the point-to-mesh distances.
19        self.stddev = stddev
20        # The point-to-mesh outlier distance.  Distances greater than this value are excluded from the statistics.
21        self.outlierDistance = outlierDistance
count
min
max
median
mean
stddev
outlierDistance