14 lines
304 B
C#
14 lines
304 B
C#
using OpenCvSharp;
|
|
|
|
namespace LindtLeerformPlugin.Models;
|
|
|
|
public class CellRegion
|
|
{
|
|
public int Index { get; set; }
|
|
public int Row { get; set; }
|
|
public int Col { get; set; }
|
|
public Rect BoundingBox { get; set; }
|
|
public Point Center { get; set; }
|
|
public int Radius { get; set; }
|
|
}
|