CanvasCommon.DensityClusteringModel.DensityClusteringModel C# (CSharp) 메소드

DensityClusteringModel() 공개 메소드

public DensityClusteringModel ( List segments, double coverageWeightingFactor, double knearestNeighbourCutoff, double centroidsCutoff ) : System
segments List
coverageWeightingFactor double
knearestNeighbourCutoff double
centroidsCutoff double
리턴 System
        public DensityClusteringModel(List<SegmentInfo> segments, double coverageWeightingFactor, double knearestNeighbourCutoff, double centroidsCutoff)
        {
            Segments = segments;
            _coverageWeightingFactor = coverageWeightingFactor;
            _knearestNeighbourCutoff = knearestNeighbourCutoff;
            CentroidsCutoff = centroidsCutoff;
        }