| 123456789101112131415161718192021222324252627 |
- 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;
- }
- }
- }
|