←Select platform

Type Property

Summary
Gets or sets the flag that determines which initializing algorithm to use when choosing the initial centers for the output clusters.
Syntax
C#
Objective-C
C++/CLI
Java
Python
public KMeansCommandFlags Type { get; set; } 
@property (nonatomic, assign) LTKMeansCommandFlags type; 
public KMeansCommandFlags getType(); 
public void setType( 
   KMeansCommandFlags kMeansCommandFlags 
); 
public: 
property KMeansCommandFlags Type { 
   KMeansCommandFlags get(); 
   void set (    KMeansCommandFlags ); 
} 
Type # get and set (KMeansCommand) 

Property Value

One of the KMeansCommandFlags enumeration members.

Example
C#
using Leadtools; 
using Leadtools.Codecs; 
using Leadtools.ImageProcessing.Core; 
 
public void KMeansCommandExample() 
{ 
   RasterCodecs codecs = new RasterCodecs(); 
   codecs.ThrowExceptionsOnInvalidImages = true; 
 
   //Load an image 
   RasterImage image = codecs.Load(Path.Combine(LEAD_VARS.ImagesDir, "cannon.jpg")); 
 
   //Prepare the command 
   KMeansCommand command = new KMeansCommand(); 
 
   command.Clusters = 7; 
   command.Type = KMeansCommandFlags.KMeans_Random; 
 
   //Apply  
   command.Run(image); 
} 
 
static class LEAD_VARS 
{ 
   public const string ImagesDir = @"C:\LEADTOOLS22\Resources\Images"; 
} 
Requirements

Target Platforms

Help Version 22.0.2023.11.1
Products | Support | Contact Us | Intellectual Property Notices
© 1991-2023 LEAD Technologies, Inc. All Rights Reserved.

Leadtools.ImageProcessing.Core Assembly

Products | Support | Contact Us | Intellectual Property Notices
© 1991-2023 LEAD Technologies, Inc. All Rights Reserved.