- enhancedcamera settings and region painter.

- Can send to the back end
This commit is contained in:
2025-12-01 14:36:25 +00:00
parent 6cb2e88b3b
commit ce79591de0
8 changed files with 139 additions and 21 deletions

View File

@@ -76,6 +76,7 @@ export type OutputDataResponse = {
export type PaintedCell = {
colour: string;
region: Region;
};
export type DispatcherConfig = {
@@ -164,3 +165,13 @@ export type DecodeReading = {
firstSeenTimeHumane: string;
lastSeenTimeHumane: string;
};
export type ColourData = {
id: string | number;
cells: number[][];
};
export type ColourDetectionPayload = {
cameraFeedID: "A" | "B" | "C";
regions: ColourData[];
};