Spaces:
Sleeping
Sleeping
File size: 414 Bytes
ad8cacf | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | """
Background removal module for Animal Grid Vectorizer.
"""
from .simple import remove_background_simple
from .advanced import remove_background_advanced
from .svg_cleanup import find_and_remove_large_paths
from .batch import batch_remove_background
__all__ = [
'remove_background_simple',
'remove_background_advanced',
'find_and_remove_large_paths',
'batch_remove_background'
]
|