File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change 17
17
18
18
import * as tf from '@tensorflow/tfjs-core' ;
19
19
20
- export type Vector2D = {
20
+ export declare type Vector2D = {
21
21
y : number ,
22
22
x : number
23
23
} ;
24
24
25
- export type Part = {
25
+ export declare type Part = {
26
26
heatmapX : number ,
27
27
heatmapY : number ,
28
28
id : number
29
29
} ;
30
30
31
- export type PartWithScore = {
31
+ export declare type PartWithScore = {
32
32
score : number ,
33
33
part : Part
34
34
} ;
35
35
36
- export type Keypoint = {
36
+ export declare type Keypoint = {
37
37
score : number ,
38
38
position : Vector2D ,
39
39
part : string
40
40
} ;
41
41
42
- export type Pose = {
42
+ export declare type Pose = {
43
43
keypoints : Keypoint [ ] ,
44
44
score : number ,
45
45
} ;
@@ -49,6 +49,6 @@ export type PosenetInput =
49
49
50
50
export type TensorBuffer3D = tf . TensorBuffer < tf . Rank . R3 > ;
51
51
52
- export interface Padding {
52
+ export declare interface Padding {
53
53
top : number , bottom : number , left : number , right : number
54
54
}
You can’t perform that action at this time.
0 commit comments