edge-impulse-api 1.74.16 → 1.74.17
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.
|
@@ -9,6 +9,7 @@
|
|
|
9
9
|
* https://openapi-generator.tech
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
|
+
import { BoundingBoxWithScore } from './boundingBoxWithScore';
|
|
12
13
|
export declare class ModelPrediction {
|
|
13
14
|
'sampleId': number;
|
|
14
15
|
'startMs': number;
|
|
@@ -24,6 +25,10 @@ export declare class ModelPrediction {
|
|
|
24
25
|
* Only set for visual anomaly projects. 2D array of shape (n, n) with raw anomaly scores, where n varies based on the image input size and the specific visual anomaly algorithm used. The scores corresponds to each grid cell in the image\'s spatial matrix.
|
|
25
26
|
*/
|
|
26
27
|
'anomalyScores'?: Array<Array<number>>;
|
|
28
|
+
/**
|
|
29
|
+
* Only set for object detection projects. Coordinates are scaled 0..1, not absolute values.
|
|
30
|
+
*/
|
|
31
|
+
'boundingBoxes'?: Array<BoundingBoxWithScore>;
|
|
27
32
|
static discriminator: string | undefined;
|
|
28
33
|
static attributeTypeMap: Array<{
|
|
29
34
|
name: string;
|
|
@@ -59,6 +59,11 @@ ModelPrediction.attributeTypeMap = [
|
|
|
59
59
|
"name": "anomalyScores",
|
|
60
60
|
"baseName": "anomalyScores",
|
|
61
61
|
"type": "Array<Array<number>>"
|
|
62
|
+
},
|
|
63
|
+
{
|
|
64
|
+
"name": "boundingBoxes",
|
|
65
|
+
"baseName": "boundingBoxes",
|
|
66
|
+
"type": "Array<BoundingBoxWithScore>"
|
|
62
67
|
}
|
|
63
68
|
];
|
|
64
69
|
//# sourceMappingURL=modelPrediction.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"modelPrediction.js","sourceRoot":"","sources":["../../../../library/sdk/model/modelPrediction.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;;
|
|
1
|
+
{"version":3,"file":"modelPrediction.js","sourceRoot":"","sources":["../../../../library/sdk/model/modelPrediction.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;;AAIH,MAAa,eAAe;IAqExB,MAAM,CAAC,mBAAmB;QACtB,OAAO,eAAe,CAAC,gBAAgB,CAAC;IAC5C,CAAC;;AAvEL,0CAwEC;AApDU,6BAAa,GAAuB,SAAS,CAAC;AAE9C,gCAAgB,GAA0D;IAC7E;QACI,MAAM,EAAE,UAAU;QAClB,UAAU,EAAE,UAAU;QACtB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,SAAS;QACjB,UAAU,EAAE,SAAS;QACrB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,OAAO;QACf,UAAU,EAAE,OAAO;QACnB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,OAAO;QACf,UAAU,EAAE,OAAO;QACnB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,YAAY;QACpB,UAAU,EAAE,YAAY;QACxB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,mBAAmB;QAC3B,UAAU,EAAE,mBAAmB;QAC/B,MAAM,EAAE,SAAS;KACpB;IACD;QACI,MAAM,EAAE,SAAS;QACjB,UAAU,EAAE,SAAS;QACrB,MAAM,EAAE,QAAQ;KACnB;IACD;QACI,MAAM,EAAE,eAAe;QACvB,UAAU,EAAE,eAAe;QAC3B,MAAM,EAAE,sBAAsB;KACjC;IACD;QACI,MAAM,EAAE,eAAe;QACvB,UAAU,EAAE,eAAe;QAC3B,MAAM,EAAE,6BAA6B;KACxC;CAAK,CAAC"}
|