| 12345678910111213141516171819202122232425262728 | 
							- using o0InfraredLocate.ZIM;
 
- using UnityEngine;
 
- using ZIM;
 
- namespace DbscanImplementation
 
- {
 
-     /// <summary>
 
-     /// Algorithm point definition
 
-     /// </summary>
 
-     /// <typeparam name="TF">Feature data contribute into algorithm</typeparam>
 
-     public class DbscanPoint<TF> : IPixel<TF>
 
-     {
 
-         public TF Feature { get; internal set; }
 
-         public int? ClusterId { get; internal set; }
 
-         public PointType? PointType { get; internal set; }
 
-         public TF Point => Feature;
 
-         public DbscanPoint(TF feature)
 
-         {
 
-             Feature = feature;
 
-             ClusterId = null;
 
-             PointType = null;
 
-         }
 
-     }
 
- }
 
 
  |