1
0
Fork 0
onnx-web/api/onnx_web/__init__.py

32 lines
859 B
Python
Raw Normal View History

2023-01-28 23:15:42 +00:00
from . import logging
2023-02-05 13:53:26 +00:00
from .chain import correct_gfpgan, upscale_resrgan, upscale_stable_diffusion
from .diffusion.load import get_latents_from_seed, load_pipeline
from .diffusion.run import (
2023-02-05 13:53:26 +00:00
run_img2img_pipeline,
run_inpaint_pipeline,
run_txt2img_pipeline,
)
from .image import (
2023-02-05 13:53:26 +00:00
expand_image,
mask_filter_gaussian_multiply,
mask_filter_gaussian_screen,
mask_filter_none,
noise_source_fill_edge,
noise_source_fill_mask,
noise_source_gaussian,
noise_source_histogram,
noise_source_normal,
noise_source_uniform,
)
2023-02-05 13:53:26 +00:00
from .params import Border, ImageParams, Param, Point, Size, StageParams, UpscaleParams
from .upscale import run_upscale_correction
2023-01-16 01:34:51 +00:00
from .utils import (
2023-02-05 13:53:26 +00:00
ServerContext,
base_join,
get_and_clamp_float,
get_and_clamp_int,
get_from_list,
get_from_map,
get_not_empty,
)