@pexip/media-processor 20.3.5 → 22.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 +109 -0
- package/README.md +17 -10
- package/api-docs/README.mdx +69 -23
- package/api-docs/functions/assertMediaStreamVideoTrack.mdx +13 -0
- package/api-docs/functions/createBenchmark.mdx +17 -5
- package/api-docs/functions/createFrameCallbackRequest.mdx +8 -2
- package/api-docs/functions/createMediaStreamTrackInputProcessAdaptor.mdx +10 -0
- package/api-docs/functions/createReadWritableStreamFallbackInputProcessAdaptor.mdx +17 -0
- package/api-docs/functions/createReadWritableStreamInputProcessAdaptor.mdx +10 -0
- package/api-docs/functions/createVideoProcessor.mdx +3 -3
- package/api-docs/functions/createWindowedStats.mdx +23 -0
- package/api-docs/functions/getDefaultInputProcessAdaptor.mdx +17 -0
- package/api-docs/functions/iou.mdx +19 -0
- package/api-docs/functions/isMediaStreamVideoTrack.mdx +13 -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/Analyzer.mdx +4 -0
- package/api-docs/interfaces/Benchmark.mdx +26 -2
- package/api-docs/interfaces/FrameTransformStats.mdx +9 -0
- package/api-docs/interfaces/Gain.mdx +4 -0
- package/api-docs/interfaces/ImageSegmenterOptions.mdx +0 -2
- package/api-docs/interfaces/InputProcessAdaptor.mdx +28 -0
- package/api-docs/interfaces/Process.mdx +8 -3
- package/api-docs/interfaces/ProcessEventMute.mdx +6 -0
- package/api-docs/interfaces/ProcessWorkerEventOpened.mdx +7 -0
- package/api-docs/interfaces/ProcessWorkerEventStats.mdx +6 -0
- package/api-docs/interfaces/ProcessWorkerEventUpdated.mdx +7 -0
- package/api-docs/interfaces/ProcessorEvent.mdx +1 -1
- package/api-docs/interfaces/ProcessorOptions.mdx +0 -1
- package/api-docs/interfaces/ProcessorProcessOptions.mdx +3 -1
- package/api-docs/interfaces/ProcessorUpdateOptions.mdx +15 -0
- package/api-docs/interfaces/ReadWritableStream.mdx +12 -0
- package/api-docs/interfaces/Renderer.mdx +2 -2
- package/api-docs/interfaces/RendererOptions.mdx +25 -12
- package/api-docs/interfaces/Segmenter.mdx +89 -10
- package/api-docs/interfaces/SegmenterOptions.mdx +0 -1
- package/api-docs/interfaces/SelectionOptions.mdx +15 -0
- package/api-docs/interfaces/Stats.mdx +11 -0
- package/api-docs/interfaces/VideoProcessor.mdx +49 -5
- package/api-docs/interfaces/Weights.mdx +12 -0
- package/api-docs/type-aliases/OptionalKeys.mdx +10 -0
- package/api-docs/type-aliases/ProcessEvents.mdx +1 -0
- package/api-docs/type-aliases/ProcessInputType.mdx +3 -1
- package/api-docs/type-aliases/ProcessWorkerEvents.mdx +6 -4
- package/api-docs/type-aliases/ProcessorWorkerEvents.mdx +1 -1
- package/api-docs/type-aliases/Struct.mdx +9 -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/FRAME_RATE.mdx +1 -1
- package/api-docs/variables/ImageFetchError.mdx +3 -0
- 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/MediaStreamTrackTransferable.mdx +5 -0
- package/api-docs/variables/PERSON_CENTER.mdx +3 -0
- package/api-docs/variables/RENDERER_OPTIONS_STRUCT.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/cloneImageRecord.mdx +19 -0
- package/api-docs/variables/compareImageRecords.mdx +18 -0
- package/api-docs/variables/createRemoteImageBitmap.mdx +1 -1
- package/api-docs/variables/getCanvasRenderingContext2D.mdx +14 -0
- package/api-docs/variables/getImageSize.mdx +13 -0
- package/api-docs/variables/isRenderOptionsKey.mdx +13 -0
- package/api-docs/variables/isValidGpuAPI.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 -44
- 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 +2 -3
- package/dist/common/backends/webgl/texture.js +21 -19
- 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 +72 -10
- 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 +205 -43
- 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 -3
- package/dist/common/backends/webgpu/texture.js +29 -20
- 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 +22 -5
- package/dist/common/constants.js +23 -5
- package/dist/common/index.d.ts +2 -0
- package/dist/common/index.js +2 -0
- package/dist/common/tsconfig.tsbuildinfo +1 -1
- package/dist/common/typeGuards.d.ts +2 -0
- package/dist/common/typeGuards.js +7 -0
- package/dist/common/types/media.d.ts +5 -1
- package/dist/common/types/messageEvents.d.ts +31 -4
- package/dist/common/types/processor.d.ts +6 -4
- package/dist/common/types/render.d.ts +147 -15
- package/dist/common/types/render.js +23 -1
- package/dist/common/types/segmentation.d.ts +0 -12
- package/dist/common/types/utils.d.ts +21 -0
- package/dist/common/utils.d.ts +29 -2
- package/dist/common/utils.js +206 -10
- package/dist/main/audio.js +3 -3
- package/dist/main/benchUtils.d.ts +35 -3
- package/dist/main/benchUtils.js +149 -15
- package/dist/main/index.d.ts +1 -1
- package/dist/main/index.js +1 -1
- package/dist/main/tsconfig.tsbuildinfo +1 -1
- package/dist/main/types.d.ts +0 -6
- package/dist/main/utils.d.ts +4 -0
- package/dist/main/utils.js +31 -0
- package/dist/main/video/constants.d.ts +1 -4
- package/dist/main/video/constants.js +1 -5
- package/dist/main/video/index.d.ts +3 -4
- package/dist/main/video/index.js +3 -4
- package/dist/main/video/inputProcessAdaptor.d.ts +30 -0
- package/dist/main/video/inputProcessAdaptor.js +198 -0
- package/dist/main/video/segmenter.d.ts +35 -0
- package/dist/main/video/{segmenters/mediapipe.js → segmenter.js} +93 -53
- package/dist/main/video/typeGuards.d.ts +2 -0
- package/dist/main/video/typeGuards.js +8 -1
- package/dist/main/video/types.d.ts +36 -16
- package/dist/main/video/utils.d.ts +5 -4
- package/dist/main/video/utils.js +49 -44
- package/dist/main/video/video.d.ts +29 -7
- package/dist/main/video/video.js +323 -28
- package/dist/workers/mediaWorker.js +35 -162
- package/dist/workers/tsconfig.tsbuildinfo +1 -1
- package/dist/worklets/tsconfig.tsbuildinfo +1 -1
- package/package.json +13 -12
- package/api-docs/functions/createCanvasTransform.mdx +0 -14
- package/api-docs/functions/createVideoTrackProcessor.mdx +0 -9
- package/api-docs/functions/createVideoTrackProcessorWithFallback.mdx +0 -15
- package/api-docs/interfaces/Detector.mdx +0 -81
- package/api-docs/interfaces/SegmentationParams.mdx +0 -18
- package/api-docs/interfaces/Transform.mdx +0 -62
- package/api-docs/type-aliases/ProcessVideoTrack.mdx +0 -15
- package/api-docs/type-aliases/SegmentationTransform.mdx +0 -3
- 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/main/transformer.d.ts +0 -1
- package/dist/main/transformer.js +0 -4
- package/dist/main/video/canvasTransform.d.ts +0 -17
- package/dist/main/video/canvasTransform.js +0 -253
- package/dist/main/video/segmenters/mediapipe.d.ts +0 -22
- package/dist/main/video/transformer.d.ts +0 -9
- package/dist/main/video/transformer.js +0 -68
- package/dist/main/video/videoStreamTrackProcessor.d.ts +0 -20
- package/dist/main/video/videoStreamTrackProcessor.js +0 -86
|
@@ -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.webworker.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","../../src/common/types/media.ts","../../src/common/types/segmentation.ts","../../src/common/constants.ts","../../src/common/types/render.ts","../../src/common/utils.ts","../../src/common/canvasRenderUtils.ts","../../src/common/global.d.ts","../../src/common/types/utils.ts","../../src/common/types/messageEvents.ts","../../src/common/types/processor.ts","../../src/common/index.ts","../../src/common/m3.ts","../../src/common/typeGuards.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/common/backends/webgl/types.ts","../../src/common/backends/webgl/webglUtils.ts","../../src/common/backends/webgl/shaders/vertexShader.ts","../../src/common/backends/webgl/shaders/blendFragmentShader.ts","../../src/common/backends/webgl/blender.ts","../../src/common/backends/webgl/shaders/dualFilterBlurFragmentShader.ts","../../src/common/backends/webgl/blur.ts","../../src/common/backends/webgl/shaders/textureFragmentShader.ts","../../src/common/backends/webgl/canvas.ts","../../src/common/backends/webgl/texture.ts","../../src/common/backends/webgl/textureToTexture.ts","../../src/common/backends/webgl/shaders/smoothingMaskFragmentShader.ts","../../src/common/backends/webgl/smoothingMask.ts","../../src/common/backends/webgl/renderer.ts","../../src/common/backends/webgl/webgl.mock.ts","../../src/common/backends/webgpu/constants.ts","../../src/common/backends/webgpu/blender.ts","../../src/common/backends/webgpu/dualFilterBlur.ts","../../src/common/backends/webgpu/texture.ts","../../src/common/backends/webgpu/webgpuUtils.ts","../../src/common/backends/webgpu/smoothingMask.ts","../../src/common/backends/webgpu/textureToTexture.ts","../../src/common/backends/webgpu/renderer.ts","../../src/common/backends/webgpu/types.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/lib/index.d.ts","../../../../.yarn/cache/@types-trusted-types-npm-2.0.6-c4c3cd363b-04250c7175.zip/node_modules/@types/trusted-types/index.d.ts"],"fileIdsList":[[142],[144],[146],[140],[80,89,115,116,117,118,119],[80,82,89,115,116,117,118,121],[80,89,115,116,117,118,123],[80,81,82,115,116,120,122,124,125,126,128],[80,81,89,115,116,117,118,127],[78,80,89,115,116,117,118,123],[79,116],[80,115,131,141],[78,80,82,115,131,141],[80,81,82,132,133,134,135,136,137],[80,81,115,141],[78,80,115],[80,115],[78,82],[78,79,80,81,82,85,86,87],[85],[80],[78,79,80,81,86],[78,80],[78,79,80,81],[91],[91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114]],"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":"35b3160b7e8925d6f4754642efbfe5db73ad2a4b3bec7f570f57fc38705d5f0f","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},{"version":"8c2a802249238599805778a522f91d2727f24dce34e778022eb68936dd9a1c8b","signature":"a8c26adbb4381a5434218f5b71e4046d90a5ea69fc7a921fe4b04d238796763d"},{"version":"c896de062435210bf560b8f2da614c5611a7118072023ad40705421b7c5496d1","signature":"635d97969c350468aa5861b3df0ebcbb8478d1443ca1925624f42523e6977a39"},{"version":"ac2d2022e3c5256110587b760ea97c2dbb624b1fed122315ac79bb1402d0c538","signature":"2ab8a8463c75bcf5aa0adc55f4df837a518bd5ed4e578cc7fa4e79b3111ebd08"},{"version":"378e0b137e82e4aeb3ae2a3f7a518e585d28848dcfb064f6edd6e9980c1dee72","signature":"f14aacf7298d78222bc54e74cf591ae55bace8dc731f3972d5636395577a9be2"},{"version":"74be0cf50649ef23f0cae1a5171f5c5b2aa2382cca2346e20a46a6890a888a02","signature":"738c8593510b40879628719d1426b4eed043998f4bd1238a82760aeec3ef1405"},{"version":"8751fbb363f8fe36ef828eebcb4abbeb592a9f6334fcff8e8f6ea659cbff5832","signature":"3d91c79111b3664edb18080173f8d80678f7b6945d37d823323197843e6b219a"},{"version":"73b86459cd3bd38ea588ca5dffc3444a0cfb47f9b7940867256a8a1aa7978334","affectsGlobalScope":true},{"version":"0233bfae529cd85ad4c8019666a98d5306e3a347b0e40be1ad33988b7e51e82c","signature":"8614f7b7029832d4cf36ff07ca0557178641bf435d2b4efb49020b9b6e8f0ba7"},{"version":"db4ef009b163e6dda7a39f3071a3d177877377c29f4901de7f30125ca5a88698","signature":"10a6710b34f5c43e5b9bd57afb08290c38950ad9fb7c2f6e7b4973564a3e1c9a"},{"version":"4ebd5ddcde130b7176ead9ba81f23befbb412a3c0ba8bca2abcb6cabbc492589","signature":"169d3074997b35037a6391faece98c86d8087b4ed1479a914545196ebd1410ae"},"6414af6c4cae5ea966b68dffccc7fdedf5bd02b5bae2f071e1924c4f45270834",{"version":"cfcb5fe6d31892ebd7b2e1a35854aaf5b4756182dfdee07b1b858aa74f380ce9","signature":"3d2bfef15a27a69f029c2a326cbd578e90a362d7147b3528d68bf7a0525604f5"},{"version":"a95a7f222fa13076d2612d0b1b705844fe4eb424e23aa3eebd9e78abd9b2b687","signature":"d5024000a79d743d4f85f2db53eb6e183b439cdaa63517255a51a53e90d7a0b0"},"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","70f51cbe96df167534a4a4465196e6a4ee03ec99434305a4deee7da55c013d6f",{"version":"aec025c42724dcfbb9ea651b01fd0ec01318a2deda2a101921858ca5ec80a8d6","signature":"33ea48814c5e73297b9149ef176880e6b8abc0fa598a2e0c16c700f55bbea3b3"},{"version":"42ecca925b84e401aaf8675d0bd9166b8387e52765ccf60fe7a235f7665b55df","signature":"121a2d7883ae582dc2c0a09c9217111179aff6fda6506e0d14d7f93024a7b772"},{"version":"fcb467cd21b95060b4b4560cb686288cd3241631d1dc64e49dfedff8af5fe9d6","signature":"1f746177b085f954a2dc44f240188b6a19fd2513991eb12313f7b4208b65e445"},{"version":"f3a7f40bb1d8d8503a26a5b56b487eee80fea4b0456d85ede5ea596dd4c272ac","signature":"062eeacc405e07517310fc91745101b63973f2323cb843dd908432626c2e5e67"},{"version":"c62b257d31f31515453fd43274dc1fe3f4d31fbd606d1b8ac26c3f935781b51f","signature":"1871952a5d71be12a10be4b9e7a250866769e45996c67d8b4bdbc23d17545e60"},{"version":"98ba8534867a4021110dc98da98e7a5a1c525d881d2126ab2739b5c628c392b0","signature":"620d7b40c64c6eaaeeb94dec2a1b7c9a64021c799ed1ee085833acf462a53ff2"},{"version":"a2af152c49ab4b88c05b8a6b64eb8a233c70cfec80f9dc8429df82795d3f43d1","signature":"d4360888d9fab8c5e360e02d8a570eae7a484f68fea61b1fa942b1d0e5fdd1cc"},{"version":"fd106197ce87d8facf130bf8b3fd320466efe1410887502268019916748e1f23","signature":"472d1fa8ab8b96703a67016fa7d6ac2bd81f4d283a08dbddda6df6675f0bbcf6"},{"version":"b4a23767ea0ecd991388110d489f432eb0b89d3989a425669fa085ea745ba883","signature":"9fa6dece1bf6d61884c9ddaa653aafd4fc18dee30d4643419d206b636b5d3326"},{"version":"79911f9fcda8031a605faefd2211ffc232f55d6d037da9d1ea697ba1dba78588","signature":"344b129f6b799d8408006950a85d698892ee0a5988fc0ed88a725c8ba6089b0f"},{"version":"855d6f754ee1cddcab34e6f512558a4fab45bf66f20610178b3de06bff7bcf44","signature":"7ca3919ff5c018083cb9cc0b98e0db3a192bdfdb140225a78fa670c65ac1129a"},{"version":"55759575dcd1864f2dc539a487e5650492712c42af85dd109ca1aa68bf445e08","signature":"09ae2ada8b7d9dd638c173fb8ac4c7dbbf278904eb7f4b74b6e48c7495dc701f"},{"version":"209087ffb5aef572d6750b4b762b326bab08e3bc8f8ebf8d3ba39bdc0336941e","signature":"93efea2a6874837fce1a8e5ecdc0d40f11e0f3b292fa894c29de71ff4381e4f0"},{"version":"702534fa9a0be7699fabad7fd3b4afcfe1658af1bdbc13b001877402fd2d8e96","signature":"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855","affectsGlobalScope":true},{"version":"a22d9cc7bb429b170b54f62b86efd55e3f2c93921457cc9c046489746335ceba","signature":"5eb7171562bf0ee6904994052aee4861bced387b2edc850f580fcddb5bcf658d"},{"version":"8a555b6b9d052026dc15e1638fc72a2f4dd1b6562a1dbed2f7dc9c4f9569cf9a","signature":"92c457bbecd566d2329bba254c00c5b24daa057ab3c1c3af5219727bf7dca48a"},{"version":"59a4d2829b749ed9ffd317c48eaaaf1b0499a2ebaa333b7f62aa5a9cc3180f94","signature":"b2a2c0f7ee082e69ad30967141fcc7b460800467a2cb6a13dfa74549e9f54423"},{"version":"57d42a6416f1eba193c6a48ab6a567ffb51d8ae849ab3b49b5ae08253921bee6","signature":"2522f0f88aff287a348b8db370179206e8277cc59e59e19db2ae697bfc48f9ee"},{"version":"06c041d68bf429dea66d3a80d687c80405fcfdf0c5f49f9e73b1e2a243264136","signature":"921de9775bd7619e82d051f3b3b3722a9f4ab4d8f8b3797d6dcbfbc458e11266"},{"version":"ab49d5a44ddd9a0d637ef135609ff248d491860f9df70ede6dd3676fded09e96","signature":"d2ee744637f71a1a838c71355b678fe794cd8b1a61d232d047e9e9ec02e6caa5"},{"version":"877d24e81169f57b4b4600f1b793347c7f085f1e979060acc601560d1d22c534","signature":"433adce0e90ad884197c451e6552be6b4fb331f7145c469468163befdfdde9a9"},{"version":"ef3bd10bd9a56c1456d40573c71f2c142eb446ca11b783d3134fa616991076aa","signature":"4832516ab87ef75af5fb417297fbcbd128815f31c024a53aa70e4a678e4e370e"},"1fe8659a06428274e449472b073bcbe9291c39929c8199fdcbc3f3b9660b147d",{"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":"15fe687c59d62741b4494d5e623d497d55eb38966ecf5bea7f36e48fc3fbe15e","impliedFormat":1},{"version":"a4a5a79b9d9b4e4dfa18279d85686fac7eb155b828ddf7a677ceb57f9384f043","affectsGlobalScope":true,"impliedFormat":1}],"root":[[78,90],[116,139],141],"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":[[143,1],[145,2],[147,3],[141,4],[120,5],[122,6],[124,7],[129,8],[128,9],[125,10],[126,7],[117,11],[132,12],[133,13],[138,14],[136,15],[134,16],[137,17],[83,18],[88,19],[89,20],[90,21],[87,22],[81,23],[82,24],[94,25],[115,26],[100,25],[113,25],[114,25],[101,25]],"latestChangedDtsFile":"./backends/webgpu/types.d.ts","version":"5.7.3"}
|
|
1
|
+
{"fileNames":["../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es5.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2015.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2016.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2017.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2018.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2019.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2020.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2021.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2022.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2023.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2024.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2025.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.esnext.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.webworker.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2015.core.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2016.intl.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2017.date.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2017.object.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2017.string.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2019.array.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2019.object.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2019.string.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2020.date.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2020.string.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2020.number.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2021.promise.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2021.string.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2021.intl.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2022.array.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2022.error.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2022.intl.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2022.object.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2022.string.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2022.regexp.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2023.array.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2023.collection.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2023.intl.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2024.arraybuffer.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2024.collection.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2024.object.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2024.promise.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2024.regexp.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2024.sharedmemory.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2024.string.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2025.collection.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2025.float16.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2025.intl.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2025.iterator.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2025.promise.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.es2025.regexp.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.esnext.array.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.esnext.collection.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.esnext.date.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.esnext.decorators.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.esnext.disposable.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.esnext.error.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.esnext.intl.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.esnext.sharedmemory.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.esnext.temporal.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.esnext.typedarrays.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.decorators.d.ts","../../../../.yarn/cache/typescript-patch-a9c0baa67b-e5501dfcf8.zip/node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../src/common/types/media.ts","../../src/common/types/segmentation.ts","../../src/common/constants.ts","../../src/common/types/render.ts","../../src/common/types/utils.ts","../../src/common/utils.ts","../../src/common/canvasRenderUtils.ts","../../src/common/types/messageEvents.ts","../../src/common/types/processor.ts","../../src/common/typeGuards.ts","../../src/common/index.ts","../../src/common/m3.ts","../../../utils/dist/asyncQueue.d.ts","../../../utils/dist/cancellablePromise.d.ts","../../../utils/dist/circularBuffer.d.ts","../../../utils/dist/diff.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/types.d.ts","../../../utils/dist/scheduler.d.ts","../../../utils/dist/subscribeEvent.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/index.d.ts","../../src/common/backends/webgl/types.ts","../../src/common/backends/webgl/webglUtils.ts","../../src/common/backends/webgl/binaryMask.ts","../../src/common/backends/webgl/blender.ts","../../src/common/backends/webgl/blur.ts","../../src/common/backends/webgl/canvas.ts","../../src/common/backends/webgl/diffAbsMask.ts","../../src/common/backends/webgl/geodesicReconstruction.ts","../../src/common/backends/webgl/jointBilateralFilter.ts","../../src/common/backends/webgl/morphErode.ts","../../src/common/backends/webgl/textureToTexture.ts","../../src/common/backends/webgl/selectComponent.ts","../../src/common/backends/webgl/replace.ts","../../src/common/backends/webgl/smoothingMask.ts","../../src/common/backends/webgl/tentBlur.ts","../../src/common/backends/webgl/texture.ts","../../src/common/backends/webgl/renderer.ts","../../src/common/backends/webgl/webgl.mock.ts","../../../../.yarn/cache/webgpu-utils-npm-2.0.3-0c0537764f-560e0ad94d.zip/node_modules/webgpu-utils/dist/2.x/typed-arrays.d.ts","../../../../.yarn/cache/webgpu-utils-npm-2.0.3-0c0537764f-560e0ad94d.zip/node_modules/webgpu-utils/dist/2.x/wgsl-types.d.ts","../../../../.yarn/cache/webgpu-utils-npm-2.0.3-0c0537764f-560e0ad94d.zip/node_modules/webgpu-utils/dist/2.x/data-definitions.d.ts","../../../../.yarn/cache/webgpu-utils-npm-2.0.3-0c0537764f-560e0ad94d.zip/node_modules/webgpu-utils/dist/2.x/buffer-views.d.ts","../../../../.yarn/cache/webgpu-utils-npm-2.0.3-0c0537764f-560e0ad94d.zip/node_modules/webgpu-utils/dist/2.x/generate-mipmap.d.ts","../../../../.yarn/cache/webgpu-utils-npm-2.0.3-0c0537764f-560e0ad94d.zip/node_modules/webgpu-utils/dist/2.x/attribute-utils.d.ts","../../../../.yarn/cache/webgpu-utils-npm-2.0.3-0c0537764f-560e0ad94d.zip/node_modules/webgpu-utils/dist/2.x/texture-utils.d.ts","../../../../.yarn/cache/webgpu-utils-npm-2.0.3-0c0537764f-560e0ad94d.zip/node_modules/webgpu-utils/dist/2.x/primitives.d.ts","../../../../.yarn/cache/webgpu-utils-npm-2.0.3-0c0537764f-560e0ad94d.zip/node_modules/webgpu-utils/dist/2.x/webgpu-utils.d.ts","../../src/common/backends/webgpu/types.ts","../../src/common/backends/webgpu/blender.ts","../../src/common/backends/webgpu/constants.ts","../../src/common/backends/webgpu/dualFilterBlur.ts","../../src/common/backends/webgpu/webgpuUtils.ts","../../src/common/backends/webgpu/jointBilateralFilter.ts","../../src/common/backends/webgpu/resize.ts","../../src/common/backends/webgpu/texture.ts","../../src/common/backends/webgpu/smoothingMask.ts","../../src/common/backends/webgpu/textureToTexture.ts","../../src/common/backends/webgpu/tentBlur.ts","../../src/common/backends/webgpu/replace.ts","../../src/common/backends/webgpu/renderer.ts","../../@types/worker.d.ts","../../@types/common.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"],"fileIdsList":[[146],[146,147,148],[147],[146,151],[146,148,149,150,151,152,153],[171],[91,100,127,128,129,170],[91,92,100,127,128,129,170],[91,94,100,127,128,129,170],[91,92,94,100,127,128,129,134,170],[91,92,94,100,127,128,129,170],[91,92,94,127,128,130,131,132,133,135,136,137,138,139,140,141,142,143],[91,92,94,127,128,138],[90,91,127,128],[91,92,127,154,155,172],[91,94,127,172],[91,92,127,154,159,172],[91,92,94,127,156,158,159,160,161,162,163,164,165,166],[91,127,154,159,172],[91,92,94,127,154,159,172],[91,127,161],[91,127],[93],[89,94],[89,90,91,92,93,94,95,96,97,98],[91,92],[89,90,91,92,96],[91],[89,90,91,92,93],[114],[101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126]],"fileInfos":[{"version":"bcd24271a113971ba9eb71ff8cb01bc6b0f872a85c23fdbe5d93065b375933cd","affectsGlobalScope":true,"impliedFormat":1},{"version":"3f88bedbeb09c6f5a6645cb24c7c55f1aa22d19ae96c8e6959cbd8b85a707bc6","impliedFormat":1},{"version":"7fe93b39b810eadd916be8db880dd7f0f7012a5cc6ffb62de8f62a2117fa6f1f","impliedFormat":1},{"version":"bb0074cc08b84a2374af33d8bf044b80851ccc9e719a5e202eacf40db2c31600","impliedFormat":1},{"version":"1a7daebe4f45fb03d9ec53d60008fbf9ac45a697fdc89e4ce218bc94b94f94d6","impliedFormat":1},{"version":"f94b133a3cb14a288803be545ac2683e0d0ff6661bcd37e31aaaec54fc382aed","impliedFormat":1},{"version":"f59d0650799f8782fd74cf73c19223730c6d1b9198671b1c5b3a38e1188b5953","impliedFormat":1},{"version":"8a15b4607d9a499e2dbeed9ec0d3c0d7372c850b2d5f1fb259e8f6d41d468a84","impliedFormat":1},{"version":"26e0fe14baee4e127f4365d1ae0b276f400562e45e19e35fd2d4c296684715e6","impliedFormat":1},{"version":"1e9332c23e9a907175e0ffc6a49e236f97b48838cc8aec9ce7e4cec21e544b65","impliedFormat":1},{"version":"3753fbc1113dc511214802a2342280a8b284ab9094f6420e7aa171e868679f91","impliedFormat":1},{"version":"999ca32883495a866aa5737fe1babc764a469e4cde6ee6b136a4b9ae68853e4b","impliedFormat":1},{"version":"17f13ecb98cbc39243f2eee1f16d45cd8ec4706b03ee314f1915f1a8b42f6984","impliedFormat":1},{"version":"d52ed68e7eb5881768a55713c9b5c7c443e6b46de15c04e348928b8efd20b110","affectsGlobalScope":true,"impliedFormat":1},{"version":"eadcffda2aa84802c73938e589b9e58248d74c59cb7fcbca6474e3435ac15504","affectsGlobalScope":true,"impliedFormat":1},{"version":"105ba8ff7ba746404fe1a2e189d1d3d2e0eb29a08c18dded791af02f29fb4711","affectsGlobalScope":true,"impliedFormat":1},{"version":"00343ca5b2e3d48fa5df1db6e32ea2a59afab09590274a6cccb1dbae82e60c7c","affectsGlobalScope":true,"impliedFormat":1},{"version":"ebd9f816d4002697cb2864bea1f0b70a103124e18a8cd9645eeccc09bdf80ab4","affectsGlobalScope":true,"impliedFormat":1},{"version":"2c1afac30a01772cd2a9a298a7ce7706b5892e447bb46bdbeef720f7b5da77ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"7b0225f483e4fa685625ebe43dd584bb7973bbd84e66a6ba7bbe175ee1048b4f","affectsGlobalScope":true,"impliedFormat":1},{"version":"c0a4b8ac6ce74679c1da2b3795296f5896e31c38e888469a8e0f99dc3305de60","affectsGlobalScope":true,"impliedFormat":1},{"version":"3084a7b5f569088e0146533a00830e206565de65cae2239509168b11434cd84f","affectsGlobalScope":true,"impliedFormat":1},{"version":"c5079c53f0f141a0698faa903e76cb41cd664e3efb01cc17a5c46ec2eb0bef42","affectsGlobalScope":true,"impliedFormat":1},{"version":"32cafbc484dea6b0ab62cf8473182bbcb23020d70845b406f80b7526f38ae862","affectsGlobalScope":true,"impliedFormat":1},{"version":"fca4cdcb6d6c5ef18a869003d02c9f0fd95df8cfaf6eb431cd3376bc034cad36","affectsGlobalScope":true,"impliedFormat":1},{"version":"b93ec88115de9a9dc1b602291b85baf825c85666bf25985cc5f698073892b467","affectsGlobalScope":true,"impliedFormat":1},{"version":"f5c06dcc3fe849fcb297c247865a161f995cc29de7aa823afdd75aaaddc1419b","affectsGlobalScope":true,"impliedFormat":1},{"version":"b77e16112127a4b169ef0b8c3a4d730edf459c5f25fe52d5e436a6919206c4d7","affectsGlobalScope":true,"impliedFormat":1},{"version":"fbffd9337146eff822c7c00acbb78b01ea7ea23987f6c961eba689349e744f8c","affectsGlobalScope":true,"impliedFormat":1},{"version":"a995c0e49b721312f74fdfb89e4ba29bd9824c770bbb4021d74d2bf560e4c6bd","affectsGlobalScope":true,"impliedFormat":1},{"version":"c7b3542146734342e440a84b213384bfa188835537ddbda50d30766f0593aff9","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce6180fa19b1cccd07ee7f7dbb9a367ac19c0ed160573e4686425060b6df7f57","affectsGlobalScope":true,"impliedFormat":1},{"version":"3f02e2476bccb9dbe21280d6090f0df17d2f66b74711489415a8aa4df73c9675","affectsGlobalScope":true,"impliedFormat":1},{"version":"45e3ab34c1c013c8ab2dc1ba4c80c780744b13b5676800ae2e3be27ae862c40c","affectsGlobalScope":true,"impliedFormat":1},{"version":"805c86f6cca8d7702a62a844856dbaa2a3fd2abef0536e65d48732441dde5b5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"e42e397f1a5a77994f0185fd1466520691456c772d06bf843e5084ceb879a0ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"f4c2b41f90c95b1c532ecc874bd3c111865793b23aebcc1c3cbbabcd5d76ffb0","affectsGlobalScope":true,"impliedFormat":1},{"version":"ab26191cfad5b66afa11b8bf935ef1cd88fabfcb28d30b2dfa6fad877d050332","affectsGlobalScope":true,"impliedFormat":1},{"version":"2088bc26531e38fb05eedac2951480db5309f6be3fa4a08d2221abb0f5b4200d","affectsGlobalScope":true,"impliedFormat":1},{"version":"cb9d366c425fea79716a8fb3af0d78e6b22ebbab3bd64d25063b42dc9f531c1e","affectsGlobalScope":true,"impliedFormat":1},{"version":"500934a8089c26d57ebdb688fc9757389bb6207a3c8f0674d68efa900d2abb34","affectsGlobalScope":true,"impliedFormat":1},{"version":"689da16f46e647cef0d64b0def88910e818a5877ca5379ede156ca3afb780ac3","affectsGlobalScope":true,"impliedFormat":1},{"version":"bc21cc8b6fee4f4c2440d08035b7ea3c06b3511314c8bab6bef7a92de58a2593","affectsGlobalScope":true,"impliedFormat":1},{"version":"7ca53d13d2957003abb47922a71866ba7cb2068f8d154877c596d63c359fed25","affectsGlobalScope":true,"impliedFormat":1},{"version":"54725f8c4df3d900cb4dac84b64689ce29548da0b4e9b7c2de61d41c79293611","affectsGlobalScope":true,"impliedFormat":1},{"version":"e5594bc3076ac29e6c1ebda77939bc4c8833de72f654b6e376862c0473199323","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f3eb332c2d73e729f3364fcc0c2b375e72a121e8157d25a82d67a138c83a95c","affectsGlobalScope":true,"impliedFormat":1},{"version":"6f4427f9642ce8d500970e4e69d1397f64072ab73b97e476b4002a646ac743b1","affectsGlobalScope":true,"impliedFormat":1},{"version":"48915f327cd1dea4d7bd358d9dc7732f58f9e1626a29cc0c05c8c692419d9bb7","affectsGlobalScope":true,"impliedFormat":1},{"version":"b7bf9377723203b5a6a4b920164df22d56a43f593269ba6ae1fdc97774b68855","affectsGlobalScope":true,"impliedFormat":1},{"version":"db9709688f82c9e5f65a119c64d835f906efe5f559d08b11642d56eb85b79357","affectsGlobalScope":true,"impliedFormat":1},{"version":"4b25b8c874acd1a4cf8444c3617e037d444d19080ac9f634b405583fd10ce1f7","affectsGlobalScope":true,"impliedFormat":1},{"version":"37be57d7c90cf1f8112ee2636a068d8fd181289f82b744160ec56a7dc158a9f5","affectsGlobalScope":true,"impliedFormat":1},{"version":"a917a49ac94cd26b754ab84e113369a75d1a47a710661d7cd25e961cc797065f","affectsGlobalScope":true,"impliedFormat":1},{"version":"6d3261badeb7843d157ef3e6f5d1427d0eeb0af0cf9df84a62cfd29fd47ac86e","affectsGlobalScope":true,"impliedFormat":1},{"version":"195daca651dde22f2167ac0d0a05e215308119a3100f5e6268e8317d05a92526","affectsGlobalScope":true,"impliedFormat":1},{"version":"8b11e4285cd2bb164a4dc09248bdec69e9842517db4ca47c1ba913011e44ff2f","affectsGlobalScope":true,"impliedFormat":1},{"version":"0508571a52475e245b02bc50fa1394065a0a3d05277fbf5120c3784b85651799","affectsGlobalScope":true,"impliedFormat":1},{"version":"8f9af488f510c3015af3cc8c267a9e9d96c4dd38a1fdff0e11dc5a544711415b","affectsGlobalScope":true,"impliedFormat":1},{"version":"fc611fea8d30ea72c6bbfb599c9b4d393ce22e2f5bfef2172534781e7d138104","affectsGlobalScope":true,"impliedFormat":1},{"version":"0bd714129fca875f7d4c477a1a392200b0bcd13fb2e80928cd334b63830ea047","affectsGlobalScope":true,"impliedFormat":1},{"version":"e2c9037ae6cd2c52d80ceef0b3c5ffdb488627d71529cf4f63776daf11161c9a","affectsGlobalScope":true,"impliedFormat":1},{"version":"135d5cf4d345f59f1a9caadfafcd858d3d9cc68290db616cc85797224448cccc","affectsGlobalScope":true,"impliedFormat":1},{"version":"bc238c3f81c2984751932b6aab223cd5b830e0ac6cad76389e5e9d2ffc03287d","affectsGlobalScope":true,"impliedFormat":1},{"version":"4a07f9b76d361f572620927e5735b77d6d2101c23cdd94383eb5b706e7b36357","affectsGlobalScope":true,"impliedFormat":1},{"version":"7c4e8dc6ab834cc6baa0227e030606d29e3e8449a9f67cdf5605ea5493c4db29","affectsGlobalScope":true,"impliedFormat":1},{"version":"de7ba0fd02e06cd9a5bd4ab441ed0e122735786e67dde1e849cced1cd8b46b78","affectsGlobalScope":true,"impliedFormat":1},{"version":"6148e4e88d720a06855071c3db02069434142a8332cf9c182cda551adedf3156","affectsGlobalScope":true,"impliedFormat":1},{"version":"d63dba625b108316a40c95a4425f8d4294e0deeccfd6c7e59d819efa19e23409","affectsGlobalScope":true,"impliedFormat":1},{"version":"0568d6befee03dd435bed4fc25c4e46865b24bdcb8c563fdc21f580a2c301904","affectsGlobalScope":true,"impliedFormat":1},{"version":"30d62269b05b584741f19a5369852d5d34895aa2ac4fd948956f886d15f9cc0d","affectsGlobalScope":true,"impliedFormat":1},{"version":"f128dae7c44d8f35ee42e0a437000a57c9f06cc04f8b4fb42eebf44954d53dc8","affectsGlobalScope":true,"impliedFormat":1},{"version":"ffbe6d7b295306b2ba88030f65b74c107d8d99bdcf596ea99c62a02f606108b0","affectsGlobalScope":true,"impliedFormat":1},{"version":"996fb27b15277369c68a4ba46ed138b4e9e839a02fb4ec756f7997629242fd9f","affectsGlobalScope":true,"impliedFormat":1},{"version":"79b712591b270d4778c89706ca2cfc56ddb8c3f895840e477388f1710dc5eda9","affectsGlobalScope":true,"impliedFormat":1},{"version":"20884846cef428b992b9bd032e70a4ef88e349263f63aeddf04dda837a7dba26","affectsGlobalScope":true,"impliedFormat":1},{"version":"5fcab789c73a97cd43828ee3cc94a61264cf24d4c44472ce64ced0e0f148bdb2","affectsGlobalScope":true,"impliedFormat":1},{"version":"db59a81f070c1880ad645b2c0275022baa6a0c4f0acdc58d29d349c6efcf0903","affectsGlobalScope":true,"impliedFormat":1},{"version":"673294292640f5722b700e7d814e17aaf7d93f83a48a2c9b38f33cbc940ad8b0","affectsGlobalScope":true,"impliedFormat":1},{"version":"d786b48f934cbca483b3c6d0a798cb43bbb4ada283e76fb22c28e53ae05b9e69","affectsGlobalScope":true,"impliedFormat":1},{"version":"1ecb8e347cb6b2a8927c09b86263663289418df375f5e68e11a0ae683776978f","affectsGlobalScope":true,"impliedFormat":1},{"version":"142efd4ce210576f777dc34df121777be89eda476942d6d6663b03dcb53be3ff","affectsGlobalScope":true,"impliedFormat":1},{"version":"379bc41580c2d774f82e828c70308f24a005b490c25ba34d679d84bcf05c3d9d","affectsGlobalScope":true,"impliedFormat":1},{"version":"ed484fb2aa8a1a23d0277056ec3336e0a0b52f9b8d6a961f338a642faf43235d","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ffedae1d1c2d53fdbca1c96d3c7dda544281f7d262f99b6880634f8fd8d9820","affectsGlobalScope":true,"impliedFormat":1},{"version":"83a730b125d477dd264df8ba479afab27a3dae7152b005c214ab94dc7ee44fd3","affectsGlobalScope":true,"impliedFormat":1},{"version":"1ce14b81c5cc821994aa8ec1d42b220dd41b27fcc06373bce3958af7421b77d4","affectsGlobalScope":true,"impliedFormat":1},{"version":"b3a048b3e9302ef9a34ef4ebb9aecfb28b66abb3bce577206a79fee559c230da","affectsGlobalScope":true,"impliedFormat":1},{"version":"f96cbb7ca20d7caad35f57f2d310b07691c027c44e495d8b59e8c4d133a5f25e","signature":"388ef9804411e7ef8c311b8867785982ee7ce3847bbfa697c8144ff0434a9e29"},{"version":"24c308eb678b3a7fa6f60d79c7b63241316170492fc2c5862615f2df54e88406","signature":"9af0551bb3503da1da0443c4aa27cbc393a399b269fff9c24562838fa7f016b6"},{"version":"6fd9a0dae7a333574ebf14334a3628f1ae221cfec3eb7278cd006009ed2de06e","signature":"5acea172507dfc677874cf2f9387e1ff80d31bee8611b37e7a46ae7deb08c3e5"},{"version":"bce7ae216c4ca77e5bceb33bb031df950e9ce19152a08632c98ab74d9d654fbb","signature":"145253a94a2d69152172286104ea894a6a4bd24157c9c3986a837b5754ce4de6"},{"version":"9486c7979fbf148ab52805fd206a3a34c3e27f2b3e1c574b661adf6a251e9eb9","signature":"595b392156c742f2140140a0defc2e32f78a1f17f4bf915045a63b387a6b5ef3"},{"version":"a880f61afc31e3ee2eed1dd7481bf35ed8f448d093a0f9b7de34abfaa0920911","signature":"ce3f6eafa64d3e271a49e35b8403b11e7751811e2a449df9661cc887d3e5e87a"},{"version":"6ea946eaa61cfe563fe92fc451f4c97220a5eecd5ed78a95092e9d07871c6d60","signature":"3d91c79111b3664edb18080173f8d80678f7b6945d37d823323197843e6b219a"},{"version":"a414cd60ed77ca5e20826b52353774d39417ef323e6b098714ac85985a7f182a","signature":"4de9b1a0efb76902ce3e86c2e32d9002b5d2cfed9d8cabc73ae312f5cb691f83"},{"version":"e872c0fe0c5355de2d4b5212c5bb2af8907fac42490b8cf6cd1b6eb66fe97749","signature":"511db0c73f736487eb4aae8bda44916b40677d4d9bd4f6459402977ab5b13f53"},{"version":"777cf9fcade44561c1a75f6a02a14a0cc70bf2eee432a6968cb9ea75ff34f2f6","signature":"0dbab4f3edaa23eefb5e1e949feac566d86052c601a39197f3aa49d28831c2eb"},{"version":"e20176d2ea0e51199b15879f5400a11b6eb057ad872d3d7b28cf39b9fbc95746","signature":"cf2a1d0a92533cbc4fca18e8f9a04f13c9462b00a87aef31efaf5c994d4b648a"},{"version":"cfcb5fe6d31892ebd7b2e1a35854aaf5b4756182dfdee07b1b858aa74f380ce9","signature":"3d2bfef15a27a69f029c2a326cbd578e90a362d7147b3528d68bf7a0525604f5"},"e3f077ed66cc7832adc6c17146cfb730729e8257e78d7bdc7ae34c4276a7de09","1482c77b2d28fa9254f48e76f2ff40f1cfb6bab261fb2d2b98035bb809042939","aa25e092b861cfc27df68239047f8254fb21b4651b0017e8d15bab5414ab1988","2714149cbd3de415c0abcde565063514950a60ff4aef48a8b31e67bccc64ed05","53bcf7a22d47bd524c0bf6869165d59364e472c94066af1e1b0d80cb1826306f","880e53e2d42225d6b22e2e2b4e51cc8b845094a5045b170eb79df031bfaceaac","1e56ad04bd9214bf4583941a499386488cb76389eee3bd65ec882f5e5613cbc8","6fa26b05e6b041a321db7a70f534a93b4eb616916015dddcdeaaf658a340209d","2c437f035a6f3bfe59a7d9ec427f81e1f2495746db06f841c3e2f4c2813cfaac","1f2e2f423c7ec93f80f4543278488d9de8f4d0d5b1385c691e313f42d17a3fca","f06d0f7bb803f3f00b4d0cd16b2d950fb826cf7efec3f68546f3e67746fb969e","d23e3a3000ecd6477941f5eaaa9ba5d72d29928a347ef9821a02a763997d95c4","3a0d9bd15a78cdc0f4454eb2ac681db16053538de2e1ef65021b12eda3d33323","edfe10afb5dfa79dc3681c3ce2fd73cf84187f82cde5ac9acd0ed6045812be81","019ee2a791e6af5796fdd66704fb0729be24f2e53ffa0e5e2d6f1be2bff9ad02","fce09eb9f7968387bb0891ce15015c18a09ad3a7331f2c425a331cbebba89527","438ef5faada40623680ebd13ae7125e99cfdc7c5326e8b0d3eb07e5f9321bd42","3c85aeafee03e18cb01a4fd383192931acc3f950df08b248519467ceadd4a0ac","0ffdcafaf8eed4f147e35a0d34fa4a5adf8424d3453a4ae34a459247c121537b","45880d016069eaff83f54047396b0f98e413ec43f50c59131d45c9c92dd44dea","2db065eba6f02c7ea4174dfb607acc5773ab2522e35a8e0f723709e07ec66158","97a19b229516b92ec137b44d54f6454b50e105fc4fff659daba9f754982b9a0d","f9a45114811a10722053e6c5329c41eace3295daa477d12558279df4dcbfba71","3698e6b26f72a770b4bfc15504c04bfb678a355b46ceaa7a42cbdac0893b4d5c","f337140c4001e5beb160f61f96115fa07b1da1de621c2056b83d236f184fb373","f3ef3a7a5483561102e1683bbd2d69b6d5764799d3787d80d2ca568f9110d29e","7cdd896d1279272fccd191996f3587cf3c8ee0ce8175aff73563ef81034b35a1","70f51cbe96df167534a4a4465196e6a4ee03ec99434305a4deee7da55c013d6f",{"version":"172ecd4ae89aa6a8143e4a75f2d3f3c2ef50ede4ff47f22378f31158e0a58bea","signature":"a87df2f3d228087fee6c8c5d0af8bf72dab09ddbef5623297ae4035f3b124328"},{"version":"6229be1d1dcc9c869f18282f535274371a543c73a3e82a8ea169d2ae0a201ed6","signature":"09cf7b7aa0515e92255c012ffed3c39445644f80c933717e501098de75fd03e8"},{"version":"9b81d8f98b417d2e03dce684972c08ee987190e8adcbc8368b910afae41dfbbf","signature":"02dd89fd5e391f278d298fda8e6caa842b03ee12c21256c5ee8d14770c23e597"},{"version":"cc8817bee36aa46f36777b7f56ff4a9128085550d46af7e772b994ed9e6a6b70","signature":"de87a77ee807aadc9110c2733f49cd36b6b243f7876c9b5f9ca76fd8dca956e4"},{"version":"58e7cb8f7f742362557f8e942ea555bcd624f6bb2972e332e8b941816a9b7a3c","signature":"472d1fa8ab8b96703a67016fa7d6ac2bd81f4d283a08dbddda6df6675f0bbcf6"},{"version":"054acd12401be455358ad6769e24b0d2e836211a9762e0636f1119c92e490f1f","signature":"aff3bf0a46d27209decc687efe37980f80988849f9c0d83665e168c97b547095"},{"version":"a5f98205fcd475275a07f8bbaac7885c3bae9d6f340d2b48cd390b77c7e689bc","signature":"78062ed7dfca6a18dcce21436e0c4986040b6af84e57ab54402d062db531e071"},{"version":"bdff6740c87cbf3e777ce6bb6a3015b7dac3436da0af3604a7219421321d85a2","signature":"d3000f06c2fd3d86ebccf7adb3964b8a37ade365b5348c0f937eca28ddda5140"},{"version":"1b06afa7ee612db979c4db5f8323a033cb128168a65d8ce51af056051c6803d6","signature":"8afa814ab5481bd1135633fdf6fd5536742d709848129ef8f51cc61eb47b567d"},{"version":"cb9b53caa618a68b876e9d1399381d143d6f3bf8d20e4bc2f8a50409c735baed","signature":"f84320e809fe6b9180af79b22e4b1386a535d4f088f34bf00f6d29f7edba2870"},{"version":"00de3ea2f79fa5be4f10d99dd7a335f3428b994162e465b1a6bfad488054c8d1","signature":"12718c9ab154242a937c0602c572010fec777d3409aec6b58ffe5599f71ec7ea"},{"version":"799facc4fb79b03746ae4960feed4e942fb953a3bb79b3be73a29a78cd98f94e","signature":"dea00d35f87c3813c632a44c6d6d6c1b2078b94ab97e0c1898a3e10ac989ae49"},{"version":"dad754a19edefe304f9928d7dd55fca16f00c237cd13d26d3cceae7668d0f780","signature":"8ae6ee1258bac30268c1a3bca3631c8514536e1e3c540b82758bfdc283090b2d"},{"version":"19677dfbf5fa590e1e6a7de0825c91407ca3cdfcfe5306c54cdd030154082a14","signature":"225558033b9f8827808f882d94d9a4bb75b29a1bd6a69378d54c10816527b98b"},{"version":"3ee7bf1243e3d5beaedb29cb26f39c9943bcbba4bdbcc7845ee7ebddbe84c2bd","signature":"f850ba15ec8b5d05e2afd38bc09c5373740e10fa87dd900bf9d50b2a0dce1627"},{"version":"7cfeee436584ad72b5fe9ddab6ab53886046b3479b8be07a47e0b3f18485497a","signature":"93efea2a6874837fce1a8e5ecdc0d40f11e0f3b292fa894c29de71ff4381e4f0"},{"version":"702534fa9a0be7699fabad7fd3b4afcfe1658af1bdbc13b001877402fd2d8e96","signature":"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855","affectsGlobalScope":true},{"version":"fcd74a3942738335bbc3c9a0f9e7303808cd0739232abae8e32f9dfbc974d4fd","impliedFormat":99},{"version":"40fdff1f8b6201ad2c9b3cc48628243976b01d93fead2b27d1b4ee1e61c80d20","impliedFormat":99},{"version":"21e3f1eb24e19f80506f7798518a0b0b950e7837fb6b4421398d7a18e78d6e43","impliedFormat":99},{"version":"f0df8ec67a4ac8b6f5c4f1c0320069cdbf06a8bea8fdcc9578dbcfff844002d4","impliedFormat":99},{"version":"cdafa284e6f72ddaea70df273f03088174ab0f50a012b6b4f31ac5126b82c913","impliedFormat":99},{"version":"26e26e6321fa1c88911a52a98fdbb5971a92df861a863ec5a0265c9934576b07","impliedFormat":99},{"version":"2d0b459954e374637e55630f51a5ed9e8b9b5b03f50f7f4de2ec8911e6b65439","impliedFormat":99},{"version":"33a3f2290bb8dea25e9ad8e129bc8531a051a4a55327239cbf8fd31b642d0add","impliedFormat":99},{"version":"f8a3135216d56f15a053b0c355f808278b742edca63097db7ce47df4d1a74ac7","impliedFormat":99},{"version":"c042dbd8d2a936564c7f386127eab12220acb14fcd5191b942c54ab40faca05c","signature":"5355a64ae5a33c7afe104b4166b5d2f8e1d2343c695ead14d6abafd48c79c503"},{"version":"36aadbdff357107c88ce9b3e46c93973f79d0f72425e7d8274c911b52a026ad6","signature":"ce5152189aa3ac466a3f6d23459bb21b4c80c07c0c834887a7ad48e9b6e058d0"},{"version":"f4f5d2849e7c39e80593a7d3715a275de1e51ee27b2bfe81319ab7af785e46c2","signature":"5eb7171562bf0ee6904994052aee4861bced387b2edc850f580fcddb5bcf658d"},{"version":"eddc51a3fa2da898cc21973672ec03772677047df83523fc6551a8e03ff19f86","signature":"a7b0e91a4eee59731e94c2bb594ef9c72fd69b1d012415b0442a2b70913ea1e8"},{"version":"cdeaa0e0650ff43767f26babca1897d4390c8106a31d408bde2b473cbc4390b5","signature":"ef76ed3c37947c49b63514f4f9f4e39b10260a5ae8fbd78fe4749ad0a63b69b9"},{"version":"ad64a265c724cae657c9843496bd12d1b76cb79c8a6b1a2f41241729a2b97790","signature":"e74ede638087e13e872dfa40c06631f4bae1ef774145a0723b3625644a261093"},{"version":"0743c0e453858591ef4f76cd804a951a939174447085dad6bc789e39ec2f3eba","signature":"d26755a27949ec257effb1b45228ddafdcd7265234dece3fa308bf7f1e460c40"},{"version":"bbb8408df32515bae4bb82fe238d8c5cc7a6f148665802af5ffd6dc629a3b690","signature":"cd104a996e442f92945c72ab8f2c1fc9deda51e163549916eb006149d1f757e4"},{"version":"d17bc2efcba33b04a17c8940b2e68c891431489c06b1335e186f86c6325a830a","signature":"84e2cc273855ac3d9870b5684516172e446453af79eee22c67356750f92897ed"},{"version":"26954ca452a82dd223280499f4f86db72e6ec69b731851a3cb04d74ad981fc4e","signature":"a7e4d7d6267a7a0c44ed5be5d7e5fb2bf0e7281ab02ead7dd2483a5546865948"},{"version":"d9e2ed2a9b7a4d94855118ead22d254269be87b17cc33bff471fd3e472167d9e","signature":"1fe43117ce70f01e7d0ec8f7ef9bd202704d040cd0274c4d674f12f3e4ba20b0"},{"version":"9e72e831a860c326802845c01f8ef0521c2e54637aae3171847211db55b72ed8","signature":"0a66e56ee628a5eed19133bf8a1defb9591bbea03ba39cbdf4e8a9e3f0c1ea80"},{"version":"e805cf3fa0a65ab3ceb48b001395a41e22b08cbeecedfd04ac195d5b6354d178","signature":"4832516ab87ef75af5fb417297fbcbd128815f31c024a53aa70e4a678e4e370e"},{"version":"163a4075d136e6da040007a8d04561d89c668277facc75c529a5d580ba260ea3","affectsGlobalScope":true},{"version":"7c08a6ec584c970510f7d1cda4a8ec0461f5dce7d4c5548904ac7afcabd6c1cf","affectsGlobalScope":true},"cb55ea3b1a0dd0d6fbeb720b3185208c983641b0a960f52020e698f054b9fe2a",{"version":"12f20310f22fa2cad6018638d2bfeaa966db651cea186272506e53d0f64d20dc","affectsGlobalScope":true,"impliedFormat":1},{"version":"9c42e375483faf69f0d2efc0cdd3602c4fca655ac2a5df3f9b6a39f22cf7c519","affectsGlobalScope":true}],"root":[[89,100],[128,145],[155,170],172],"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":[[151,1],[149,2],[148,3],[153,4],[152,1],[154,5],[147,1],[172,6],[130,7],[131,8],[132,9],[133,7],[134,7],[135,10],[136,8],[137,11],[144,12],[140,8],[139,13],[141,8],[142,9],[143,7],[138,7],[129,14],[156,15],[158,16],[160,17],[167,18],[166,15],[161,19],[163,17],[165,20],[162,21],[164,22],[155,23],[95,24],[99,25],[100,23],[98,26],[97,27],[92,28],[94,29],[119,30],[127,31],[125,30],[115,30],[116,30],[126,30]],"latestChangedDtsFile":"./backends/webgpu/renderer.d.ts","version":"6.0.2"}
|
|
@@ -1,7 +1,14 @@
|
|
|
1
1
|
import { RENDER_BACKEND } from './constants';
|
|
2
|
+
import { RENDERER_OPTIONS_STRUCT } from './types/render';
|
|
2
3
|
export const isValidGpuAPI = (t) => {
|
|
3
4
|
if (typeof t === 'string') {
|
|
4
5
|
return Object.values(RENDER_BACKEND).includes(t);
|
|
5
6
|
}
|
|
6
7
|
return false;
|
|
7
8
|
};
|
|
9
|
+
export const isRenderOptionsKey = (k) => {
|
|
10
|
+
if (typeof k === 'string') {
|
|
11
|
+
return !!RENDERER_OPTIONS_STRUCT[k];
|
|
12
|
+
}
|
|
13
|
+
return false;
|
|
14
|
+
};
|
|
@@ -1,7 +1,11 @@
|
|
|
1
1
|
export interface Segmentation {
|
|
2
2
|
canvas: OffscreenCanvas | undefined;
|
|
3
3
|
}
|
|
4
|
-
export
|
|
4
|
+
export interface ReadWritableStream<T> {
|
|
5
|
+
readable: ReadableStream<T>;
|
|
6
|
+
writable: WritableStream<T>;
|
|
7
|
+
}
|
|
8
|
+
export type ProcessInputType = MediaStreamTrack | ReadWritableStream<VideoFrame>;
|
|
5
9
|
export type ImageType = CanvasImageSource | ProcessInputType | VideoFrame;
|
|
6
10
|
export interface VideoFrameLike {
|
|
7
11
|
frame: VideoFrame | ImageBitmap;
|
|
@@ -12,6 +12,10 @@ export interface ProcessEventProcess<T> {
|
|
|
12
12
|
type: 'process';
|
|
13
13
|
data: T;
|
|
14
14
|
}
|
|
15
|
+
export interface ProcessEventMute {
|
|
16
|
+
type: 'mute';
|
|
17
|
+
data: boolean;
|
|
18
|
+
}
|
|
15
19
|
/**
|
|
16
20
|
* Message event to update processor options
|
|
17
21
|
*/
|
|
@@ -41,16 +45,18 @@ export interface ProcessEventDebug<T> {
|
|
|
41
45
|
/**
|
|
42
46
|
* Message events to be sent to the Processor
|
|
43
47
|
*/
|
|
44
|
-
export type ProcessEvents<T, I> = ProcessEventOpen<T> | ProcessEventProcess<I> | ProcessEventUpdate<T> | ProcessEventClose | ProcessEventDestroy;
|
|
48
|
+
export type ProcessEvents<T, I> = ProcessEventOpen<T> | ProcessEventProcess<I> | ProcessEventUpdate<T> | ProcessEventClose | ProcessEventMute | ProcessEventDestroy;
|
|
45
49
|
export interface ProcessWorkerEventProcessed<T> {
|
|
46
50
|
type: 'processed';
|
|
47
51
|
data?: T;
|
|
48
52
|
}
|
|
49
|
-
export interface ProcessWorkerEventOpened {
|
|
53
|
+
export interface ProcessWorkerEventOpened<T> {
|
|
50
54
|
type: 'opened';
|
|
55
|
+
data: T;
|
|
51
56
|
}
|
|
52
|
-
export interface ProcessWorkerEventUpdated {
|
|
57
|
+
export interface ProcessWorkerEventUpdated<T> {
|
|
53
58
|
type: 'updated';
|
|
59
|
+
data: T;
|
|
54
60
|
}
|
|
55
61
|
export interface ProcessWorkerEvent<T> {
|
|
56
62
|
type: 'event';
|
|
@@ -60,7 +66,28 @@ export interface ProcessWorkerEventDebug<T> {
|
|
|
60
66
|
type: 'debug';
|
|
61
67
|
data: T;
|
|
62
68
|
}
|
|
69
|
+
/**
|
|
70
|
+
* Frame transform statistic, i.e. the timing data for processing each frame
|
|
71
|
+
*/
|
|
72
|
+
export interface FrameTransformStats {
|
|
73
|
+
/**
|
|
74
|
+
* Start time of the transform
|
|
75
|
+
*/
|
|
76
|
+
start: number;
|
|
77
|
+
/**
|
|
78
|
+
* End time of the transform
|
|
79
|
+
*/
|
|
80
|
+
end: number;
|
|
81
|
+
/**
|
|
82
|
+
* Segmentation inference end time
|
|
83
|
+
*/
|
|
84
|
+
segmentation?: number;
|
|
85
|
+
}
|
|
86
|
+
export interface ProcessWorkerEventStats {
|
|
87
|
+
type: 'stats';
|
|
88
|
+
data: FrameTransformStats[];
|
|
89
|
+
}
|
|
63
90
|
/**
|
|
64
91
|
* Message events returned from the processor
|
|
65
92
|
*/
|
|
66
|
-
export type ProcessWorkerEvents<T, E, D> = ProcessWorkerEventProcessed<T> | ProcessWorkerEventOpened | ProcessWorkerEventUpdated | ProcessWorkerEvent<E> | ProcessWorkerEventDebug<D
|
|
93
|
+
export type ProcessWorkerEvents<T, E, D, U> = ProcessWorkerEventProcessed<T> | ProcessWorkerEventOpened<U> | ProcessWorkerEventUpdated<U> | ProcessWorkerEvent<E> | ProcessWorkerEventDebug<D> | ProcessWorkerEventStats;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { SegmenterOptions } from './segmentation';
|
|
2
|
-
import type {
|
|
2
|
+
import type { ImageRecord } from './media';
|
|
3
3
|
import type { RendererOptions } from './render';
|
|
4
4
|
import type { ProcessEvents, ProcessWorkerEvents } from './messageEvents';
|
|
5
5
|
import type { RenderingEvents } from '../constants';
|
|
@@ -9,7 +9,9 @@ export interface ProcessorOptions extends SegmenterOptions {
|
|
|
9
9
|
restart?: boolean;
|
|
10
10
|
}
|
|
11
11
|
export interface ProcessorProcessOptions {
|
|
12
|
-
|
|
12
|
+
track?: MediaStreamTrack;
|
|
13
|
+
readable?: ReadableStream<VideoFrame>;
|
|
14
|
+
writable?: WritableStream<VideoFrame>;
|
|
13
15
|
renderOptions?: RendererOptions;
|
|
14
16
|
}
|
|
15
17
|
export type ProcessorEvents = ProcessEvents<ProcessorOptions, ProcessorProcessOptions>;
|
|
@@ -20,6 +22,6 @@ export interface ProcessWorkerDebugMessage {
|
|
|
20
22
|
export interface ProcessorEvent {
|
|
21
23
|
type: RenderingEvents;
|
|
22
24
|
message?: string;
|
|
23
|
-
|
|
25
|
+
track?: MediaStreamTrack;
|
|
24
26
|
}
|
|
25
|
-
export type ProcessorWorkerEvents = ProcessWorkerEvents<
|
|
27
|
+
export type ProcessorWorkerEvents = ProcessWorkerEvents<MediaStreamTrack, ProcessorEvent, ProcessWorkerDebugMessage, Partial<RendererOptions>>;
|
|
@@ -1,41 +1,173 @@
|
|
|
1
1
|
import type { RenderBackend, RenderEffects } from '../constants';
|
|
2
|
-
|
|
2
|
+
/**
|
|
3
|
+
* Options controlling the rendering and effects for person/background segmentation.
|
|
4
|
+
* All values are stable per-frame and can be safely updated in real-time.
|
|
5
|
+
*/
|
|
3
6
|
export interface RendererOptions {
|
|
4
|
-
backgroundImageUrl: string;
|
|
5
7
|
/**
|
|
6
|
-
*
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
foregroundThreshold: number;
|
|
8
|
+
* URL or Data URI for the virtual background image (used in "overlay" effect).
|
|
9
|
+
*/
|
|
10
|
+
backgroundImageUrl: string;
|
|
10
11
|
/**
|
|
11
|
-
*
|
|
12
|
+
* Amount of background blur (radius in px): [0,9].
|
|
13
|
+
* Recommend: 3–6 for portraits. Higher may be slow and over-blurred.
|
|
14
|
+
*
|
|
15
|
+
* @default 3
|
|
12
16
|
*/
|
|
13
17
|
backgroundBlurAmount: number;
|
|
14
18
|
/**
|
|
15
|
-
*
|
|
16
|
-
*
|
|
19
|
+
* Edge blur for mask boundary antialiasing (radius in px): [0,9].
|
|
20
|
+
* Small values (1–5) smooth mask stair-steps; large values soften edges more visibly.
|
|
21
|
+
*
|
|
22
|
+
* @default 4
|
|
17
23
|
*/
|
|
18
24
|
edgeBlurAmount: number;
|
|
19
25
|
/**
|
|
20
|
-
*
|
|
21
|
-
|
|
22
|
-
maskCombineRatio: number;
|
|
23
|
-
/**
|
|
24
|
-
* Effects
|
|
26
|
+
* Effects to apply: "none", "blur", or "overlay".
|
|
27
|
+
* "blur" = background blur. "overlay" = replace BG with backgroundImageUrl.
|
|
25
28
|
*/
|
|
26
29
|
effects: RenderEffects;
|
|
27
30
|
/**
|
|
28
31
|
* Backend to render background effects
|
|
29
32
|
*/
|
|
30
33
|
backend: RenderBackend;
|
|
34
|
+
/**
|
|
35
|
+
* [0,1] Upper mask confidence: all mask pixels >= this are considered definite foreground.
|
|
36
|
+
* Adjust to make mask edges tighter or more permissive for foreground inclusion.
|
|
37
|
+
* Example: 0.8 ("mask > 0.8 = sure foreground"). Must always be >= backgroundThreshold.
|
|
38
|
+
*
|
|
39
|
+
* @default 0.85
|
|
40
|
+
*/
|
|
41
|
+
foregroundThreshold: number;
|
|
42
|
+
/**
|
|
43
|
+
* [0,1] Lower mask confidence: all mask pixels <= this are considered definite background.
|
|
44
|
+
* Adjust to make mask edges tighter or more permissive for background inclusion.
|
|
45
|
+
* Example: 0.3 ("mask < 0.3 = sure background").
|
|
46
|
+
*
|
|
47
|
+
* @default 0.35
|
|
48
|
+
*/
|
|
49
|
+
backgroundThreshold: number;
|
|
50
|
+
/**
|
|
51
|
+
* Bilateral filter: sigma in pixel space for mask edge snapping.
|
|
52
|
+
* Controls the neighborhood/pixel distance—higher is larger window (5–10 typical).
|
|
53
|
+
*
|
|
54
|
+
* @default 5
|
|
55
|
+
*/
|
|
56
|
+
sigmaSpace: number;
|
|
57
|
+
/**
|
|
58
|
+
* Bilateral filter: minimum sigma in color/luma (for mask interiors), [0,1].
|
|
59
|
+
* Controls how little color difference is needed to cross-mask regions away from edge.
|
|
60
|
+
* Lower = sharper edge preservation in mask interiors.
|
|
61
|
+
* Example: 0.2
|
|
62
|
+
*
|
|
63
|
+
* @default 0.2
|
|
64
|
+
*/
|
|
65
|
+
sigmaRangeLo: number;
|
|
66
|
+
/**
|
|
67
|
+
* Bilateral filter: maximum sigma in color/luma (for mask uncertain zones), [0,1].
|
|
68
|
+
* Controls how much color similarity is required at uncertain/edge mask locations.
|
|
69
|
+
* Higher = more mask smoothing at edges.
|
|
70
|
+
* Example: 0.8
|
|
71
|
+
*
|
|
72
|
+
* @default 0.8
|
|
73
|
+
*/
|
|
74
|
+
sigmaRangeHi: number;
|
|
75
|
+
/**
|
|
76
|
+
* Ratio for mask smoothing (how much uncertainty enables temporal blend), [0,1].
|
|
77
|
+
* Higher = more frame-to-frame blending, more stability but more trailing ghosts.
|
|
78
|
+
* Typical: 0.6–0.85.
|
|
79
|
+
*
|
|
80
|
+
* @default 0.8
|
|
81
|
+
*/
|
|
82
|
+
maskCombineRatio: number;
|
|
83
|
+
/**
|
|
84
|
+
* Whether to exclude bystanders/connected people from the output mask.
|
|
85
|
+
* The main person instance (closest to personCenter OR largest blob) is kept in
|
|
86
|
+
* the output mask.
|
|
87
|
+
* All other bystanders/connected people are suppressed (bystander removal).
|
|
88
|
+
*
|
|
89
|
+
* @default false (no bystander removal, all detected people are included in the mask).
|
|
90
|
+
* @experimental This feature is experimental and only works in WebGL backend.
|
|
91
|
+
*/
|
|
92
|
+
excludeBystanders: boolean;
|
|
93
|
+
/**
|
|
94
|
+
* Person center: normalized (x, y) in [0,1] image coordinates for main subject selection.
|
|
95
|
+
* Used by the CCL/bias filter to select the main person blob.
|
|
96
|
+
*
|
|
97
|
+
* @default [0.5, 0.42] (= center, slightly above vertical midpoint).
|
|
98
|
+
* @experimental This feature is experimental and only works in WebGL backend.
|
|
99
|
+
*/
|
|
100
|
+
personCenter: [number, number];
|
|
101
|
+
/**
|
|
102
|
+
* Morphological erosion: radius in pixels [1,12]. Sets kernel size for bridge-breaking.
|
|
103
|
+
* Larger values break thicker bridges but may erode fine details.
|
|
104
|
+
*
|
|
105
|
+
* @default 5
|
|
106
|
+
* @experimental This feature is experimental and only works in WebGL backend.
|
|
107
|
+
*/
|
|
108
|
+
morphErodeRadiusPx: number;
|
|
109
|
+
/**
|
|
110
|
+
* Morphological pass: number of separable passes [1,10].
|
|
111
|
+
* More passes increase the effective span.
|
|
112
|
+
*
|
|
113
|
+
* @default 4
|
|
114
|
+
* @experimental This feature is experimental and only works in WebGL backend.
|
|
115
|
+
*/
|
|
116
|
+
morphPass: number;
|
|
117
|
+
/**
|
|
118
|
+
* Geodesic dilation: radius in pixels [1,12]. Must match erosion for good reconstruction.
|
|
119
|
+
*
|
|
120
|
+
* @default 6
|
|
121
|
+
* @experimental This feature is experimental and only works in WebGL backend.
|
|
122
|
+
*/
|
|
123
|
+
morphDilateRadiusPx: number;
|
|
124
|
+
/**
|
|
125
|
+
* [0,1] Light wrap amount (halo intensity) at mask edge.
|
|
126
|
+
* Wraps blurred background color just outside the subject edge onto the subject boundary for realism.
|
|
127
|
+
*
|
|
128
|
+
* @default 0.8
|
|
129
|
+
*/
|
|
130
|
+
lightWrapIntensity: number;
|
|
131
|
+
/**
|
|
132
|
+
* [0.5,4.0] Controls power/tightness of the wrap band falloff. Higher = tighter/narrower wrap.
|
|
133
|
+
*
|
|
134
|
+
* @default 1.2
|
|
135
|
+
*/
|
|
136
|
+
lightWrapTightness: number;
|
|
137
|
+
/**
|
|
138
|
+
* Width of the wrap band (feather size, in normalized mask units) between the backgroundThreshold
|
|
139
|
+
* and foregroundThreshold in [0.0, (foregroundThreshold - backgroundThreshold) / 2]
|
|
140
|
+
* Higher = wider soft halo.
|
|
141
|
+
*
|
|
142
|
+
* @default 0.25
|
|
143
|
+
*/
|
|
144
|
+
lightWrapEdgeBand: number;
|
|
145
|
+
/**
|
|
146
|
+
* Blur amount used for background color in the wrap band (units=blur passes).
|
|
147
|
+
*
|
|
148
|
+
* @default 1
|
|
149
|
+
*/
|
|
150
|
+
lightWrapBlurAmount: number;
|
|
151
|
+
/**
|
|
152
|
+
* Downsampling factor for mask/blurring, must be [2,4].
|
|
153
|
+
* 2 = half resolution, 4 = quarter resolution for faster filtering.
|
|
154
|
+
* Use for performance tuning vs. quality.
|
|
155
|
+
*
|
|
156
|
+
* @default 2
|
|
157
|
+
*/
|
|
158
|
+
downSampleFactor: number;
|
|
31
159
|
}
|
|
160
|
+
export type Struct<Type> = {
|
|
161
|
+
[Key in keyof Type]: 'number' | 'boolean' | 'string' | 'object';
|
|
162
|
+
};
|
|
163
|
+
export declare const RENDERER_OPTIONS_STRUCT: Struct<RendererOptions>;
|
|
32
164
|
type Options = RendererOptions & {
|
|
33
165
|
backgroundImage: ImageBitmap | null;
|
|
34
166
|
log?: (message: string, meta?: Record<string, unknown>) => void;
|
|
35
167
|
};
|
|
36
168
|
export interface Renderer {
|
|
37
169
|
init(options?: Options): void | Promise<void>;
|
|
38
|
-
render(mask:
|
|
170
|
+
render(mask: OffscreenCanvas, frame: VideoFrame, options: Options): void;
|
|
39
171
|
isContextLost(): boolean;
|
|
40
172
|
release(): void;
|
|
41
173
|
}
|
|
@@ -1 +1,23 @@
|
|
|
1
|
-
export {
|
|
1
|
+
export const RENDERER_OPTIONS_STRUCT = {
|
|
2
|
+
backgroundImageUrl: 'string',
|
|
3
|
+
backgroundBlurAmount: 'number',
|
|
4
|
+
edgeBlurAmount: 'number',
|
|
5
|
+
effects: 'string',
|
|
6
|
+
backend: 'string',
|
|
7
|
+
foregroundThreshold: 'number',
|
|
8
|
+
backgroundThreshold: 'number',
|
|
9
|
+
sigmaSpace: 'number',
|
|
10
|
+
sigmaRangeLo: 'number',
|
|
11
|
+
sigmaRangeHi: 'number',
|
|
12
|
+
maskCombineRatio: 'number',
|
|
13
|
+
excludeBystanders: 'boolean',
|
|
14
|
+
personCenter: 'object',
|
|
15
|
+
morphErodeRadiusPx: 'number',
|
|
16
|
+
morphPass: 'number',
|
|
17
|
+
morphDilateRadiusPx: 'number',
|
|
18
|
+
lightWrapIntensity: 'number',
|
|
19
|
+
lightWrapTightness: 'number',
|
|
20
|
+
lightWrapEdgeBand: 'number',
|
|
21
|
+
lightWrapBlurAmount: 'number',
|
|
22
|
+
downSampleFactor: 'number',
|
|
23
|
+
};
|
|
@@ -12,24 +12,12 @@ export interface SegmentationModelAsset {
|
|
|
12
12
|
}
|
|
13
13
|
export type Delegate = 'CPU' | 'GPU' | undefined;
|
|
14
14
|
export interface ImageSegmenterOptions {
|
|
15
|
-
/**
|
|
16
|
-
* The canvas element to bind textures to. This has to be set for GPU
|
|
17
|
-
* processing. The task will initialize a WebGL or WebGPU context and throw an error if
|
|
18
|
-
* this fails (e.g. if you have already initialized a different type of
|
|
19
|
-
* context).
|
|
20
|
-
*/
|
|
21
|
-
canvas?: OffscreenCanvas;
|
|
22
|
-
/**
|
|
23
|
-
* The Google TaskVision segmentation model only works with WebGl so we need a separate canvas for this.
|
|
24
|
-
*/
|
|
25
|
-
segmenterCanvas?: OffscreenCanvas;
|
|
26
15
|
modelAsset?: SegmentationModelAsset;
|
|
27
16
|
/** Overrides the default backend to use for the provided model. */
|
|
28
17
|
delegate?: Delegate;
|
|
29
18
|
}
|
|
30
19
|
export interface SegmenterOptions {
|
|
31
20
|
basePath?: string;
|
|
32
|
-
output?: OffscreenCanvas | null;
|
|
33
21
|
processingWidth?: number;
|
|
34
22
|
processingHeight?: number;
|
|
35
23
|
imageSegmenterOptions?: ImageSegmenterOptions;
|
|
@@ -16,4 +16,25 @@ export type IncludeMessageEventDataType<E extends {
|
|
|
16
16
|
*/
|
|
17
17
|
export type TupleOf<T, N extends number> = N extends N ? number extends N ? T[] : _TupleOf<T, N, []> : never;
|
|
18
18
|
type _TupleOf<T, N extends number, R extends unknown[]> = R['length'] extends N ? R : _TupleOf<T, N, [T, ...R]>;
|
|
19
|
+
export interface Stats {
|
|
20
|
+
sumX: number;
|
|
21
|
+
sumY: number;
|
|
22
|
+
count: number;
|
|
23
|
+
minX: number;
|
|
24
|
+
maxX: number;
|
|
25
|
+
minY: number;
|
|
26
|
+
maxY: number;
|
|
27
|
+
}
|
|
28
|
+
export interface Weights {
|
|
29
|
+
iou: number;
|
|
30
|
+
area: number;
|
|
31
|
+
height: number;
|
|
32
|
+
center: number;
|
|
33
|
+
}
|
|
34
|
+
export interface SelectionOptions extends Weights {
|
|
35
|
+
centerX: number;
|
|
36
|
+
centerY: number;
|
|
37
|
+
decay: number;
|
|
38
|
+
}
|
|
39
|
+
export type OptionalKeys<T, K extends keyof T> = Omit<T, K> & Partial<Pick<T, K>>;
|
|
19
40
|
export {};
|