@blueyerobotics/protocol-definitions 3.2.0-28a7294b → 3.2.0-2bcfe527
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/control.d.ts +8 -0
- package/dist/control.js +75 -1
- package/dist/message_formats.d.ts +166 -5
- package/dist/message_formats.js +1244 -151
- package/dist/req_rep.d.ts +10 -0
- package/dist/req_rep.js +89 -1
- package/dist/telemetry.d.ts +16 -5
- package/dist/telemetry.js +69 -11
- package/package.json +1 -1
package/dist/control.d.ts
CHANGED
|
@@ -235,6 +235,12 @@ export interface CameraPanTiltZoomCtrl {
|
|
|
235
235
|
/** The desired pan, tilt, and zoom state. */
|
|
236
236
|
cameraPanTiltZoom: CameraPanTiltZoom | undefined;
|
|
237
237
|
}
|
|
238
|
+
/** Message sent to start streaming log entries to the client. */
|
|
239
|
+
export interface StartLogStreamingCtrl {
|
|
240
|
+
}
|
|
241
|
+
/** Message sent to stop streaming log entries to the client. */
|
|
242
|
+
export interface StopLogStreamingCtrl {
|
|
243
|
+
}
|
|
238
244
|
export declare const MotionInputCtrl: MessageFns<MotionInputCtrl>;
|
|
239
245
|
export declare const TiltVelocityCtrl: MessageFns<TiltVelocityCtrl>;
|
|
240
246
|
export declare const LightsCtrl: MessageFns<LightsCtrl>;
|
|
@@ -280,6 +286,8 @@ export declare const EndDiveCtrl: MessageFns<EndDiveCtrl>;
|
|
|
280
286
|
export declare const FormatRemovableStorageDeviceCtrl: MessageFns<FormatRemovableStorageDeviceCtrl>;
|
|
281
287
|
export declare const SetTurbidityFilterCtrl: MessageFns<SetTurbidityFilterCtrl>;
|
|
282
288
|
export declare const CameraPanTiltZoomCtrl: MessageFns<CameraPanTiltZoomCtrl>;
|
|
289
|
+
export declare const StartLogStreamingCtrl: MessageFns<StartLogStreamingCtrl>;
|
|
290
|
+
export declare const StopLogStreamingCtrl: MessageFns<StopLogStreamingCtrl>;
|
|
283
291
|
type Builtin = Date | Function | Uint8Array | string | number | boolean | undefined;
|
|
284
292
|
type DeepPartial<T> = T extends Builtin ? T : T extends globalThis.Array<infer U> ? globalThis.Array<DeepPartial<U>> : T extends ReadonlyArray<infer U> ? ReadonlyArray<DeepPartial<U>> : T extends {} ? {
|
|
285
293
|
[K in keyof T]?: DeepPartial<T[K]>;
|
package/dist/control.js
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
// protoc v3.21.12
|
|
6
6
|
// source: control.proto
|
|
7
7
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8
|
-
exports.CameraPanTiltZoomCtrl = exports.SetTurbidityFilterCtrl = exports.FormatRemovableStorageDeviceCtrl = exports.EndDiveCtrl = exports.StartDiveCtrl = exports.DeactivateMultibeamCtrl = exports.ActivateMultibeamCtrl = exports.SetMultibeamConfigCtrl = exports.SetAquaTrollConnectionStatusCtrl = exports.SetAquaTrollParameterUnitCtrl = exports.RestartGuestPortsCtrl = exports.ActivateGuestPortsCtrl = exports.DeactivateGuestPortsCtrl = exports.MultibeamServoCtrl = exports.GenericServoCtrl = exports.GripperCtrl = exports.SystemTimeCtrl = exports.PingerConfigurationCtrl = exports.WaterDensityCtrl = exports.TiltStabilizationCtrl = exports.CalibrateDvlGyroCtrl = exports.ResetOdometerCtrl = exports.ResetPositionCtrl = exports.ClearMissionCtrl = exports.PauseMissionCtrl = exports.RunMissionCtrl = exports.AutoPilotHeaveCtrl = exports.AutoPilotSurgeYawCtrl = exports.WeatherVaningCtrl = exports.StationKeepingCtrl = exports.AutoAltitudeCtrl = exports.AutoDepthCtrl = exports.AutoHeadingCtrl = exports.FinishCalibrationCtrl = exports.CancelCalibrationCtrl = exports.StartCalibrationCtrl = exports.TakePictureCtrl = exports.RecordCtrl = exports.WatchdogCtrl = exports.PilotGPSPositionCtrl = exports.LaserCtrl = exports.GuestportLightsCtrl = exports.LightsCtrl = exports.TiltVelocityCtrl = exports.MotionInputCtrl = void 0;
|
|
8
|
+
exports.StopLogStreamingCtrl = exports.StartLogStreamingCtrl = exports.CameraPanTiltZoomCtrl = exports.SetTurbidityFilterCtrl = exports.FormatRemovableStorageDeviceCtrl = exports.EndDiveCtrl = exports.StartDiveCtrl = exports.DeactivateMultibeamCtrl = exports.ActivateMultibeamCtrl = exports.SetMultibeamConfigCtrl = exports.SetAquaTrollConnectionStatusCtrl = exports.SetAquaTrollParameterUnitCtrl = exports.RestartGuestPortsCtrl = exports.ActivateGuestPortsCtrl = exports.DeactivateGuestPortsCtrl = exports.MultibeamServoCtrl = exports.GenericServoCtrl = exports.GripperCtrl = exports.SystemTimeCtrl = exports.PingerConfigurationCtrl = exports.WaterDensityCtrl = exports.TiltStabilizationCtrl = exports.CalibrateDvlGyroCtrl = exports.ResetOdometerCtrl = exports.ResetPositionCtrl = exports.ClearMissionCtrl = exports.PauseMissionCtrl = exports.RunMissionCtrl = exports.AutoPilotHeaveCtrl = exports.AutoPilotSurgeYawCtrl = exports.WeatherVaningCtrl = exports.StationKeepingCtrl = exports.AutoAltitudeCtrl = exports.AutoDepthCtrl = exports.AutoHeadingCtrl = exports.FinishCalibrationCtrl = exports.CancelCalibrationCtrl = exports.StartCalibrationCtrl = exports.TakePictureCtrl = exports.RecordCtrl = exports.WatchdogCtrl = exports.PilotGPSPositionCtrl = exports.LaserCtrl = exports.GuestportLightsCtrl = exports.LightsCtrl = exports.TiltVelocityCtrl = exports.MotionInputCtrl = void 0;
|
|
9
9
|
/* eslint-disable */
|
|
10
10
|
const wire_1 = require("@bufbuild/protobuf/wire");
|
|
11
11
|
const aquatroll_1 = require("./aquatroll");
|
|
@@ -2237,6 +2237,80 @@ exports.CameraPanTiltZoomCtrl = {
|
|
|
2237
2237
|
return message;
|
|
2238
2238
|
},
|
|
2239
2239
|
};
|
|
2240
|
+
function createBaseStartLogStreamingCtrl() {
|
|
2241
|
+
return {};
|
|
2242
|
+
}
|
|
2243
|
+
exports.StartLogStreamingCtrl = {
|
|
2244
|
+
encode(_, writer = new wire_1.BinaryWriter()) {
|
|
2245
|
+
return writer;
|
|
2246
|
+
},
|
|
2247
|
+
decode(input, length) {
|
|
2248
|
+
const reader = input instanceof wire_1.BinaryReader ? input : new wire_1.BinaryReader(input);
|
|
2249
|
+
const end = length === undefined ? reader.len : reader.pos + length;
|
|
2250
|
+
const message = createBaseStartLogStreamingCtrl();
|
|
2251
|
+
while (reader.pos < end) {
|
|
2252
|
+
const tag = reader.uint32();
|
|
2253
|
+
switch (tag >>> 3) {
|
|
2254
|
+
}
|
|
2255
|
+
if ((tag & 7) === 4 || tag === 0) {
|
|
2256
|
+
break;
|
|
2257
|
+
}
|
|
2258
|
+
reader.skip(tag & 7);
|
|
2259
|
+
}
|
|
2260
|
+
return message;
|
|
2261
|
+
},
|
|
2262
|
+
fromJSON(_) {
|
|
2263
|
+
return {};
|
|
2264
|
+
},
|
|
2265
|
+
toJSON(_) {
|
|
2266
|
+
const obj = {};
|
|
2267
|
+
return obj;
|
|
2268
|
+
},
|
|
2269
|
+
create(base) {
|
|
2270
|
+
return exports.StartLogStreamingCtrl.fromPartial(base ?? {});
|
|
2271
|
+
},
|
|
2272
|
+
fromPartial(_) {
|
|
2273
|
+
const message = createBaseStartLogStreamingCtrl();
|
|
2274
|
+
return message;
|
|
2275
|
+
},
|
|
2276
|
+
};
|
|
2277
|
+
function createBaseStopLogStreamingCtrl() {
|
|
2278
|
+
return {};
|
|
2279
|
+
}
|
|
2280
|
+
exports.StopLogStreamingCtrl = {
|
|
2281
|
+
encode(_, writer = new wire_1.BinaryWriter()) {
|
|
2282
|
+
return writer;
|
|
2283
|
+
},
|
|
2284
|
+
decode(input, length) {
|
|
2285
|
+
const reader = input instanceof wire_1.BinaryReader ? input : new wire_1.BinaryReader(input);
|
|
2286
|
+
const end = length === undefined ? reader.len : reader.pos + length;
|
|
2287
|
+
const message = createBaseStopLogStreamingCtrl();
|
|
2288
|
+
while (reader.pos < end) {
|
|
2289
|
+
const tag = reader.uint32();
|
|
2290
|
+
switch (tag >>> 3) {
|
|
2291
|
+
}
|
|
2292
|
+
if ((tag & 7) === 4 || tag === 0) {
|
|
2293
|
+
break;
|
|
2294
|
+
}
|
|
2295
|
+
reader.skip(tag & 7);
|
|
2296
|
+
}
|
|
2297
|
+
return message;
|
|
2298
|
+
},
|
|
2299
|
+
fromJSON(_) {
|
|
2300
|
+
return {};
|
|
2301
|
+
},
|
|
2302
|
+
toJSON(_) {
|
|
2303
|
+
const obj = {};
|
|
2304
|
+
return obj;
|
|
2305
|
+
},
|
|
2306
|
+
create(base) {
|
|
2307
|
+
return exports.StopLogStreamingCtrl.fromPartial(base ?? {});
|
|
2308
|
+
},
|
|
2309
|
+
fromPartial(_) {
|
|
2310
|
+
const message = createBaseStopLogStreamingCtrl();
|
|
2311
|
+
return message;
|
|
2312
|
+
},
|
|
2313
|
+
};
|
|
2240
2314
|
const gt = (() => {
|
|
2241
2315
|
if (typeof globalThis !== "undefined") {
|
|
2242
2316
|
return globalThis;
|
|
@@ -268,6 +268,18 @@ export declare enum StreamingProtocol {
|
|
|
268
268
|
}
|
|
269
269
|
export declare function streamingProtocolFromJSON(object: any): StreamingProtocol;
|
|
270
270
|
export declare function streamingProtocolToJSON(object: StreamingProtocol): string;
|
|
271
|
+
/** Recording video codec. */
|
|
272
|
+
export declare enum RecordingCodec {
|
|
273
|
+
/** RECORDING_CODEC_UNSPECIFIED - Use platform default (H.264). */
|
|
274
|
+
RECORDING_CODEC_UNSPECIFIED = 0,
|
|
275
|
+
/** RECORDING_CODEC_H264 - H.264/AVC codec. Wider compatibility with players/editors. */
|
|
276
|
+
RECORDING_CODEC_H264 = 1,
|
|
277
|
+
/** RECORDING_CODEC_H265 - H.265/HEVC codec. Better compression, limited compatibility. Ultra only. */
|
|
278
|
+
RECORDING_CODEC_H265 = 2,
|
|
279
|
+
UNRECOGNIZED = -1
|
|
280
|
+
}
|
|
281
|
+
export declare function recordingCodecFromJSON(object: any): RecordingCodec;
|
|
282
|
+
export declare function recordingCodecToJSON(object: RecordingCodec): string;
|
|
271
283
|
/** Available temperature units. */
|
|
272
284
|
export declare enum TemperatureUnit {
|
|
273
285
|
/** TEMPERATURE_UNIT_UNSPECIFIED - Temperature unit not specified. */
|
|
@@ -334,6 +346,8 @@ export declare enum FontSize {
|
|
|
334
346
|
FONT_SIZE_PX35 = 5,
|
|
335
347
|
/** FONT_SIZE_PX40 - 40 px. */
|
|
336
348
|
FONT_SIZE_PX40 = 6,
|
|
349
|
+
/** FONT_SIZE_PX50 - 50 px. */
|
|
350
|
+
FONT_SIZE_PX50 = 7,
|
|
337
351
|
UNRECOGNIZED = -1
|
|
338
352
|
}
|
|
339
353
|
export declare function fontSizeFromJSON(object: any): FontSize;
|
|
@@ -436,6 +450,8 @@ export declare enum GuestPortDeviceID {
|
|
|
436
450
|
GUEST_PORT_DEVICE_ID_BLUEYE_MULTIBEAM_SERVO_V2 = 46,
|
|
437
451
|
/** GUEST_PORT_DEVICE_ID_CERULEAN_OMNISCAN_450_COMPACT - Cerulean Omniscan 450 Compact. */
|
|
438
452
|
GUEST_PORT_DEVICE_ID_CERULEAN_OMNISCAN_450_COMPACT = 47,
|
|
453
|
+
/** GUEST_PORT_DEVICE_ID_BLUEYE_SCALING_LASER - Blueye Scaling Laser. */
|
|
454
|
+
GUEST_PORT_DEVICE_ID_BLUEYE_SCALING_LASER = 48,
|
|
439
455
|
UNRECOGNIZED = -1
|
|
440
456
|
}
|
|
441
457
|
export declare function guestPortDeviceIDFromJSON(object: any): GuestPortDeviceID;
|
|
@@ -521,6 +537,18 @@ export declare enum MultibeamFrequencyMode {
|
|
|
521
537
|
}
|
|
522
538
|
export declare function multibeamFrequencyModeFromJSON(object: any): MultibeamFrequencyMode;
|
|
523
539
|
export declare function multibeamFrequencyModeToJSON(object: MultibeamFrequencyMode): string;
|
|
540
|
+
/** Thermal zone identifiers. */
|
|
541
|
+
export declare enum ThermalZoneId {
|
|
542
|
+
/** THERMAL_ZONE_ID_UNSPECIFIED - Unspecified thermal zone. */
|
|
543
|
+
THERMAL_ZONE_ID_UNSPECIFIED = 0,
|
|
544
|
+
/** THERMAL_ZONE_ID_TJ - Junction temperature (Tj). */
|
|
545
|
+
THERMAL_ZONE_ID_TJ = 1,
|
|
546
|
+
/** THERMAL_ZONE_ID_CANISTER - Canister temperature. */
|
|
547
|
+
THERMAL_ZONE_ID_CANISTER = 2,
|
|
548
|
+
UNRECOGNIZED = -1
|
|
549
|
+
}
|
|
550
|
+
export declare function thermalZoneIdFromJSON(object: any): ThermalZoneId;
|
|
551
|
+
export declare function thermalZoneIdToJSON(object: ThermalZoneId): string;
|
|
524
552
|
/**
|
|
525
553
|
* Wrapper message for each entry in the drone telemetry logfile.
|
|
526
554
|
*
|
|
@@ -840,7 +868,7 @@ export interface WaterTemperature {
|
|
|
840
868
|
/** Water temperature (°C). */
|
|
841
869
|
value: number;
|
|
842
870
|
}
|
|
843
|
-
/** CPU temperature. */
|
|
871
|
+
/** CPU temperature (deprecated, use SystemPerformanceInfo.thermal_zones instead). */
|
|
844
872
|
export interface CPUTemperature {
|
|
845
873
|
/** CPU temperature (°C). */
|
|
846
874
|
value: number;
|
|
@@ -1590,6 +1618,13 @@ export interface CameraParameters {
|
|
|
1590
1618
|
* The Blueye App allows users to set values between 500 and 1460.
|
|
1591
1619
|
*/
|
|
1592
1620
|
mtuSize: number;
|
|
1621
|
+
/** Recording video codec. If unset, uses platform default. */
|
|
1622
|
+
recordingCodec: RecordingCodec;
|
|
1623
|
+
/**
|
|
1624
|
+
* Recording bitrate in bits/sec. If 0 or unset, a default is computed based
|
|
1625
|
+
* on resolution, framerate, and encoding. Set explicitly to override.
|
|
1626
|
+
*/
|
|
1627
|
+
recordingBitrate: number;
|
|
1593
1628
|
}
|
|
1594
1629
|
/**
|
|
1595
1630
|
* Overlay parameters.
|
|
@@ -1955,7 +1990,7 @@ export interface PersistentStorageSettings {
|
|
|
1955
1990
|
accCalibration: boolean;
|
|
1956
1991
|
}
|
|
1957
1992
|
/**
|
|
1958
|
-
* CPU information.
|
|
1993
|
+
* CPU information (deprecated, use SystemPerformanceInfo instead).
|
|
1959
1994
|
*
|
|
1960
1995
|
* Contains information about the CPU load and memory usage of the drone.
|
|
1961
1996
|
*/
|
|
@@ -1971,6 +2006,119 @@ export interface CPUInfo {
|
|
|
1971
2006
|
/** Communication queue load (0..1). */
|
|
1972
2007
|
commQueueLoad: number;
|
|
1973
2008
|
}
|
|
2009
|
+
/** Per-core CPU utilization. */
|
|
2010
|
+
export interface CpuCoreLoad {
|
|
2011
|
+
/** Core index (0-based). */
|
|
2012
|
+
coreIndex: number;
|
|
2013
|
+
/** Core load (0..1). */
|
|
2014
|
+
load: number;
|
|
2015
|
+
/** Current clock frequency (MHz). */
|
|
2016
|
+
frequencyMhz: number;
|
|
2017
|
+
}
|
|
2018
|
+
/** GPU utilization and status. */
|
|
2019
|
+
export interface GpuInfo {
|
|
2020
|
+
/** GPU load (0..1). */
|
|
2021
|
+
load: number;
|
|
2022
|
+
/** Current GPU clock frequency (MHz). */
|
|
2023
|
+
frequencyMhz: number;
|
|
2024
|
+
}
|
|
2025
|
+
/**
|
|
2026
|
+
* Deep Learning Accelerator (DLA) utilization.
|
|
2027
|
+
*
|
|
2028
|
+
* Jetson Orin NX has two DLA engines used for inference offload.
|
|
2029
|
+
*/
|
|
2030
|
+
export interface DlaInfo {
|
|
2031
|
+
/** DLA engine index (0-based). */
|
|
2032
|
+
engineIndex: number;
|
|
2033
|
+
/** DLA engine load (0..1). */
|
|
2034
|
+
load: number;
|
|
2035
|
+
/** Core clock frequency (MHz). 0 when disabled. */
|
|
2036
|
+
frequencyMhz: number;
|
|
2037
|
+
/** True when the DLA engine is actively processing. */
|
|
2038
|
+
enabled: boolean;
|
|
2039
|
+
/** Falcon microcontroller clock frequency (MHz). 0 when disabled. */
|
|
2040
|
+
falconFrequencyMhz: number;
|
|
2041
|
+
}
|
|
2042
|
+
/** System memory information. */
|
|
2043
|
+
export interface MemoryInfo {
|
|
2044
|
+
/** Total RAM (bytes). */
|
|
2045
|
+
totalBytes: number;
|
|
2046
|
+
/** Used RAM (bytes). */
|
|
2047
|
+
usedBytes: number;
|
|
2048
|
+
/** Cached RAM (bytes). */
|
|
2049
|
+
cachedBytes: number;
|
|
2050
|
+
/** Memory bus utilization (0..1). i.MX only. */
|
|
2051
|
+
busLoad: number;
|
|
2052
|
+
}
|
|
2053
|
+
/** Thermal zone reading. */
|
|
2054
|
+
export interface ThermalZone {
|
|
2055
|
+
/** Thermal zone identifier. */
|
|
2056
|
+
zone: ThermalZoneId;
|
|
2057
|
+
/** Temperature (°C). */
|
|
2058
|
+
temperature: number;
|
|
2059
|
+
}
|
|
2060
|
+
/** Video codec engine status. */
|
|
2061
|
+
export interface VideoCodecInfo {
|
|
2062
|
+
/** Jetson only (NVENC/NVDEC/NVJPG/VIC devfreq). */
|
|
2063
|
+
encoderActive: boolean;
|
|
2064
|
+
/** Video encoder clock frequency (MHz). */
|
|
2065
|
+
encoderFrequencyMhz: number;
|
|
2066
|
+
/** Video decoder (NVDEC) is active. */
|
|
2067
|
+
decoderActive: boolean;
|
|
2068
|
+
/** Video decoder clock frequency (MHz). */
|
|
2069
|
+
decoderFrequencyMhz: number;
|
|
2070
|
+
/** JPEG engine (NVJPG) is active. */
|
|
2071
|
+
nvjpgActive: boolean;
|
|
2072
|
+
/** JPEG engine clock frequency (MHz). */
|
|
2073
|
+
nvjpgFrequencyMhz: number;
|
|
2074
|
+
/** Video Image Compositor (VIC) is active. */
|
|
2075
|
+
vicActive: boolean;
|
|
2076
|
+
/** VIC clock frequency (MHz). */
|
|
2077
|
+
vicFrequencyMhz: number;
|
|
2078
|
+
/** i.MX only (CODA VPU). */
|
|
2079
|
+
vpuActive: boolean;
|
|
2080
|
+
/** VPU AXI clock frequency (MHz). */
|
|
2081
|
+
vpuFrequencyMhz: number;
|
|
2082
|
+
/** Cumulative VPU_CODEC_IRQ count. */
|
|
2083
|
+
vpuCodecIrqCount: number;
|
|
2084
|
+
/** Cumulative VPU_JPG_IRQ count. */
|
|
2085
|
+
vpuJpgIrqCount: number;
|
|
2086
|
+
}
|
|
2087
|
+
/**
|
|
2088
|
+
* System performance information.
|
|
2089
|
+
*
|
|
2090
|
+
* Comprehensive performance metrics for the drone's compute platform.
|
|
2091
|
+
* Covers CPU, GPU, DLA, memory, thermals, and video codec utilization.
|
|
2092
|
+
* Fields not applicable to a platform are left at their zero/empty defaults.
|
|
2093
|
+
*/
|
|
2094
|
+
export interface SystemPerformanceInfo {
|
|
2095
|
+
/** Per-core CPU utilization. */
|
|
2096
|
+
cpuCores: CpuCoreLoad[];
|
|
2097
|
+
/** Mean CPU utilization across all cores (0..1). */
|
|
2098
|
+
cpuUtilization: number;
|
|
2099
|
+
/** GPU utilization. */
|
|
2100
|
+
gpu: GpuInfo | undefined;
|
|
2101
|
+
/** DLA engine utilization (Jetson only). */
|
|
2102
|
+
dlaEngines: DlaInfo[];
|
|
2103
|
+
/** RAM usage. */
|
|
2104
|
+
memory: MemoryInfo | undefined;
|
|
2105
|
+
/** All thermal zone readings. */
|
|
2106
|
+
thermalZones: ThermalZone[];
|
|
2107
|
+
/** Video encoder/decoder status. */
|
|
2108
|
+
videoCodec: VideoCodecInfo | undefined;
|
|
2109
|
+
/** Main queue load (0..1). */
|
|
2110
|
+
mainQueueLoad: number;
|
|
2111
|
+
/** Guestport queue load (0..1). */
|
|
2112
|
+
guestportQueueLoad: number;
|
|
2113
|
+
/** Communication queue load (0..1). */
|
|
2114
|
+
commQueueLoad: number;
|
|
2115
|
+
/** Camera queue load (0..1). */
|
|
2116
|
+
cameraQueueLoad: number;
|
|
2117
|
+
/** Overlay queue load (0..1). */
|
|
2118
|
+
overlayQueueLoad: number;
|
|
2119
|
+
/** Position observer queue load (0..1). */
|
|
2120
|
+
positionObserverQueueLoad: number;
|
|
2121
|
+
}
|
|
1974
2122
|
/**
|
|
1975
2123
|
* Surface Unit battery information.
|
|
1976
2124
|
*
|
|
@@ -2031,12 +2179,18 @@ export interface ObjectDetection {
|
|
|
2031
2179
|
/** Unique ID for tracking the same object across frames. */
|
|
2032
2180
|
trackingId: number;
|
|
2033
2181
|
}
|
|
2034
|
-
/** A list of object detections from a single video frame. */
|
|
2035
|
-
export interface
|
|
2182
|
+
/** A list of object detections from a single model for a single video frame. */
|
|
2183
|
+
export interface ModelDetections {
|
|
2036
2184
|
/** List of detections in the frame. */
|
|
2037
2185
|
detections: ObjectDetection[];
|
|
2038
2186
|
/** Which camera the detections are from. */
|
|
2039
2187
|
camera: Camera;
|
|
2188
|
+
/** Width of the source image (px). */
|
|
2189
|
+
imageWidth: number;
|
|
2190
|
+
/** Height of the source image (px). */
|
|
2191
|
+
imageHeight: number;
|
|
2192
|
+
/** Name of the computer vision model that produced the detections. */
|
|
2193
|
+
modelName: string;
|
|
2040
2194
|
}
|
|
2041
2195
|
/** Generic filter settings. */
|
|
2042
2196
|
export interface FilterMessage {
|
|
@@ -2159,11 +2313,18 @@ export declare const MultibeamFrameOffset: MessageFns<MultibeamFrameOffset>;
|
|
|
2159
2313
|
export declare const MutltibeamRecordingIndex: MessageFns<MutltibeamRecordingIndex>;
|
|
2160
2314
|
export declare const PersistentStorageSettings: MessageFns<PersistentStorageSettings>;
|
|
2161
2315
|
export declare const CPUInfo: MessageFns<CPUInfo>;
|
|
2316
|
+
export declare const CpuCoreLoad: MessageFns<CpuCoreLoad>;
|
|
2317
|
+
export declare const GpuInfo: MessageFns<GpuInfo>;
|
|
2318
|
+
export declare const DlaInfo: MessageFns<DlaInfo>;
|
|
2319
|
+
export declare const MemoryInfo: MessageFns<MemoryInfo>;
|
|
2320
|
+
export declare const ThermalZone: MessageFns<ThermalZone>;
|
|
2321
|
+
export declare const VideoCodecInfo: MessageFns<VideoCodecInfo>;
|
|
2322
|
+
export declare const SystemPerformanceInfo: MessageFns<SystemPerformanceInfo>;
|
|
2162
2323
|
export declare const SurfaceUnitBatteryInfo: MessageFns<SurfaceUnitBatteryInfo>;
|
|
2163
2324
|
export declare const SurfaceUnitVersionInfo: MessageFns<SurfaceUnitVersionInfo>;
|
|
2164
2325
|
export declare const BoundingBox: MessageFns<BoundingBox>;
|
|
2165
2326
|
export declare const ObjectDetection: MessageFns<ObjectDetection>;
|
|
2166
|
-
export declare const
|
|
2327
|
+
export declare const ModelDetections: MessageFns<ModelDetections>;
|
|
2167
2328
|
export declare const FilterMessage: MessageFns<FilterMessage>;
|
|
2168
2329
|
export declare const CameraPanTiltZoom: MessageFns<CameraPanTiltZoom>;
|
|
2169
2330
|
export declare const OperatorInfo: MessageFns<OperatorInfo>;
|