24 lines
462 B
Python
24 lines
462 B
Python
from .base import (
|
|
ContentTypeProfile,
|
|
BrandDictionary,
|
|
CropContext,
|
|
DetectionConfig,
|
|
FrameExtractionConfig,
|
|
OCRConfig,
|
|
ResolverConfig,
|
|
SceneFilterConfig,
|
|
)
|
|
from .soccer import SoccerBroadcastProfile
|
|
|
|
__all__ = [
|
|
"ContentTypeProfile",
|
|
"BrandDictionary",
|
|
"CropContext",
|
|
"DetectionConfig",
|
|
"FrameExtractionConfig",
|
|
"OCRConfig",
|
|
"ResolverConfig",
|
|
"SceneFilterConfig",
|
|
"SoccerBroadcastProfile",
|
|
]
|