plugin system docs

custom buttons for plugins
calibration functions for Leeform
This commit is contained in:
EugeneTes
2026-03-30 16:15:47 +02:00
parent a1838cafeb
commit 4bd117af47
76 changed files with 4521 additions and 59 deletions

View File

@@ -0,0 +1,10 @@
namespace LindtLeerformPlugin.Models;
public class CalibrationData
{
public double[] CameraMatrix { get; set; } = [];
public double[] DistCoeffs { get; set; } = [];
public double RmsError { get; set; }
public int ImageWidth { get; set; }
public int ImageHeight { get; set; }
}