add C# interface module, closes #4

This commit is contained in:
2025-10-24 10:46:08 +02:00
parent a41cc5a312
commit 712a1f534a
5 changed files with 89 additions and 5 deletions

View File

@@ -0,0 +1,14 @@
from dopt_sensor_anomalies import detection
def sensor_anomalies_detection(
user_img_path: str,
pixels_per_metric_X: float,
pixels_per_metric_Y: float,
) -> None:
res = detection.pipeline(
user_img_path=user_img_path,
pixels_per_metric_X=pixels_per_metric_X,
pixels_per_metric_Y=pixels_per_metric_Y,
)
res.unwrap()