You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 lines
271 B
Python

# -*- coding: utf-8 -*-
"""
图片输入模块
提供图片加载功能,支持单张图片、多张图片和目录批量加载
"""
from .loader import ImageLoader, ImageInfo, load_image, load_images
__all__ = ["ImageLoader", "ImageInfo", "load_image", "load_images"]