@pexip/media-processor 20.3.5 → 21.0.0
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/CHANGELOG.md +39 -0
- package/api-docs/README.mdx +33 -6
- package/api-docs/functions/createBenchmark.mdx +17 -5
- package/api-docs/functions/createWindowedStats.mdx +23 -0
- package/api-docs/functions/iou.mdx +19 -0
- package/api-docs/functions/labelComponents.mdx +20 -0
- package/api-docs/functions/nearestPowerOfTwo.mdx +21 -0
- package/api-docs/functions/playVideo.mdx +16 -0
- package/api-docs/functions/scoreComponent.mdx +22 -0
- package/api-docs/functions/setVideoElementSrc.mdx +14 -0
- package/api-docs/interfaces/Benchmark.mdx +12 -0
- package/api-docs/interfaces/RendererOptions.mdx +26 -9
- package/api-docs/interfaces/SegmentationParams.mdx +29 -12
- package/api-docs/interfaces/SelectionOptions.mdx +15 -0
- package/api-docs/interfaces/Stats.mdx +11 -0
- package/api-docs/interfaces/Weights.mdx +12 -0
- package/api-docs/type-aliases/OptionalKeys.mdx +10 -0
- package/api-docs/variables/BACKGROUND_THRESHOLD.mdx +3 -0
- package/api-docs/variables/DOWN_SAMPLE_FACTOR.mdx +3 -0
- package/api-docs/variables/EDGE_BLUR_AMOUNT.mdx +1 -1
- package/api-docs/variables/EXCLUDE_BYSTANDERS.mdx +3 -0
- package/api-docs/variables/FOREGROUND_THRESHOLD.mdx +1 -1
- package/api-docs/variables/LIGHT_WRAP_BLUR_AMOUNT.mdx +3 -0
- package/api-docs/variables/LIGHT_WRAP_EDGE_BAND.mdx +3 -0
- package/api-docs/variables/LIGHT_WRAP_INTENSITY.mdx +3 -0
- package/api-docs/variables/LIGHT_WRAP_TIGHTNESS.mdx +3 -0
- package/api-docs/variables/MASK_COMBINE_RATIO.mdx +1 -1
- package/api-docs/variables/MORPH_DILATE_RADIUS_PX.mdx +3 -0
- package/api-docs/variables/MORPH_ERODE_RADIUS_PX.mdx +3 -0
- package/api-docs/variables/MORPH_PASS.mdx +3 -0
- package/api-docs/variables/PERSON_CENTER.mdx +3 -0
- package/api-docs/variables/SIGMA_RANGE.mdx +3 -0
- package/api-docs/variables/SIGMA_SPACE.mdx +3 -0
- package/api-docs/variables/STRONG_EDGE_BLUR_AMOUNT.mdx +3 -0
- package/api-docs/variables/getCanvasRenderingContext2D.mdx +14 -0
- package/api-docs/variables/getImageSize.mdx +13 -0
- package/dist/common/backends/webgl/binaryMask.d.ts +8 -0
- package/dist/common/backends/webgl/binaryMask.js +95 -0
- package/dist/common/backends/webgl/blender.d.ts +2 -1
- package/dist/common/backends/webgl/blender.js +18 -15
- package/dist/common/backends/webgl/blur.d.ts +1 -1
- package/dist/common/backends/webgl/blur.js +23 -16
- package/dist/common/backends/webgl/canvas.js +9 -4
- package/dist/common/backends/webgl/diffAbsMask.d.ts +10 -0
- package/dist/common/backends/webgl/diffAbsMask.js +103 -0
- package/dist/common/backends/webgl/geodesicReconstruction.d.ts +13 -0
- package/dist/common/backends/webgl/geodesicReconstruction.js +176 -0
- package/dist/common/backends/webgl/jointBilateralFilter.d.ts +12 -0
- package/dist/common/backends/webgl/jointBilateralFilter.js +108 -0
- package/dist/common/backends/webgl/morphErode.d.ts +13 -0
- package/dist/common/backends/webgl/morphErode.js +121 -0
- package/dist/common/backends/webgl/renderer.js +194 -34
- package/dist/common/backends/webgl/replace.d.ts +17 -0
- package/dist/common/backends/webgl/replace.js +126 -0
- package/dist/common/backends/webgl/selectComponent.d.ts +15 -0
- package/dist/common/backends/webgl/selectComponent.js +102 -0
- package/dist/common/backends/webgl/smoothingMask.d.ts +3 -3
- package/dist/common/backends/webgl/smoothingMask.js +22 -21
- package/dist/common/backends/webgl/tentBlur.d.ts +9 -0
- package/dist/common/backends/webgl/tentBlur.js +118 -0
- package/dist/common/backends/webgl/texture.d.ts +1 -1
- package/dist/common/backends/webgl/texture.js +19 -17
- package/dist/common/backends/webgl/textureToTexture.d.ts +1 -1
- package/dist/common/backends/webgl/textureToTexture.js +19 -16
- package/dist/common/backends/webgl/webglUtils.d.ts +7 -1
- package/dist/common/backends/webgl/webglUtils.js +64 -6
- package/dist/common/backends/webgpu/blender.d.ts +6 -1
- package/dist/common/backends/webgpu/blender.js +96 -51
- package/dist/common/backends/webgpu/constants.js +1 -1
- package/dist/common/backends/webgpu/dualFilterBlur.d.ts +2 -3
- package/dist/common/backends/webgpu/dualFilterBlur.js +146 -140
- package/dist/common/backends/webgpu/jointBilateralFilter.d.ts +7 -0
- package/dist/common/backends/webgpu/jointBilateralFilter.js +162 -0
- package/dist/common/backends/webgpu/renderer.js +211 -39
- package/dist/common/backends/webgpu/replace.d.ts +11 -0
- package/dist/common/backends/webgpu/replace.js +175 -0
- package/dist/common/backends/webgpu/resize.d.ts +4 -0
- package/dist/common/backends/webgpu/resize.js +76 -0
- package/dist/common/backends/webgpu/smoothingMask.d.ts +2 -2
- package/dist/common/backends/webgpu/smoothingMask.js +74 -40
- package/dist/common/backends/webgpu/tentBlur.d.ts +5 -0
- package/dist/common/backends/webgpu/tentBlur.js +131 -0
- package/dist/common/backends/webgpu/texture.d.ts +2 -2
- package/dist/common/backends/webgpu/texture.js +24 -19
- package/dist/common/backends/webgpu/textureToTexture.d.ts +1 -1
- package/dist/common/backends/webgpu/textureToTexture.js +28 -15
- package/dist/common/backends/webgpu/types.d.ts +2 -0
- package/dist/common/backends/webgpu/webgpuUtils.d.ts +24 -4
- package/dist/common/backends/webgpu/webgpuUtils.js +60 -11
- package/dist/common/constants.d.ts +19 -5
- package/dist/common/constants.js +19 -5
- package/dist/common/index.d.ts +1 -0
- package/dist/common/index.js +1 -0
- package/dist/common/tsconfig.tsbuildinfo +1 -1
- package/dist/common/types/render.d.ts +142 -13
- package/dist/common/types/utils.d.ts +21 -0
- package/dist/common/utils.d.ts +16 -0
- package/dist/common/utils.js +152 -0
- package/dist/main/benchUtils.d.ts +33 -1
- package/dist/main/benchUtils.js +145 -11
- package/dist/main/tsconfig.tsbuildinfo +1 -1
- package/dist/main/video/canvasTransform.d.ts +1 -1
- package/dist/main/video/canvasTransform.js +135 -47
- package/dist/main/video/index.d.ts +1 -1
- package/dist/main/video/index.js +1 -1
- package/dist/workers/mediaWorker.js +35 -162
- package/dist/workers/tsconfig.tsbuildinfo +1 -1
- package/package.json +8 -7
- package/dist/common/backends/webgl/shaders/blendFragmentShader.d.ts +0 -1
- package/dist/common/backends/webgl/shaders/blendFragmentShader.js +0 -21
- package/dist/common/backends/webgl/shaders/dualFilterBlurFragmentShader.d.ts +0 -1
- package/dist/common/backends/webgl/shaders/dualFilterBlurFragmentShader.js +0 -45
- package/dist/common/backends/webgl/shaders/smoothingMaskFragmentShader.d.ts +0 -1
- package/dist/common/backends/webgl/shaders/smoothingMaskFragmentShader.js +0 -57
- package/dist/common/backends/webgl/shaders/textureFragmentShader.d.ts +0 -1
- package/dist/common/backends/webgl/shaders/textureFragmentShader.js +0 -16
- package/dist/common/backends/webgl/shaders/vertexShader.d.ts +0 -1
- package/dist/common/backends/webgl/shaders/vertexShader.js +0 -19
package/dist/common/utils.js
CHANGED
|
@@ -81,6 +81,18 @@ export const createRemoteImageBitmap = (map) => {
|
|
|
81
81
|
};
|
|
82
82
|
export const clamping = (min, max) => (value) => Math.min(Math.max(value, min), max);
|
|
83
83
|
export const calculateMaxBlurPass = (height) => Math.trunc(Math.log2(height));
|
|
84
|
+
/**
|
|
85
|
+
* Coerce any positive number to the nearest power of two within [minPow, maxPow]
|
|
86
|
+
* Example: nearestPowerOfTwo(13) => 16; nearestPowerOfTwo(3.2) => 4
|
|
87
|
+
*/
|
|
88
|
+
export function nearestPowerOfTwo(n, minPow = 0, // 2^0 = 1
|
|
89
|
+
maxPow = 4) {
|
|
90
|
+
if (n <= 0) {
|
|
91
|
+
return 1;
|
|
92
|
+
}
|
|
93
|
+
const k = clamping(minPow, maxPow)(calculateMaxBlurPass(n));
|
|
94
|
+
return 2 ** k;
|
|
95
|
+
}
|
|
84
96
|
/**
|
|
85
97
|
* Calculate the coordinates and size of the source and destination to fit the
|
|
86
98
|
* target aspect ratio.
|
|
@@ -171,3 +183,143 @@ export const handleWebGLContextLoss = (canvas, eventHandlers, contextLostCb) =>
|
|
|
171
183
|
canvas.removeEventListener('webglcontextcreationerror', handleContextCreationError);
|
|
172
184
|
};
|
|
173
185
|
};
|
|
186
|
+
/**
|
|
187
|
+
* Intersection over Union (IoU), how much two masks overlap as a fraction of either's total.
|
|
188
|
+
* 1.0 = perfect match, 0 = no overlap.
|
|
189
|
+
* Used for stable, robust tracking of the main person between frames,
|
|
190
|
+
* especially with bystander removal and temporal instance switching.
|
|
191
|
+
*/
|
|
192
|
+
export function iou(a, b) {
|
|
193
|
+
let inter = 0;
|
|
194
|
+
let union = 0;
|
|
195
|
+
for (let i = 0; i < a.length; i++) {
|
|
196
|
+
// @ts-expect-error TypeArray will not be undefined
|
|
197
|
+
const av = a[i] >= 128;
|
|
198
|
+
// @ts-expect-error TypeArray will not be undefined
|
|
199
|
+
const bv = b[i] >= 128;
|
|
200
|
+
if (av && bv) {
|
|
201
|
+
inter++;
|
|
202
|
+
}
|
|
203
|
+
if (av || bv) {
|
|
204
|
+
union++;
|
|
205
|
+
}
|
|
206
|
+
}
|
|
207
|
+
return union ? inter / union : 0;
|
|
208
|
+
}
|
|
209
|
+
export function labelComponents(input, labels, width, height) {
|
|
210
|
+
// 8-connected component labeling with union-find
|
|
211
|
+
let nextLabel = 1;
|
|
212
|
+
const parent = [0];
|
|
213
|
+
function find(x) {
|
|
214
|
+
if (parent[x] === undefined) {
|
|
215
|
+
return x;
|
|
216
|
+
}
|
|
217
|
+
if (parent[x] !== x) {
|
|
218
|
+
parent[x] = find(parent[x]);
|
|
219
|
+
}
|
|
220
|
+
return parent[x];
|
|
221
|
+
}
|
|
222
|
+
function unite(a, b) {
|
|
223
|
+
if (!a || !b) {
|
|
224
|
+
return;
|
|
225
|
+
}
|
|
226
|
+
a = find(a);
|
|
227
|
+
b = find(b);
|
|
228
|
+
if (a !== b) {
|
|
229
|
+
parent[b] = a; // Or vice versa, as long as consistent
|
|
230
|
+
}
|
|
231
|
+
}
|
|
232
|
+
// First pass: assign and union with neighbors (left, top, top-left, top-right)
|
|
233
|
+
for (let y = 0; y < height; y++) {
|
|
234
|
+
for (let x = 0; x < width; x++) {
|
|
235
|
+
const i = y * width + x;
|
|
236
|
+
//@ts-expect-error will not be undefined
|
|
237
|
+
if (input[i] < 128) {
|
|
238
|
+
labels[i] = 0;
|
|
239
|
+
continue;
|
|
240
|
+
}
|
|
241
|
+
const left = x > 0 ? labels[i - 1] : 0;
|
|
242
|
+
const top = y > 0 ? labels[i - width] : 0;
|
|
243
|
+
const topLeft = x > 0 && y > 0 ? labels[i - width - 1] : 0;
|
|
244
|
+
const topRight = x < width - 1 && y > 0 ? labels[i - width + 1] : 0;
|
|
245
|
+
// Pick an existing neighbor label if present, else new
|
|
246
|
+
let assign = left || top || topLeft || topRight;
|
|
247
|
+
if (!assign) {
|
|
248
|
+
assign = nextLabel++;
|
|
249
|
+
parent[assign] = assign;
|
|
250
|
+
}
|
|
251
|
+
labels[i] = assign;
|
|
252
|
+
// Union all differing neighbors with the assigned label
|
|
253
|
+
if (left && left !== assign) {
|
|
254
|
+
unite(assign, left);
|
|
255
|
+
}
|
|
256
|
+
if (top && top !== assign) {
|
|
257
|
+
unite(assign, top);
|
|
258
|
+
}
|
|
259
|
+
if (topLeft && topLeft !== assign) {
|
|
260
|
+
unite(assign, topLeft);
|
|
261
|
+
}
|
|
262
|
+
if (topRight && topRight !== assign) {
|
|
263
|
+
unite(assign, topRight);
|
|
264
|
+
}
|
|
265
|
+
}
|
|
266
|
+
}
|
|
267
|
+
// Second pass: compress labels to root ids
|
|
268
|
+
for (let i = 0; i < labels.length; i++) {
|
|
269
|
+
const l = labels[i];
|
|
270
|
+
labels[i] = l ? find(l) : 0;
|
|
271
|
+
}
|
|
272
|
+
// Compute component stats for selection
|
|
273
|
+
const stats = new Map();
|
|
274
|
+
for (let y = 0; y < height; y++) {
|
|
275
|
+
for (let x = 0; x < width; x++) {
|
|
276
|
+
const l = labels[y * width + x];
|
|
277
|
+
if (!l) {
|
|
278
|
+
continue;
|
|
279
|
+
}
|
|
280
|
+
const s = stats.get(l) ?? {
|
|
281
|
+
sumX: 0,
|
|
282
|
+
sumY: 0,
|
|
283
|
+
count: 0,
|
|
284
|
+
minX: width,
|
|
285
|
+
minY: height,
|
|
286
|
+
maxX: -1,
|
|
287
|
+
maxY: -1,
|
|
288
|
+
};
|
|
289
|
+
s.sumX += x;
|
|
290
|
+
s.sumY += y;
|
|
291
|
+
s.count++;
|
|
292
|
+
if (x < s.minX) {
|
|
293
|
+
s.minX = x;
|
|
294
|
+
}
|
|
295
|
+
if (x > s.maxX) {
|
|
296
|
+
s.maxX = x;
|
|
297
|
+
}
|
|
298
|
+
if (y < s.minY) {
|
|
299
|
+
s.minY = y;
|
|
300
|
+
}
|
|
301
|
+
if (y > s.maxY) {
|
|
302
|
+
s.maxY = y;
|
|
303
|
+
}
|
|
304
|
+
stats.set(l, s);
|
|
305
|
+
}
|
|
306
|
+
}
|
|
307
|
+
return stats;
|
|
308
|
+
}
|
|
309
|
+
export function scoreComponent(stats, overlap, weights, width, height) {
|
|
310
|
+
const area = stats.count;
|
|
311
|
+
const heightPx = stats.maxY - stats.minY + 1;
|
|
312
|
+
// const widthPx = stats.maxX - stats.minX + 1;
|
|
313
|
+
const mx = stats.sumX / stats.count;
|
|
314
|
+
const my = stats.sumY / stats.count;
|
|
315
|
+
const d2 = (mx - weights.centerX) ** 2 + (my - weights.centerY) ** 2;
|
|
316
|
+
const centerScore = 1.0 - Math.min(1.0, Math.sqrt(d2) / Math.max(width, height)); // normalize
|
|
317
|
+
// Normalize area/height by frame size to [0..1]
|
|
318
|
+
const areaN = area / (width * height);
|
|
319
|
+
const heightN = heightPx / height;
|
|
320
|
+
const score = weights.iou * overlap +
|
|
321
|
+
weights.area * areaN +
|
|
322
|
+
weights.height * heightN +
|
|
323
|
+
weights.center * centerScore;
|
|
324
|
+
return score;
|
|
325
|
+
}
|
|
@@ -4,10 +4,42 @@ type Timestamp = number;
|
|
|
4
4
|
export interface Benchmark {
|
|
5
5
|
begin(): void;
|
|
6
6
|
end(): void;
|
|
7
|
+
reset(): void;
|
|
7
8
|
calculateFps(): [Timestamp, FPS];
|
|
8
9
|
}
|
|
9
10
|
interface BenchmarkOptions {
|
|
10
11
|
calculationThresholdMS?: number;
|
|
12
|
+
warmupCount?: number;
|
|
13
|
+
averageThreshold?: number;
|
|
14
|
+
bufferSize?: number;
|
|
11
15
|
}
|
|
12
|
-
|
|
16
|
+
/**
|
|
17
|
+
* Creates a benchmarking utility for measuring frame durations and calculating frames per second (FPS).
|
|
18
|
+
*
|
|
19
|
+
* @remarks
|
|
20
|
+
* This function is designed for performance measurement in animation or game loops.
|
|
21
|
+
* It records frame start/end times, ignores an initial warmup period, utilizes a circular buffer
|
|
22
|
+
* to average recent frame durations, and computes a smoothed FPS value on demand.
|
|
23
|
+
* The calculation may only occur if sufficient samples have been gathered and the minimum interval between
|
|
24
|
+
* calculations has elapsed.
|
|
25
|
+
*
|
|
26
|
+
* @param clock - An object with a `now()` method returning the current timestamp (in milliseconds). Defaults to `window.performance`.
|
|
27
|
+
* @param options - Optional configuration options for the benchmark utility.
|
|
28
|
+
* @param options.bufferSize - Size of the circular buffer used to store recent frame durations. Defaults to 1024.
|
|
29
|
+
* @param options.calculationThresholdMS - Minimum interval in milliseconds between FPS recalculations. Defaults to 1000.
|
|
30
|
+
* @param options.warmupCount - Number of initial frames to ignore before starting to record durations. Defaults to 100.
|
|
31
|
+
* @param options.averageThreshold - Minimum number of samples in the buffer required before calculating FPS. Defaults to 100.
|
|
32
|
+
*
|
|
33
|
+
* @returns An object with methods to start/end frame measurements, reset the benchmark, and calculate current FPS.
|
|
34
|
+
*/
|
|
35
|
+
export declare const createBenchmark: (clock?: Clock, { bufferSize, calculationThresholdMS, warmupCount, averageThreshold, }?: BenchmarkOptions) => Benchmark;
|
|
36
|
+
export declare const createWindowedStats: (windowSize?: number) => {
|
|
37
|
+
add(value: number): void;
|
|
38
|
+
readonly mean: number;
|
|
39
|
+
readonly variance: number;
|
|
40
|
+
readonly stddev: number;
|
|
41
|
+
readonly stdError: number;
|
|
42
|
+
readonly count: number;
|
|
43
|
+
clear(): void;
|
|
44
|
+
};
|
|
13
45
|
export {};
|
package/dist/main/benchUtils.js
CHANGED
|
@@ -1,35 +1,169 @@
|
|
|
1
|
-
|
|
1
|
+
import { createCircularBuffer } from '@pexip/utils';
|
|
2
|
+
/**
|
|
3
|
+
* Creates a benchmarking utility for measuring frame durations and calculating frames per second (FPS).
|
|
4
|
+
*
|
|
5
|
+
* @remarks
|
|
6
|
+
* This function is designed for performance measurement in animation or game loops.
|
|
7
|
+
* It records frame start/end times, ignores an initial warmup period, utilizes a circular buffer
|
|
8
|
+
* to average recent frame durations, and computes a smoothed FPS value on demand.
|
|
9
|
+
* The calculation may only occur if sufficient samples have been gathered and the minimum interval between
|
|
10
|
+
* calculations has elapsed.
|
|
11
|
+
*
|
|
12
|
+
* @param clock - An object with a `now()` method returning the current timestamp (in milliseconds). Defaults to `window.performance`.
|
|
13
|
+
* @param options - Optional configuration options for the benchmark utility.
|
|
14
|
+
* @param options.bufferSize - Size of the circular buffer used to store recent frame durations. Defaults to 1024.
|
|
15
|
+
* @param options.calculationThresholdMS - Minimum interval in milliseconds between FPS recalculations. Defaults to 1000.
|
|
16
|
+
* @param options.warmupCount - Number of initial frames to ignore before starting to record durations. Defaults to 100.
|
|
17
|
+
* @param options.averageThreshold - Minimum number of samples in the buffer required before calculating FPS. Defaults to 100.
|
|
18
|
+
*
|
|
19
|
+
* @returns An object with methods to start/end frame measurements, reset the benchmark, and calculate current FPS.
|
|
20
|
+
*/
|
|
21
|
+
export const createBenchmark = (clock = performance, { bufferSize = 2 ** 10, calculationThresholdMS = 1000, warmupCount = 100, averageThreshold = 100, } = {}) => {
|
|
2
22
|
const props = {
|
|
23
|
+
buffer: createCircularBuffer(bufferSize, Float32Array),
|
|
3
24
|
beginTime: 0,
|
|
4
25
|
endTime: 0,
|
|
5
|
-
sumDelta: 0,
|
|
6
|
-
count: 0,
|
|
7
26
|
lastCalculateTime: 0,
|
|
8
27
|
lastResult: 0,
|
|
28
|
+
warmupCount: 0,
|
|
29
|
+
sum: 0,
|
|
9
30
|
};
|
|
10
31
|
return {
|
|
11
32
|
begin: () => {
|
|
33
|
+
if (props.warmupCount < warmupCount) {
|
|
34
|
+
return;
|
|
35
|
+
}
|
|
12
36
|
props.beginTime = clock.now();
|
|
13
37
|
},
|
|
14
38
|
end: () => {
|
|
39
|
+
if (props.warmupCount < warmupCount) {
|
|
40
|
+
props.warmupCount += 1;
|
|
41
|
+
return;
|
|
42
|
+
}
|
|
15
43
|
props.endTime = clock.now();
|
|
16
|
-
|
|
17
|
-
|
|
44
|
+
if (props.buffer.isFull()) {
|
|
45
|
+
const oldest = props.buffer.peek() ?? 0;
|
|
46
|
+
props.sum -= oldest;
|
|
47
|
+
}
|
|
48
|
+
const elapsed = props.endTime - props.beginTime;
|
|
49
|
+
props.buffer.push(elapsed);
|
|
50
|
+
props.sum += elapsed;
|
|
51
|
+
},
|
|
52
|
+
reset: () => {
|
|
53
|
+
props.buffer.clear();
|
|
54
|
+
props.warmupCount = 0;
|
|
55
|
+
props.beginTime = 0;
|
|
56
|
+
props.endTime = 0;
|
|
57
|
+
props.lastCalculateTime = 0;
|
|
18
58
|
},
|
|
19
59
|
calculateFps: () => {
|
|
60
|
+
if (props.warmupCount < warmupCount) {
|
|
61
|
+
return [props.lastCalculateTime, props.lastResult];
|
|
62
|
+
}
|
|
20
63
|
const calculateTime = clock.now();
|
|
21
64
|
const lastDuration = calculateTime - props.lastCalculateTime;
|
|
22
|
-
if (
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
props.sumDelta = 0;
|
|
27
|
-
props.count = 0;
|
|
65
|
+
if (props.lastCalculateTime &&
|
|
66
|
+
lastDuration >= calculationThresholdMS &&
|
|
67
|
+
props.buffer.size() > averageThreshold) {
|
|
68
|
+
const result = (lastDuration * props.buffer.size()) / props.sum;
|
|
28
69
|
props.lastCalculateTime = calculateTime;
|
|
29
70
|
props.lastResult = result;
|
|
30
71
|
return [calculateTime, result];
|
|
31
72
|
}
|
|
73
|
+
props.lastCalculateTime = calculateTime;
|
|
32
74
|
return [props.lastCalculateTime, props.lastResult];
|
|
33
75
|
},
|
|
34
76
|
};
|
|
35
77
|
};
|
|
78
|
+
function mean(sum, count) {
|
|
79
|
+
if (count > 0) {
|
|
80
|
+
return sum / count;
|
|
81
|
+
}
|
|
82
|
+
return 0;
|
|
83
|
+
}
|
|
84
|
+
function variance(count, mean, sumSquare) {
|
|
85
|
+
if (count < 2) {
|
|
86
|
+
return 0;
|
|
87
|
+
}
|
|
88
|
+
return sumSquare / count - mean * mean;
|
|
89
|
+
}
|
|
90
|
+
function stddev(variance) {
|
|
91
|
+
return Math.sqrt(variance);
|
|
92
|
+
}
|
|
93
|
+
function stdError(count, stddev) {
|
|
94
|
+
if (count === 0) {
|
|
95
|
+
return 0;
|
|
96
|
+
}
|
|
97
|
+
return stddev / Math.sqrt(count);
|
|
98
|
+
}
|
|
99
|
+
export const createWindowedStats = (windowSize = 2 ** 10) => {
|
|
100
|
+
const props = {
|
|
101
|
+
buffer: createCircularBuffer(windowSize, Float32Array),
|
|
102
|
+
sum: 0,
|
|
103
|
+
sumSqr: 0,
|
|
104
|
+
};
|
|
105
|
+
const cache = {
|
|
106
|
+
mean: 0,
|
|
107
|
+
variance: 0,
|
|
108
|
+
stddev: 0,
|
|
109
|
+
stdError: 0,
|
|
110
|
+
};
|
|
111
|
+
const dirty = {
|
|
112
|
+
mean: false,
|
|
113
|
+
variance: false,
|
|
114
|
+
stddev: false,
|
|
115
|
+
stdError: false,
|
|
116
|
+
};
|
|
117
|
+
return {
|
|
118
|
+
add(value) {
|
|
119
|
+
if (props.buffer.isFull()) {
|
|
120
|
+
const oldest = props.buffer.peek() ?? 0;
|
|
121
|
+
props.sum -= oldest;
|
|
122
|
+
props.sumSqr -= oldest * oldest;
|
|
123
|
+
}
|
|
124
|
+
props.buffer.push(value);
|
|
125
|
+
props.sum += value;
|
|
126
|
+
props.sumSqr += value * value;
|
|
127
|
+
dirty.mean = true;
|
|
128
|
+
dirty.variance = true;
|
|
129
|
+
dirty.stddev = true;
|
|
130
|
+
dirty.stdError = true;
|
|
131
|
+
},
|
|
132
|
+
get mean() {
|
|
133
|
+
if (dirty.mean) {
|
|
134
|
+
cache.mean = mean(props.sum, this.count);
|
|
135
|
+
dirty.mean = false;
|
|
136
|
+
}
|
|
137
|
+
return cache.mean;
|
|
138
|
+
},
|
|
139
|
+
get variance() {
|
|
140
|
+
if (dirty.variance) {
|
|
141
|
+
cache.variance = variance(this.count, this.mean, props.sumSqr);
|
|
142
|
+
dirty.variance = false;
|
|
143
|
+
}
|
|
144
|
+
return cache.variance;
|
|
145
|
+
},
|
|
146
|
+
get stddev() {
|
|
147
|
+
if (dirty.stddev) {
|
|
148
|
+
cache.stddev = stddev(this.variance);
|
|
149
|
+
dirty.stddev = false;
|
|
150
|
+
}
|
|
151
|
+
return cache.stddev;
|
|
152
|
+
},
|
|
153
|
+
get stdError() {
|
|
154
|
+
if (dirty.stdError) {
|
|
155
|
+
cache.stdError = stdError(this.count, this.stddev);
|
|
156
|
+
dirty.stdError = false;
|
|
157
|
+
}
|
|
158
|
+
return cache.stdError;
|
|
159
|
+
},
|
|
160
|
+
get count() {
|
|
161
|
+
return props.buffer.size();
|
|
162
|
+
},
|
|
163
|
+
clear() {
|
|
164
|
+
props.buffer.clear();
|
|
165
|
+
props.sum = 0;
|
|
166
|
+
props.sumSqr = 0;
|
|
167
|
+
},
|
|
168
|
+
};
|
|
169
|
+
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"fileNames":["../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es5.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2015.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2016.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2017.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2018.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2019.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2020.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2021.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2022.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2023.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2024.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.esnext.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.dom.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2015.core.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2016.intl.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2017.date.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2017.object.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2017.string.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2019.array.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2019.object.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2019.string.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2020.date.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2020.string.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2020.number.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2021.promise.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2021.string.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2021.intl.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2022.array.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2022.error.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2022.intl.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2022.object.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2022.string.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2022.regexp.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2023.array.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2023.collection.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2023.intl.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2024.arraybuffer.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2024.collection.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2024.object.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2024.promise.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2024.regexp.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2024.sharedmemory.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2024.string.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.esnext.array.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.esnext.collection.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.esnext.intl.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.esnext.disposable.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.esnext.decorators.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.esnext.iterator.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.decorators.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.decorators.legacy.d.ts","../common/types/segmentation.d.ts","../common/types/media.d.ts","../common/types/utils.d.ts","../common/types/messageEvents.d.ts","../common/constants.d.ts","../common/types/render.d.ts","../common/types/processor.d.ts","../common/utils.d.ts","../common/index.d.ts","../../src/main/types.ts","../../../utils/dist/types.d.ts","../../../utils/dist/Backoff.d.ts","../../../utils/dist/assert.d.ts","../../../utils/dist/debounce.d.ts","../../../utils/dist/identity.d.ts","../../../utils/dist/isDefined.d.ts","../../../utils/dist/isEmpty.d.ts","../../../utils/dist/noop.d.ts","../../../utils/dist/nth.d.ts","../../../utils/dist/pipe.d.ts","../../../utils/dist/throttle.d.ts","../../../utils/dist/asyncQueue.d.ts","../../../utils/dist/cancellablePromise.d.ts","../../../utils/dist/diffSet.d.ts","../../../utils/dist/endsWithAnyOf.d.ts","../../../utils/dist/getBaseURI.d.ts","../../../utils/dist/getTimeLeft.d.ts","../../../utils/dist/hasOwn.d.ts","../../../utils/dist/memoize.d.ts","../../../utils/dist/patterns.d.ts","../../../utils/dist/prig.d.ts","../../../utils/dist/queue.d.ts","../../../utils/dist/scheduler.d.ts","../../../utils/dist/subscribeEvent.d.ts","../../../utils/dist/index.d.ts","../../src/main/math.ts","../../src/main/utils.ts","../../src/main/process.ts","../worklets/types.d.ts","../../src/main/workletNodes.ts","../../src/main/typeGuards.ts","../../src/main/audio.ts","../../src/main/benchUtils.ts","../../src/main/generator.ts","../../src/main/video/load.ts","../../src/main/video/types.ts","../../src/main/video/constants.ts","../../src/main/processor.ts","../../src/main/transformer.ts","../common/canvasRenderUtils.d.ts","../../src/main/video/transformer.ts","../../src/main/video/utils.ts","../../src/main/video/videoStreamTrackProcessor.ts","../../src/main/video/video.ts","../../src/main/video/canvasTransform.ts","../../src/main/video/typeGuards.ts","../../src/main/video/segmenters/mediapipe.ts","../../src/main/video/index.ts","../../src/main/path.ts","../../src/main/visual.ts","../../src/main/index.ts","../../../../.yarn/cache/@types-trusted-types-npm-2.0.6-c4c3cd363b-04250c7175.zip/node_modules/@types/trusted-types/lib/index.d.ts","../../@types/global.d.ts","../../@types/mediaTransform.d.ts","../../../../.yarn/cache/@webgpu-types-npm-0.1.56-054942c27f-54b4317f8c.zip/node_modules/@webgpu/types/dist/index.d.ts","../../@types/webgpu.d.ts","../../../../.yarn/cache/@types-audioworklet-npm-0.0.41-ec4bc90857-2bfd761ab7.zip/node_modules/@types/audioworklet/iterable.d.ts","../../../../.yarn/cache/@types-audioworklet-npm-0.0.41-ec4bc90857-2bfd761ab7.zip/node_modules/@types/audioworklet/index.d.ts","../../../../.yarn/cache/@types-dom-webcodecs-npm-0.1.10-02a2fa8a5c-dd7b1410da.zip/node_modules/@types/dom-webcodecs/webcodecs.generated.d.ts","../../../../.yarn/cache/@types-dom-webcodecs-npm-0.1.10-02a2fa8a5c-dd7b1410da.zip/node_modules/@types/dom-webcodecs/index.d.ts","../../../../.yarn/cache/@types-trusted-types-npm-2.0.6-c4c3cd363b-04250c7175.zip/node_modules/@types/trusted-types/index.d.ts"],"fileIdsList":[[144],[146],[139],[142],[79],[78,79,80,81,82,83,84,85],[78,79,81,82,83],[79,82],[78,79,82,83],[87,114,115,117,118],[87],[86,87,113,114,115,118,119,120,135,137],[87,112,113,114],[86],[79,82,83,85,86,112,123,127],[122,123,124,129,130,131,132,133,134],[78,79,80,82,84,112,123],[123],[82],[78,79,82,83,84,87],[79,87,114,123,124],[86,87,114,123,124,130],[79,82,112,114,121,123,124,125,126,127,128,129],[87,136],[116],[88],[88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111]],"fileInfos":[{"version":"e41c290ef7dd7dab3493e6cbe5909e0148edf4a8dad0271be08edec368a0f7b9","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","impliedFormat":1},{"version":"e44bb8bbac7f10ecc786703fe0a6a4b952189f908707980ba8f3c8975a760962","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","impliedFormat":1},{"version":"ee7bad0c15b58988daa84371e0b89d313b762ab83cb5b31b8a2d1162e8eb41c2","impliedFormat":1},{"version":"27bdc30a0e32783366a5abeda841bc22757c1797de8681bbe81fbc735eeb1c10","impliedFormat":1},{"version":"8fd575e12870e9944c7e1d62e1f5a73fcf23dd8d3a321f2a2c74c20d022283fe","impliedFormat":1},{"version":"e12a46ce14b817d4c9e6b2b478956452330bf00c9801b79de46f7a1815b5bd40","impliedFormat":1},{"version":"4fd3f3422b2d2a3dfd5cdd0f387b3a8ec45f006c6ea896a4cb41264c2100bb2c","affectsGlobalScope":true,"impliedFormat":1},{"version":"c57796738e7f83dbc4b8e65132f11a377649c00dd3eee333f672b8f0a6bea671","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"515d0b7b9bea2e31ea4ec968e9edd2c39d3eebf4a2d5cbd04e88639819ae3b71","affectsGlobalScope":true,"impliedFormat":1},{"version":"62bb211266ee48b2d0edf0d8d1b191f0c24fc379a82bd4c1692a082c540bc6b1","affectsGlobalScope":true,"impliedFormat":1},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true,"impliedFormat":1},{"version":"936e80ad36a2ee83fc3caf008e7c4c5afe45b3cf3d5c24408f039c1d47bdc1df","affectsGlobalScope":true,"impliedFormat":1},{"version":"d15bea3d62cbbdb9797079416b8ac375ae99162a7fba5de2c6c505446486ac0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"68d18b664c9d32a7336a70235958b8997ebc1c3b8505f4f1ae2b7e7753b87618","affectsGlobalScope":true,"impliedFormat":1},{"version":"eb3d66c8327153d8fa7dd03f9c58d351107fe824c79e9b56b462935176cdf12a","affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true,"impliedFormat":1},{"version":"69ab18c3b76cd9b1be3d188eaf8bba06112ebbe2f47f6c322b5105a6fbc45a2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"fef8cfad2e2dc5f5b3d97a6f4f2e92848eb1b88e897bb7318cef0e2820bceaab","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"954296b30da6d508a104a3a0b5d96b76495c709785c1d11610908e63481ee667","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac9538681b19688c8eae65811b329d3744af679e0bdfa5d842d0e32524c73e1c","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a969edff4bd52585473d24995c5ef223f6652d6ef46193309b3921d65dd4376","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true,"impliedFormat":1},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"f1e2a172204962276504466a6393426d2ca9c54894b1ad0a6c9dad867a65f876","affectsGlobalScope":true,"impliedFormat":1},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true,"impliedFormat":1},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true,"impliedFormat":1},{"version":"52ada8e0b6e0482b728070b7639ee42e83a9b1c22d205992756fe020fd9f4a47","affectsGlobalScope":true,"impliedFormat":1},{"version":"3bdefe1bfd4d6dee0e26f928f93ccc128f1b64d5d501ff4a8cf3c6371200e5e6","affectsGlobalScope":true,"impliedFormat":1},{"version":"59fb2c069260b4ba00b5643b907ef5d5341b167e7d1dbf58dfd895658bda2867","affectsGlobalScope":true,"impliedFormat":1},{"version":"639e512c0dfc3fad96a84caad71b8834d66329a1f28dc95e3946c9b58176c73a","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","affectsGlobalScope":true,"impliedFormat":1},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true,"impliedFormat":1},{"version":"959d36cddf5e7d572a65045b876f2956c973a586da58e5d26cde519184fd9b8a","affectsGlobalScope":true,"impliedFormat":1},{"version":"965f36eae237dd74e6cca203a43e9ca801ce38824ead814728a2807b1910117d","affectsGlobalScope":true,"impliedFormat":1},{"version":"3925a6c820dcb1a06506c90b1577db1fdbf7705d65b62b99dce4be75c637e26b","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a3d63ef2b853447ec4f749d3f368ce642264246e02911fcb1590d8c161b8005","affectsGlobalScope":true,"impliedFormat":1},{"version":"b5ce7a470bc3628408429040c4e3a53a27755022a32fd05e2cb694e7015386c7","affectsGlobalScope":true,"impliedFormat":1},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true,"impliedFormat":1},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true,"impliedFormat":1},{"version":"b4b67b1a91182421f5df999988c690f14d813b9850b40acd06ed44691f6727ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"bab26767638ab3557de12c900f0b91f710c7dc40ee9793d5a27d32c04f0bf646","affectsGlobalScope":true,"impliedFormat":1},{"version":"436aaf437562f276ec2ddbee2f2cdedac7664c1e4c1d2c36839ddd582eeb3d0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e3c06ea092138bf9fa5e874a1fdbc9d54805d074bee1de31b99a11e2fec239d","affectsGlobalScope":true,"impliedFormat":1},{"version":"87dc0f382502f5bbce5129bdc0aea21e19a3abbc19259e0b43ae038a9fc4e326","affectsGlobalScope":true,"impliedFormat":1},{"version":"b1cb28af0c891c8c96b2d6b7be76bd394fddcfdb4709a20ba05a7c1605eea0f9","affectsGlobalScope":true,"impliedFormat":1},{"version":"2fef54945a13095fdb9b84f705f2b5994597640c46afeb2ce78352fab4cb3279","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac77cb3e8c6d3565793eb90a8373ee8033146315a3dbead3bde8db5eaf5e5ec6","affectsGlobalScope":true,"impliedFormat":1},{"version":"56e4ed5aab5f5920980066a9409bfaf53e6d21d3f8d020c17e4de584d29600ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ece9f17b3866cc077099c73f4983bddbcb1dc7ddb943227f1ec070f529dedd1","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a6282c8827e4b9a95f4bf4f5c205673ada31b982f50572d27103df8ceb8013c","affectsGlobalScope":true,"impliedFormat":1},{"version":"1c9319a09485199c1f7b0498f2988d6d2249793ef67edda49d1e584746be9032","affectsGlobalScope":true,"impliedFormat":1},{"version":"e3a2a0cee0f03ffdde24d89660eba2685bfbdeae955a6c67e8c4c9fd28928eeb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811c71eee4aa0ac5f7adf713323a5c41b0cf6c4e17367a34fbce379e12bbf0a4","affectsGlobalScope":true,"impliedFormat":1},{"version":"51ad4c928303041605b4d7ae32e0c1ee387d43a24cd6f1ebf4a2699e1076d4fa","affectsGlobalScope":true,"impliedFormat":1},{"version":"d4b1d2c51d058fc21ec2629fff7a76249dec2e36e12960ea056e3ef89174080f","affectsGlobalScope":true,"impliedFormat":1},{"version":"61d6a2092f48af66dbfb220e31eea8b10bc02b6932d6e529005fd2d7b3281290","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e7f8264d0fb4c5339605a15daadb037bf238c10b654bb3eee14208f860a32ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},"635d97969c350468aa5861b3df0ebcbb8478d1443ca1925624f42523e6977a39","a8c26adbb4381a5434218f5b71e4046d90a5ea69fc7a921fe4b04d238796763d","8614f7b7029832d4cf36ff07ca0557178641bf435d2b4efb49020b9b6e8f0ba7","10a6710b34f5c43e5b9bd57afb08290c38950ad9fb7c2f6e7b4973564a3e1c9a","2ab8a8463c75bcf5aa0adc55f4df837a518bd5ed4e578cc7fa4e79b3111ebd08","f14aacf7298d78222bc54e74cf591ae55bace8dc731f3972d5636395577a9be2","169d3074997b35037a6391faece98c86d8087b4ed1479a914545196ebd1410ae","738c8593510b40879628719d1426b4eed043998f4bd1238a82760aeec3ef1405","6414af6c4cae5ea966b68dffccc7fdedf5bd02b5bae2f071e1924c4f45270834",{"version":"633968e2c3f300a932773a8d3777c5af23c28ed5c48aa065e95891e1cdcdb06b","signature":"bbae82952ee9fcaee6deaf8c87af532892d816f8149e369b6125d594ba9d25cf"},"edfe10afb5dfa79dc3681c3ce2fd73cf84187f82cde5ac9acd0ed6045812be81","438ef5faada40623680ebd13ae7125e99cfdc7c5326e8b0d3eb07e5f9321bd42","3c85aeafee03e18cb01a4fd383192931acc3f950df08b248519467ceadd4a0ac","0ffdcafaf8eed4f147e35a0d34fa4a5adf8424d3453a4ae34a459247c121537b","45880d016069eaff83f54047396b0f98e413ec43f50c59131d45c9c92dd44dea","2db065eba6f02c7ea4174dfb607acc5773ab2522e35a8e0f723709e07ec66158","97a19b229516b92ec137b44d54f6454b50e105fc4fff659daba9f754982b9a0d","f9a45114811a10722053e6c5329c41eace3295daa477d12558279df4dcbfba71","3698e6b26f72a770b4bfc15504c04bfb678a355b46ceaa7a42cbdac0893b4d5c","f337140c4001e5beb160f61f96115fa07b1da1de621c2056b83d236f184fb373","65febade0f6327355a157698cdcadc1cbedee872ef77f57211da146125905828","e3f077ed66cc7832adc6c17146cfb730729e8257e78d7bdc7ae34c4276a7de09","1482c77b2d28fa9254f48e76f2ff40f1cfb6bab261fb2d2b98035bb809042939","53bcf7a22d47bd524c0bf6869165d59364e472c94066af1e1b0d80cb1826306f","880e53e2d42225d6b22e2e2b4e51cc8b845094a5045b170eb79df031bfaceaac","1e56ad04bd9214bf4583941a499386488cb76389eee3bd65ec882f5e5613cbc8","6fa26b05e6b041a321db7a70f534a93b4eb616916015dddcdeaaf658a340209d","2c437f035a6f3bfe59a7d9ec427f81e1f2495746db06f841c3e2f4c2813cfaac","1f2e2f423c7ec93f80f4543278488d9de8f4d0d5b1385c691e313f42d17a3fca","f06d0f7bb803f3f00b4d0cd16b2d950fb826cf7efec3f68546f3e67746fb969e","d23e3a3000ecd6477941f5eaaa9ba5d72d29928a347ef9821a02a763997d95c4","3a0d9bd15a78cdc0f4454eb2ac681db16053538de2e1ef65021b12eda3d33323","019ee2a791e6af5796fdd66704fb0729be24f2e53ffa0e5e2d6f1be2bff9ad02","fce09eb9f7968387bb0891ce15015c18a09ad3a7331f2c425a331cbebba89527","d01fa28aed505753aae178a68e23f5880ec9df2cdd4ce94bf4a1a2346d84e160",{"version":"152810252d22da1cb8a0381f593bafd977cd8ce3105407b32dc316596d2e99b8","signature":"b09adfe29851c03eb5e7c40f1d6f5f962cdd9f69224e1ccd8d8593352e5dd2a6"},{"version":"581c4067f39f2758c12ec64b2811a7350eaf88cd512ba4f2ade3320f4adaad09","signature":"dd2b0c59f11f870af65167cb233da75b96c0239e33c0954183480511bfa3e079"},{"version":"6e5c520f97ee982759a61a72881876c198c9d10732a4db9e644f58f1dd104353","signature":"b6bc216f5b1719f0ea67b0a1ae97283c8c04db6420a8055976d51ebdd857d10e"},"f153fd4d4780137d3c6794438072b688a71b3e8648d35e6a6e41019aef6070f9",{"version":"bdd931c37d4c3ddbf7694729a81251f34a24c98bddaaf27d851fb4dc2f4677db","signature":"86ab94987073b8ae616d797bc8e17657d6d007375b5cdee788d99b78e6dd7001"},{"version":"df330ee4158cb09d6c6c2846bede492886dac0e4cf4dc8324ee32a08fb36b190","signature":"d0bfef3cd422b6c62007638855b135e6c819d8de4dc09a0bf4ac68e3c74db426"},{"version":"43a3e0fbeb46e6c94ff2509ee8f465e7ed78739764a537b11bbea8f14234d4eb","signature":"7ada7e3e2abdd67409d4d1bf6b59b3c40162df87718106520db4ff2e9679c163"},{"version":"d41e4b8a0886ccb89b679f177805936c997690278eb6ddaf3d9ff80668fd079d","signature":"f9686cf9e576cbd250c44d71ce8424964f67df20c818818d52e23d7efce28939"},{"version":"a7ce400490236a50af31a713114e5e7df0b7dab30542470ca473b8c0fad2a9d3","signature":"a95f57f06164e24a1fdb917199867f9fb551abe0504fdef2ec66f05ed289c025"},{"version":"7f1d330b53c09af17310f159823e661d2fca51eac3a04b10a3926fe7e3a82b92","signature":"93460d55d62a100e35444e1df6a98a60b3ef14c625158549c43573e6a3d1f739"},{"version":"78d77392eef4ac6632779c56bb0cf743e95658fec2b5965256c24aa85adab416","signature":"42f79c87ef88f8ec06381e3cf774fcfcbdba0868d9aac3c1dbdb71b6c63b59ba"},{"version":"d1084e95f8f450ea359e6a377d2ceb296666f35f0989e648aa80ff70ad30cb5f","signature":"89644957e9c2ffdfc08212bb0b45ec1fb88870cf362b204658a7d55155d22f87"},{"version":"6f35e207094bd6251fc132dde7094d5a43d4e3752071da3792004c9aca0ef32e","signature":"08abb08473a683d16ed53a9abe4ae3a2e42060671605bb829cb39b833f5f98b8"},{"version":"59fba1e1def86234dde906d5f5111d974ade421d84d33f3fddd2588a4a251809","signature":"db11ec78fea8f5ba88d53c95404414eb8cf3fbcadf23f32c447cb7f6be332086"},"3d91c79111b3664edb18080173f8d80678f7b6945d37d823323197843e6b219a",{"version":"f23231e93a28183eb304fbba1013844c57ba5302a1aa1ec1b568349ed89e9cce","signature":"2f13d8578b2a733e7b0bccbf046ec1934b42f55fd5e936a395ba0e8c54065de7"},{"version":"ca2e95e0bc4ff3a8fa680dbe1163f272e4d6c00335f3c6b2e10648681e11dc9f","signature":"feed043a394fb90cdf996bf2c2ff158a83a71b464962dede2735c5ecf8d3ad4f"},{"version":"f01be805aa367898ce7a9163b7b13725452de5723e637d4073f19f430ff95028","signature":"e355c20edb52101b60adfb83d8d392ea18722b46f4eb8dce21b3eec26ce2b59b"},{"version":"38a230f15c533d9b59150f5399a27725117943ed68b01cb35dd06cffd718b5e9","signature":"308cd7849c37a3cf5d8636ec5e63433c75e6dccb9c3f45bc41d11d7e2c937b2b"},{"version":"73256b4aaea40544080c4c762606d6a3e0d55b10a49b225ce65df9f1567aaa9d","signature":"fad77208ec95483b13442e0ff9d230bc06de7dacc0c5a68c79266f327d23eb21"},{"version":"4a4587014eb5f8bbbdb242982e35cc9fa4bfd21ea564a344bef6c99dd6123c4d","signature":"fdebada06cf63b2f13deb71bbad49a9a5291e2deb60b5343387732bf6b2cf42a"},{"version":"31f8c2987faa1757c11be849a05c211dac8d3d6af6dbb4e0e90fa8d00d52662b","signature":"1bfacb1f85ea55ce8c2b0a7e6380c5c15c443fc860361c6488d2d490946f1faf"},{"version":"92e0b6006d28f78b70dd137bd8e1699ae0bb5a7d0bc6554308712e031b18bcf5","signature":"05b9e2d3582e7fde7081f6384d9ba76ad63c75f7c532246407a525b1516bb8f1"},{"version":"61b2b4b033a6e460c0fcc511f47c029f9c4d455084a0620c622dc3d4a0245698","signature":"a8910e7c69c0191377502fce63f5770f8d4df54bf60902a39ad340f8f1991a50"},{"version":"c6bc7dd1104763f828ea60dcad41ed400f9480b6d1346c9e7f5399d20d299a69","signature":"ec895812cb4e6ca8008c8ec354409db37ae653c41699ca1d63eb0b42c7222324"},{"version":"cc9862e66dfb762d370bfe13ce5f217236f50110c156bfb9f5a783eb8bda53c4","signature":"fec418cd90e47d52541f89d748b080700bd94d6de2db20a010a7deb4b269d72d"},{"version":"15fe687c59d62741b4494d5e623d497d55eb38966ecf5bea7f36e48fc3fbe15e","impliedFormat":1},{"version":"bf1398f368eb9bf4b347a891b4dcb66114a97e8e3f9a94f38caa705eac895ce5","affectsGlobalScope":true},{"version":"bf5897ad4510e099438547cc4c0661700a0909307fab8ef3180159c929e455c7","affectsGlobalScope":true},{"version":"9d268ebc59c57d8962ce1de970bb9d956c52e7aef38007ed12139f38f512c0e6","affectsGlobalScope":true,"impliedFormat":1},{"version":"9c42e375483faf69f0d2efc0cdd3602c4fca655ac2a5df3f9b6a39f22cf7c519","affectsGlobalScope":true},{"version":"b38d0bfd2d1c1536d40fc5941fab5c5dd2749fb874fb57c451211ab806a3be8a","affectsGlobalScope":true,"impliedFormat":1},{"version":"8c63699627e2dd957f31dddfaf644a96ccf92eec6e9277a430421ae2d7e98b00","affectsGlobalScope":true,"impliedFormat":1},{"version":"da4a8f6629bc630a6b85d0899ca3f610402794a1535d3eb8be826acef5efedfb","affectsGlobalScope":true,"impliedFormat":1},{"version":"3c57b01d6648405ea1784c0176e2ad77f77568e7a84d5cb4fc8eefabf00ca22b","affectsGlobalScope":true,"impliedFormat":1},{"version":"a4a5a79b9d9b4e4dfa18279d85686fac7eb155b828ddf7a677ceb57f9384f043","affectsGlobalScope":true,"impliedFormat":1}],"root":[87,[113,115],[117,126],[128,138],140,141,143],"options":{"allowJs":true,"allowSyntheticDefaultImports":true,"composite":true,"declaration":true,"declarationMap":false,"esModuleInterop":true,"jsx":2,"module":99,"noImplicitAny":true,"noUncheckedIndexedAccess":true,"outDir":"..","rootDir":"../../src","skipLibCheck":true,"sourceMap":false,"strict":true,"target":7,"verbatimModuleSyntax":true},"referencedMap":[[145,1],[147,2],[148,3],[140,3],[143,4],[127,5],[86,6],[84,7],[83,8],[85,9],[119,10],[120,11],[138,12],[136,11],[115,13],[118,11],[87,14],[114,11],[132,15],[135,16],[134,17],[128,18],[133,19],[123,20],[129,21],[131,22],[130,23],[137,24],[117,25],[91,26],[112,27],[97,26],[110,26],[111,26],[98,26]],"latestChangedDtsFile":"./index.d.ts","version":"5.7.3"}
|
|
1
|
+
{"fileNames":["../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es5.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2015.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2016.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2017.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2018.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2019.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2020.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2021.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2022.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2023.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2024.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.esnext.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.dom.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2015.core.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2016.intl.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2017.date.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2017.object.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2017.string.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2019.array.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2019.object.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2019.string.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2020.date.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2020.string.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2020.number.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2021.promise.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2021.string.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2021.intl.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2022.array.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2022.error.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2022.intl.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2022.object.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2022.string.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2022.regexp.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2023.array.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2023.collection.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2023.intl.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2024.arraybuffer.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2024.collection.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2024.object.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2024.promise.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2024.regexp.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2024.sharedmemory.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.es2024.string.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.esnext.array.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.esnext.collection.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.esnext.intl.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.esnext.disposable.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.esnext.decorators.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.esnext.iterator.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.decorators.d.ts","../../../../.yarn/cache/typescript-patch-6da68bae26-dc58d777eb.zip/node_modules/typescript/lib/lib.decorators.legacy.d.ts","../common/types/segmentation.d.ts","../common/types/media.d.ts","../common/types/utils.d.ts","../common/types/messageEvents.d.ts","../common/constants.d.ts","../common/types/render.d.ts","../common/types/processor.d.ts","../common/utils.d.ts","../common/canvasRenderUtils.d.ts","../common/index.d.ts","../../src/main/types.ts","../../../utils/dist/types.d.ts","../../../utils/dist/Backoff.d.ts","../../../utils/dist/assert.d.ts","../../../utils/dist/debounce.d.ts","../../../utils/dist/identity.d.ts","../../../utils/dist/isDefined.d.ts","../../../utils/dist/isEmpty.d.ts","../../../utils/dist/noop.d.ts","../../../utils/dist/nth.d.ts","../../../utils/dist/pipe.d.ts","../../../utils/dist/throttle.d.ts","../../../utils/dist/asyncQueue.d.ts","../../../utils/dist/cancellablePromise.d.ts","../../../utils/dist/diffSet.d.ts","../../../utils/dist/endsWithAnyOf.d.ts","../../../utils/dist/getBaseURI.d.ts","../../../utils/dist/getTimeLeft.d.ts","../../../utils/dist/hasOwn.d.ts","../../../utils/dist/memoize.d.ts","../../../utils/dist/patterns.d.ts","../../../utils/dist/prig.d.ts","../../../utils/dist/queue.d.ts","../../../utils/dist/scheduler.d.ts","../../../utils/dist/subscribeEvent.d.ts","../../../utils/dist/circularBuffer.d.ts","../../../utils/dist/index.d.ts","../../src/main/math.ts","../../src/main/utils.ts","../../src/main/process.ts","../worklets/types.d.ts","../../src/main/workletNodes.ts","../../src/main/typeGuards.ts","../../src/main/audio.ts","../../src/main/benchUtils.ts","../../src/main/generator.ts","../../src/main/video/load.ts","../../src/main/video/types.ts","../../src/main/video/constants.ts","../../src/main/processor.ts","../../src/main/transformer.ts","../../src/main/video/transformer.ts","../../src/main/video/utils.ts","../../src/main/video/videoStreamTrackProcessor.ts","../../src/main/video/video.ts","../../src/main/video/canvasTransform.ts","../../src/main/video/typeGuards.ts","../../src/main/video/segmenters/mediapipe.ts","../../src/main/video/index.ts","../../src/main/path.ts","../../src/main/visual.ts","../../src/main/index.ts","../../../../.yarn/cache/@types-trusted-types-npm-2.0.6-c4c3cd363b-04250c7175.zip/node_modules/@types/trusted-types/lib/index.d.ts","../../@types/global.d.ts","../../@types/mediaTransform.d.ts","../../@types/webgl.d.ts","../../../../.yarn/cache/@webgpu-types-npm-0.1.69-457d66ee91-f6037e9586.zip/node_modules/@webgpu/types/dist/index.d.ts","../../@types/webgpu.d.ts","../../../../.yarn/cache/@types-audioworklet-npm-0.0.41-ec4bc90857-2bfd761ab7.zip/node_modules/@types/audioworklet/iterable.d.ts","../../../../.yarn/cache/@types-audioworklet-npm-0.0.41-ec4bc90857-2bfd761ab7.zip/node_modules/@types/audioworklet/index.d.ts","../../../../.yarn/cache/@types-dom-webcodecs-npm-0.1.10-02a2fa8a5c-dd7b1410da.zip/node_modules/@types/dom-webcodecs/webcodecs.generated.d.ts","../../../../.yarn/cache/@types-dom-webcodecs-npm-0.1.10-02a2fa8a5c-dd7b1410da.zip/node_modules/@types/dom-webcodecs/index.d.ts","../../../../.yarn/cache/@types-trusted-types-npm-2.0.6-c4c3cd363b-04250c7175.zip/node_modules/@types/trusted-types/index.d.ts"],"fileIdsList":[[146],[148],[140],[144],[79],[78,79,80,81,82,83,84,85,86],[78,79,81,82,83],[79,82],[78,79,80,82,83],[88,116,117,119,120],[88,114],[87,88,115,116,117,120,121,122,136,138],[88],[88,114,115,116],[87],[79,82,83,85,86,87,114,125],[124,125,126,130,131,132,133,134,135],[78,79,80,82,84,114,125],[125],[82],[78,79,82,83,84,88],[79,88,116,125,126],[87,88,116,125,126,131],[79,82,86,114,116,123,125,126,127,128,129,130],[88,137],[118],[89],[89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113]],"fileInfos":[{"version":"e41c290ef7dd7dab3493e6cbe5909e0148edf4a8dad0271be08edec368a0f7b9","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","impliedFormat":1},{"version":"e44bb8bbac7f10ecc786703fe0a6a4b952189f908707980ba8f3c8975a760962","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","impliedFormat":1},{"version":"ee7bad0c15b58988daa84371e0b89d313b762ab83cb5b31b8a2d1162e8eb41c2","impliedFormat":1},{"version":"27bdc30a0e32783366a5abeda841bc22757c1797de8681bbe81fbc735eeb1c10","impliedFormat":1},{"version":"8fd575e12870e9944c7e1d62e1f5a73fcf23dd8d3a321f2a2c74c20d022283fe","impliedFormat":1},{"version":"e12a46ce14b817d4c9e6b2b478956452330bf00c9801b79de46f7a1815b5bd40","impliedFormat":1},{"version":"4fd3f3422b2d2a3dfd5cdd0f387b3a8ec45f006c6ea896a4cb41264c2100bb2c","affectsGlobalScope":true,"impliedFormat":1},{"version":"c57796738e7f83dbc4b8e65132f11a377649c00dd3eee333f672b8f0a6bea671","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"515d0b7b9bea2e31ea4ec968e9edd2c39d3eebf4a2d5cbd04e88639819ae3b71","affectsGlobalScope":true,"impliedFormat":1},{"version":"62bb211266ee48b2d0edf0d8d1b191f0c24fc379a82bd4c1692a082c540bc6b1","affectsGlobalScope":true,"impliedFormat":1},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true,"impliedFormat":1},{"version":"936e80ad36a2ee83fc3caf008e7c4c5afe45b3cf3d5c24408f039c1d47bdc1df","affectsGlobalScope":true,"impliedFormat":1},{"version":"d15bea3d62cbbdb9797079416b8ac375ae99162a7fba5de2c6c505446486ac0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"68d18b664c9d32a7336a70235958b8997ebc1c3b8505f4f1ae2b7e7753b87618","affectsGlobalScope":true,"impliedFormat":1},{"version":"eb3d66c8327153d8fa7dd03f9c58d351107fe824c79e9b56b462935176cdf12a","affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true,"impliedFormat":1},{"version":"69ab18c3b76cd9b1be3d188eaf8bba06112ebbe2f47f6c322b5105a6fbc45a2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"fef8cfad2e2dc5f5b3d97a6f4f2e92848eb1b88e897bb7318cef0e2820bceaab","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"954296b30da6d508a104a3a0b5d96b76495c709785c1d11610908e63481ee667","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac9538681b19688c8eae65811b329d3744af679e0bdfa5d842d0e32524c73e1c","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a969edff4bd52585473d24995c5ef223f6652d6ef46193309b3921d65dd4376","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true,"impliedFormat":1},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"f1e2a172204962276504466a6393426d2ca9c54894b1ad0a6c9dad867a65f876","affectsGlobalScope":true,"impliedFormat":1},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true,"impliedFormat":1},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true,"impliedFormat":1},{"version":"52ada8e0b6e0482b728070b7639ee42e83a9b1c22d205992756fe020fd9f4a47","affectsGlobalScope":true,"impliedFormat":1},{"version":"3bdefe1bfd4d6dee0e26f928f93ccc128f1b64d5d501ff4a8cf3c6371200e5e6","affectsGlobalScope":true,"impliedFormat":1},{"version":"59fb2c069260b4ba00b5643b907ef5d5341b167e7d1dbf58dfd895658bda2867","affectsGlobalScope":true,"impliedFormat":1},{"version":"639e512c0dfc3fad96a84caad71b8834d66329a1f28dc95e3946c9b58176c73a","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","affectsGlobalScope":true,"impliedFormat":1},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true,"impliedFormat":1},{"version":"959d36cddf5e7d572a65045b876f2956c973a586da58e5d26cde519184fd9b8a","affectsGlobalScope":true,"impliedFormat":1},{"version":"965f36eae237dd74e6cca203a43e9ca801ce38824ead814728a2807b1910117d","affectsGlobalScope":true,"impliedFormat":1},{"version":"3925a6c820dcb1a06506c90b1577db1fdbf7705d65b62b99dce4be75c637e26b","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a3d63ef2b853447ec4f749d3f368ce642264246e02911fcb1590d8c161b8005","affectsGlobalScope":true,"impliedFormat":1},{"version":"b5ce7a470bc3628408429040c4e3a53a27755022a32fd05e2cb694e7015386c7","affectsGlobalScope":true,"impliedFormat":1},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true,"impliedFormat":1},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true,"impliedFormat":1},{"version":"b4b67b1a91182421f5df999988c690f14d813b9850b40acd06ed44691f6727ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"bab26767638ab3557de12c900f0b91f710c7dc40ee9793d5a27d32c04f0bf646","affectsGlobalScope":true,"impliedFormat":1},{"version":"436aaf437562f276ec2ddbee2f2cdedac7664c1e4c1d2c36839ddd582eeb3d0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e3c06ea092138bf9fa5e874a1fdbc9d54805d074bee1de31b99a11e2fec239d","affectsGlobalScope":true,"impliedFormat":1},{"version":"87dc0f382502f5bbce5129bdc0aea21e19a3abbc19259e0b43ae038a9fc4e326","affectsGlobalScope":true,"impliedFormat":1},{"version":"b1cb28af0c891c8c96b2d6b7be76bd394fddcfdb4709a20ba05a7c1605eea0f9","affectsGlobalScope":true,"impliedFormat":1},{"version":"2fef54945a13095fdb9b84f705f2b5994597640c46afeb2ce78352fab4cb3279","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac77cb3e8c6d3565793eb90a8373ee8033146315a3dbead3bde8db5eaf5e5ec6","affectsGlobalScope":true,"impliedFormat":1},{"version":"56e4ed5aab5f5920980066a9409bfaf53e6d21d3f8d020c17e4de584d29600ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ece9f17b3866cc077099c73f4983bddbcb1dc7ddb943227f1ec070f529dedd1","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a6282c8827e4b9a95f4bf4f5c205673ada31b982f50572d27103df8ceb8013c","affectsGlobalScope":true,"impliedFormat":1},{"version":"1c9319a09485199c1f7b0498f2988d6d2249793ef67edda49d1e584746be9032","affectsGlobalScope":true,"impliedFormat":1},{"version":"e3a2a0cee0f03ffdde24d89660eba2685bfbdeae955a6c67e8c4c9fd28928eeb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811c71eee4aa0ac5f7adf713323a5c41b0cf6c4e17367a34fbce379e12bbf0a4","affectsGlobalScope":true,"impliedFormat":1},{"version":"51ad4c928303041605b4d7ae32e0c1ee387d43a24cd6f1ebf4a2699e1076d4fa","affectsGlobalScope":true,"impliedFormat":1},{"version":"d4b1d2c51d058fc21ec2629fff7a76249dec2e36e12960ea056e3ef89174080f","affectsGlobalScope":true,"impliedFormat":1},{"version":"61d6a2092f48af66dbfb220e31eea8b10bc02b6932d6e529005fd2d7b3281290","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e7f8264d0fb4c5339605a15daadb037bf238c10b654bb3eee14208f860a32ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},"635d97969c350468aa5861b3df0ebcbb8478d1443ca1925624f42523e6977a39","a8c26adbb4381a5434218f5b71e4046d90a5ea69fc7a921fe4b04d238796763d","595b392156c742f2140140a0defc2e32f78a1f17f4bf915045a63b387a6b5ef3","10a6710b34f5c43e5b9bd57afb08290c38950ad9fb7c2f6e7b4973564a3e1c9a","e52eec282bbf713ced6a1aedc8aa070e43cc5282c2b99265b09d9123d1f432e3","1a4f4a3ded7e045d241b181c52affc858cc45c64b3d089bb870a9de9695387a7","169d3074997b35037a6391faece98c86d8087b4ed1479a914545196ebd1410ae","885dc68a7b6e492ff4e3c3fd82ac2f524e22643d252f1438a9868a23d997db17","3d91c79111b3664edb18080173f8d80678f7b6945d37d823323197843e6b219a","823840a226812cefa488ac4710942539ddcc218c944d0e3e7ba7e38e7482b788",{"version":"633968e2c3f300a932773a8d3777c5af23c28ed5c48aa065e95891e1cdcdb06b","signature":"bbae82952ee9fcaee6deaf8c87af532892d816f8149e369b6125d594ba9d25cf"},"edfe10afb5dfa79dc3681c3ce2fd73cf84187f82cde5ac9acd0ed6045812be81","438ef5faada40623680ebd13ae7125e99cfdc7c5326e8b0d3eb07e5f9321bd42","3c85aeafee03e18cb01a4fd383192931acc3f950df08b248519467ceadd4a0ac","0ffdcafaf8eed4f147e35a0d34fa4a5adf8424d3453a4ae34a459247c121537b","45880d016069eaff83f54047396b0f98e413ec43f50c59131d45c9c92dd44dea","2db065eba6f02c7ea4174dfb607acc5773ab2522e35a8e0f723709e07ec66158","97a19b229516b92ec137b44d54f6454b50e105fc4fff659daba9f754982b9a0d","f9a45114811a10722053e6c5329c41eace3295daa477d12558279df4dcbfba71","3698e6b26f72a770b4bfc15504c04bfb678a355b46ceaa7a42cbdac0893b4d5c","f337140c4001e5beb160f61f96115fa07b1da1de621c2056b83d236f184fb373","f3ef3a7a5483561102e1683bbd2d69b6d5764799d3787d80d2ca568f9110d29e","e3f077ed66cc7832adc6c17146cfb730729e8257e78d7bdc7ae34c4276a7de09","1482c77b2d28fa9254f48e76f2ff40f1cfb6bab261fb2d2b98035bb809042939","53bcf7a22d47bd524c0bf6869165d59364e472c94066af1e1b0d80cb1826306f","880e53e2d42225d6b22e2e2b4e51cc8b845094a5045b170eb79df031bfaceaac","1e56ad04bd9214bf4583941a499386488cb76389eee3bd65ec882f5e5613cbc8","6fa26b05e6b041a321db7a70f534a93b4eb616916015dddcdeaaf658a340209d","2c437f035a6f3bfe59a7d9ec427f81e1f2495746db06f841c3e2f4c2813cfaac","1f2e2f423c7ec93f80f4543278488d9de8f4d0d5b1385c691e313f42d17a3fca","f06d0f7bb803f3f00b4d0cd16b2d950fb826cf7efec3f68546f3e67746fb969e","d23e3a3000ecd6477941f5eaaa9ba5d72d29928a347ef9821a02a763997d95c4","3a0d9bd15a78cdc0f4454eb2ac681db16053538de2e1ef65021b12eda3d33323","019ee2a791e6af5796fdd66704fb0729be24f2e53ffa0e5e2d6f1be2bff9ad02","fce09eb9f7968387bb0891ce15015c18a09ad3a7331f2c425a331cbebba89527","aa25e092b861cfc27df68239047f8254fb21b4651b0017e8d15bab5414ab1988","a324afe60287f64ea6498d4f7c92dcdea77e8b44a8a32a912c074fd591b2c576",{"version":"152810252d22da1cb8a0381f593bafd977cd8ce3105407b32dc316596d2e99b8","signature":"b09adfe29851c03eb5e7c40f1d6f5f962cdd9f69224e1ccd8d8593352e5dd2a6"},{"version":"581c4067f39f2758c12ec64b2811a7350eaf88cd512ba4f2ade3320f4adaad09","signature":"dd2b0c59f11f870af65167cb233da75b96c0239e33c0954183480511bfa3e079"},{"version":"6e5c520f97ee982759a61a72881876c198c9d10732a4db9e644f58f1dd104353","signature":"b6bc216f5b1719f0ea67b0a1ae97283c8c04db6420a8055976d51ebdd857d10e"},"f153fd4d4780137d3c6794438072b688a71b3e8648d35e6a6e41019aef6070f9",{"version":"bdd931c37d4c3ddbf7694729a81251f34a24c98bddaaf27d851fb4dc2f4677db","signature":"86ab94987073b8ae616d797bc8e17657d6d007375b5cdee788d99b78e6dd7001"},{"version":"df330ee4158cb09d6c6c2846bede492886dac0e4cf4dc8324ee32a08fb36b190","signature":"d0bfef3cd422b6c62007638855b135e6c819d8de4dc09a0bf4ac68e3c74db426"},{"version":"43a3e0fbeb46e6c94ff2509ee8f465e7ed78739764a537b11bbea8f14234d4eb","signature":"7ada7e3e2abdd67409d4d1bf6b59b3c40162df87718106520db4ff2e9679c163"},{"version":"f96d6a8dc41a1e087d5fb2160c2f44b520f12e28518d500adfff449698cbe6b0","signature":"0de641f39c2e9c786f6ebdab5a8a15607297dd1fdacce5d736005eca48670b3a"},{"version":"a7ce400490236a50af31a713114e5e7df0b7dab30542470ca473b8c0fad2a9d3","signature":"a95f57f06164e24a1fdb917199867f9fb551abe0504fdef2ec66f05ed289c025"},{"version":"7f1d330b53c09af17310f159823e661d2fca51eac3a04b10a3926fe7e3a82b92","signature":"93460d55d62a100e35444e1df6a98a60b3ef14c625158549c43573e6a3d1f739"},{"version":"78d77392eef4ac6632779c56bb0cf743e95658fec2b5965256c24aa85adab416","signature":"42f79c87ef88f8ec06381e3cf774fcfcbdba0868d9aac3c1dbdb71b6c63b59ba"},{"version":"d1084e95f8f450ea359e6a377d2ceb296666f35f0989e648aa80ff70ad30cb5f","signature":"89644957e9c2ffdfc08212bb0b45ec1fb88870cf362b204658a7d55155d22f87"},{"version":"6f35e207094bd6251fc132dde7094d5a43d4e3752071da3792004c9aca0ef32e","signature":"08abb08473a683d16ed53a9abe4ae3a2e42060671605bb829cb39b833f5f98b8"},{"version":"59fba1e1def86234dde906d5f5111d974ade421d84d33f3fddd2588a4a251809","signature":"db11ec78fea8f5ba88d53c95404414eb8cf3fbcadf23f32c447cb7f6be332086"},{"version":"f23231e93a28183eb304fbba1013844c57ba5302a1aa1ec1b568349ed89e9cce","signature":"2f13d8578b2a733e7b0bccbf046ec1934b42f55fd5e936a395ba0e8c54065de7"},{"version":"ca2e95e0bc4ff3a8fa680dbe1163f272e4d6c00335f3c6b2e10648681e11dc9f","signature":"feed043a394fb90cdf996bf2c2ff158a83a71b464962dede2735c5ecf8d3ad4f"},{"version":"f01be805aa367898ce7a9163b7b13725452de5723e637d4073f19f430ff95028","signature":"e355c20edb52101b60adfb83d8d392ea18722b46f4eb8dce21b3eec26ce2b59b"},{"version":"38a230f15c533d9b59150f5399a27725117943ed68b01cb35dd06cffd718b5e9","signature":"308cd7849c37a3cf5d8636ec5e63433c75e6dccb9c3f45bc41d11d7e2c937b2b"},{"version":"e5b02769235e4c4f6a8cf53d42fa8b2eedba7d9c8dd08f2fe60a148bdeb1fae4","signature":"03448352e2ff43645e826d2a1094b8b072c9fe009e059620b33b1204604101e2"},{"version":"4a4587014eb5f8bbbdb242982e35cc9fa4bfd21ea564a344bef6c99dd6123c4d","signature":"fdebada06cf63b2f13deb71bbad49a9a5291e2deb60b5343387732bf6b2cf42a"},{"version":"31f8c2987faa1757c11be849a05c211dac8d3d6af6dbb4e0e90fa8d00d52662b","signature":"1bfacb1f85ea55ce8c2b0a7e6380c5c15c443fc860361c6488d2d490946f1faf"},{"version":"ab6b5aabb5baa122ef50045a2ce3d23305c07f1a04cfadf301e69f97e76d460b","signature":"19a504372cec49a57c0d516c6d3fa43446ab026ccb45d8ac706430adfb7a44cd"},{"version":"61b2b4b033a6e460c0fcc511f47c029f9c4d455084a0620c622dc3d4a0245698","signature":"a8910e7c69c0191377502fce63f5770f8d4df54bf60902a39ad340f8f1991a50"},{"version":"c6bc7dd1104763f828ea60dcad41ed400f9480b6d1346c9e7f5399d20d299a69","signature":"ec895812cb4e6ca8008c8ec354409db37ae653c41699ca1d63eb0b42c7222324"},{"version":"cc9862e66dfb762d370bfe13ce5f217236f50110c156bfb9f5a783eb8bda53c4","signature":"fec418cd90e47d52541f89d748b080700bd94d6de2db20a010a7deb4b269d72d"},{"version":"15fe687c59d62741b4494d5e623d497d55eb38966ecf5bea7f36e48fc3fbe15e","impliedFormat":1},{"version":"bf1398f368eb9bf4b347a891b4dcb66114a97e8e3f9a94f38caa705eac895ce5","affectsGlobalScope":true},{"version":"bf5897ad4510e099438547cc4c0661700a0909307fab8ef3180159c929e455c7","affectsGlobalScope":true},"cb55ea3b1a0dd0d6fbeb720b3185208c983641b0a960f52020e698f054b9fe2a",{"version":"12f20310f22fa2cad6018638d2bfeaa966db651cea186272506e53d0f64d20dc","affectsGlobalScope":true,"impliedFormat":1},{"version":"9c42e375483faf69f0d2efc0cdd3602c4fca655ac2a5df3f9b6a39f22cf7c519","affectsGlobalScope":true},{"version":"b38d0bfd2d1c1536d40fc5941fab5c5dd2749fb874fb57c451211ab806a3be8a","affectsGlobalScope":true,"impliedFormat":1},{"version":"8c63699627e2dd957f31dddfaf644a96ccf92eec6e9277a430421ae2d7e98b00","affectsGlobalScope":true,"impliedFormat":1},{"version":"da4a8f6629bc630a6b85d0899ca3f610402794a1535d3eb8be826acef5efedfb","affectsGlobalScope":true,"impliedFormat":1},{"version":"3c57b01d6648405ea1784c0176e2ad77f77568e7a84d5cb4fc8eefabf00ca22b","affectsGlobalScope":true,"impliedFormat":1},{"version":"a4a5a79b9d9b4e4dfa18279d85686fac7eb155b828ddf7a677ceb57f9384f043","affectsGlobalScope":true,"impliedFormat":1}],"root":[88,[115,117],[119,139],[141,143],145],"options":{"allowJs":true,"allowSyntheticDefaultImports":true,"composite":true,"declaration":true,"declarationMap":false,"esModuleInterop":true,"jsx":2,"module":99,"noImplicitAny":true,"noUncheckedIndexedAccess":true,"outDir":"..","rootDir":"../../src","skipLibCheck":true,"sourceMap":false,"strict":true,"target":7,"verbatimModuleSyntax":true},"referencedMap":[[147,1],[149,2],[150,3],[141,3],[145,4],[86,5],[87,6],[84,7],[83,8],[85,9],[121,10],[122,11],[139,12],[137,13],[117,14],[120,13],[88,15],[116,13],[133,16],[136,17],[135,18],[129,19],[134,20],[125,21],[130,22],[132,23],[131,24],[138,25],[119,26],[92,27],[114,28],[98,27],[111,27],[112,27],[99,27]],"latestChangedDtsFile":"./index.d.ts","version":"5.7.3"}
|
|
@@ -9,7 +9,7 @@ interface Options extends RendererOptions {
|
|
|
9
9
|
width?: number;
|
|
10
10
|
height?: number;
|
|
11
11
|
}
|
|
12
|
-
export declare const createTransform: (segmenter: Segmenter, { width, height, foregroundThreshold, backgroundBlurAmount, edgeBlurAmount, maskCombineRatio, backgroundImageUrl, effects, backend, selfManageSegmenter, ...options }?: Partial<Options>) => SegmentationTransform & {
|
|
12
|
+
export declare const createTransform: (segmenter: Segmenter, { width, height, foregroundThreshold, backgroundThreshold, backgroundBlurAmount, edgeBlurAmount, maskCombineRatio, backgroundImageUrl, sigmaSpace, sigmaRangeLo, sigmaRangeHi, effects, backend, selfManageSegmenter, personCenter, excludeBystanders, morphPass, morphErodeRadiusPx, morphDilateRadiusPx, lightWrapIntensity, downSampleFactor, lightWrapTightness, lightWrapBlurAmount, lightWrapEdgeBand, ...options }?: Partial<Options>) => SegmentationTransform & {
|
|
13
13
|
outputCanvas: HTMLCanvasElement | undefined;
|
|
14
14
|
outputDelegate: OffscreenCanvas | undefined;
|
|
15
15
|
backgroundImage?: ImageRecord;
|