mirror of
https://github.com/snapotter-hq/SnapOtter.git
synced 2026-08-03 07:46:42 +02:00
24 lines
1.0 KiB
TypeScript
24 lines
1.0 KiB
TypeScript
export { removeBackground } from "./background-removal.js";
|
|
export type { DispatcherStatus } from "./bridge.js";
|
|
export {
|
|
getDispatcherStatus,
|
|
initDispatcher,
|
|
isGpuAvailable,
|
|
shutdownDispatcher,
|
|
} from "./bridge.js";
|
|
export { colorize } from "./colorization.js";
|
|
export type { DetectFacesResult, FaceRegion } from "./face-detection.js";
|
|
export { blurFaces, detectFaces } from "./face-detection.js";
|
|
export { enhanceFaces } from "./face-enhancement.js";
|
|
export type { FaceLandmarkPoint, FaceLandmarks, FaceLandmarksResult } from "./face-landmarks.js";
|
|
export { detectFaceLandmarks } from "./face-landmarks.js";
|
|
export { inpaint } from "./inpainting.js";
|
|
export { noiseRemoval } from "./noise-removal.js";
|
|
export { extractText } from "./ocr.js";
|
|
export type { OutpaintOptions } from "./outpainting.js";
|
|
export { outpaint } from "./outpainting.js";
|
|
export { removeRedEye } from "./red-eye-removal.js";
|
|
export { restorePhoto } from "./restoration.js";
|
|
export { seamCarve } from "./seam-carving.js";
|
|
export { upscale } from "./upscaling.js";
|