This repository was archived by the owner on Feb 12, 2023. It is now read-only.
forked from single9/darknet.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdarknet.d.ts
112 lines (112 loc) · 3.09 KB
/
darknet.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
/// <reference types="node" />
export declare class DarknetBase {
darknet: any;
meta: any;
net: any;
configFile: string;
weightFile: string;
names: string[];
isTrainMode: boolean;
/**
* A new instance of pjreddie's darknet. Create an instance as soon as possible in your app, because it takes a while to init.
* @param config
*/
constructor(config: IDarknetConfig);
private getArrayFromBuffer;
private bufferToDetections;
private _detectSync;
protected _detectAsync(net: any, meta: any, image: any, thresh?: number, hier_thresh?: number, nms?: number): Promise<Detection[]>;
/**
* Synchronously detect objects in an image.
* @param image the destination of the image to be detected
* @param config optional configuration (threshold, etc.)
*/
detect(image: string | IBufferImage, config?: IConfig): Detection[];
train(dataFile: string, weightsFile: string, cb: ITrainCallback): void;
/**
* Get a Darknet Image from path
* @param path
* @returns IMAGE
*/
getImageFromPath(path: string): any;
/**
* Get a Darknet Image async from path
* @param path
* @returns Promise<IMAGE>
*/
getImageFromPathAsync(path: String): Promise<{}>;
/**
* convert darknet image to rgb buffer
* @param {IMAGE} image
* @returns {Buffer}
*/
imageToRGBBuffer(image: any): Buffer;
private rgbToDarknet;
/**
* Transform an RGB buffer to a darknet encoded image
* @param buffer - rgb buffer
* @param w - width
* @param h - height
* @param c - channels
* @returns {IMAGE}
*/
RGBBufferToImage(buffer: Buffer, w: number, h: number, c: number): any;
/**
* Transform an RGB buffer to a darknet encoded image
* @param buffer - rgb buffer
* @param w - width
* @param h - height
* @param c - channels
* @returns {Promise<IMAGE>}
*/
RGBBufferToImageAsync(buffer: Buffer, w: number, h: number, c: number): Promise<any>;
/**
* Asynchronously detect objects in an image.
* @param image
* @param config
* @returns A promise
*/
detectAsync(image: string | IBufferImage, config?: IConfig): Promise<Detection[]>;
}
export interface IConfig {
thresh?: number;
hier_thresh?: number;
nms?: number;
}
export interface IBufferImage {
b: Buffer;
w: number;
h: number;
c: number;
}
export declare type IClasses = string[];
export interface IDarknetConfig {
weights: string;
config: string;
names?: string[];
namefile?: string;
train?: boolean;
}
export interface Detection {
name: string;
prob: number;
box: {
x: number;
y: number;
w: number;
h: number;
};
}
export interface ITrainCallbackReturs {
batch: number;
loss: number;
avg_loss: number;
curr_rate: number;
spend_time: number;
imgs: number;
}
export interface ITrainCallback {
(error: Error, result?: ITrainCallbackReturs): void;
}
export { Darknet } from './detector';
export { Darknet as DarknetExperimental } from './detector';