three.MF.V3.Settings.HeatMap

 1from typing import List
 2
 3
 4class HeatMap:
 5
 6    """
 7     Scan heat map settings.
 8    """
 9    def __init__(self, sources: List[int] = None, targets: List[int] = None, outlierDistance: float = None):
10        # Set of source group indexes.
11        self.sources = sources
12        # Set of target group indexes.
13        self.targets = targets
14        # Threshold for which distances are excluded from the statistics in the descriptor.
15        self.outlierDistance = outlierDistance
class HeatMap:
 5class HeatMap:
 6
 7    """
 8     Scan heat map settings.
 9    """
10    def __init__(self, sources: List[int] = None, targets: List[int] = None, outlierDistance: float = None):
11        # Set of source group indexes.
12        self.sources = sources
13        # Set of target group indexes.
14        self.targets = targets
15        # Threshold for which distances are excluded from the statistics in the descriptor.
16        self.outlierDistance = outlierDistance

Scan heat map settings.

HeatMap( sources: List[int] = None, targets: List[int] = None, outlierDistance: float = None)
10    def __init__(self, sources: List[int] = None, targets: List[int] = None, outlierDistance: float = None):
11        # Set of source group indexes.
12        self.sources = sources
13        # Set of target group indexes.
14        self.targets = targets
15        # Threshold for which distances are excluded from the statistics in the descriptor.
16        self.outlierDistance = outlierDistance
sources
targets
outlierDistance