using o0InfraredLocate.ZIM;
using UnityEngine;
using ZIM;
namespace DbscanImplementation
{
///
/// Algorithm point definition
///
/// Feature data contribute into algorithm
public class DbscanPoint : IPixel
{
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;
}
}
}