Files
FastDeploy/fastdeploy/input/image_processors/__init__.py
T
luukunn 8496ec71a6 [DataProcessor] Move image_processor to unified directory and add MultiModalProcessor (#7109)
* first commit

* step 9~10

* update multimodal

* update multimodal

* fix load tokenizer

* add unit test

* fix unit test & AdaptiveImageProcessor

* Delete unused code
2026-04-08 10:16:27 +08:00

28 lines
1.1 KiB
Python

# Copyright (c) 2025 PaddlePaddle Authors. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
from fastdeploy.input.image_processors.adaptive_processor import ( # noqa: F401
AdaptiveImageProcessor,
get_image_preprocessor,
)
from fastdeploy.input.image_processors.paddleocr_processor import ( # noqa: F401
ImageProcessor as PaddleOCRImageProcessor,
)
from fastdeploy.input.image_processors.qwen3_processor import ( # noqa: F401
ImageProcessor as Qwen3ImageProcessor,
)
from fastdeploy.input.image_processors.qwen_processor import ( # noqa: F401
ImageProcessor as QwenImageProcessor,
)