@vonage/ml-transformers 4.0.1 → 4.1.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/dist/docs/assets/search.js +1 -1
- package/dist/docs/classes/BackgroundTransformer.html +1 -0
- package/dist/docs/index.html +1 -1
- package/dist/docs/modules.html +2 -2
- package/dist/ml-transformers.es.js +1 -1
- package/dist/ml-transformers.umd.js +38 -38
- package/dist/types/main.d.ts +2 -1
- package/package.json +1 -1
package/dist/types/main.d.ts
CHANGED
|
@@ -3,6 +3,7 @@ import { BlurRadius, BackgroundBlurConfig, VirtualBackgroundConfig, AssetBackgro
|
|
|
3
3
|
import { isSupported } from "./src/utils/support";
|
|
4
4
|
import { MediapipeHelper } from "./src/utils/mediapipe";
|
|
5
5
|
import { VonageMediaProcessor } from "./src/facades/vonage-media-processor";
|
|
6
|
+
import { BackgroundTransformer } from "./src/transformers/background-transformer";
|
|
6
7
|
import VonageSelfieSegmentation from "./libs/selfie-segmentation-helper";
|
|
7
8
|
/**
|
|
8
9
|
* MediaPipe Selfie Segmentation static metadata.
|
|
@@ -147,4 +148,4 @@ declare type MediaProcessorConfig = MediaProcessorBaseConfig & BackgroundOptions
|
|
|
147
148
|
export declare function createVonageMediaProcessor(config: MediaProcessorConfig): Promise<VonageMediaProcessor>;
|
|
148
149
|
export type { EventDataMap, WarnData, ErrorData, EventMetaData, DropInfo, } from "@vonage/media-processor";
|
|
149
150
|
export type { MediaProcessorBaseConfig, BackgroundBlurConfig, VirtualBackgroundConfig, VideoBackgroundConfig, AssetBackgroundConfig, SilhouetteBlurConfig, MediaProcessorConfig, BackgroundOptions, MediapipeConfig, MediaPipeResults, MediaPipeModelType, MediaPipeResultsListener, FaceDetectionResults, FaceDetectionOptions, FaceMeshResults, FaceMeshOptions, HandsResults, HandsOptions, HolisticResults, HolisticOptions, ObjectronResults, ObjectronOptions, SelfieSegmentationOptions, SelfieSegmentationResults, PoseResults, PoseOptions, MediaPipeModelConfig, };
|
|
150
|
-
export { VonageMediaProcessor, BlurRadius, isSupported, MediapipeHelper, getVonageSelfieSegmentation, getVonageFaceDetection, getVonageFaceMash, getVonageHands, getVonageHolistic, getVonageObjectron, getVonagePose, WarningType, PipelineInfoData, ErrorFunction, };
|
|
151
|
+
export { VonageMediaProcessor, BlurRadius, isSupported, MediapipeHelper, getVonageSelfieSegmentation, getVonageFaceDetection, getVonageFaceMash, getVonageHands, getVonageHolistic, getVonageObjectron, getVonagePose, WarningType, PipelineInfoData, ErrorFunction, BackgroundTransformer, };
|