File size: 350 Bytes
8eab354
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
"""
Data processing package for signature verification.
"""

from .preprocessing import SignaturePreprocessor
from .augmentation import (
    SignatureAugmentationPipeline,
    PairAugmentation,
    OnlineAugmentation
)

__all__ = [
    'SignaturePreprocessor',
    'SignatureAugmentationPipeline',
    'PairAugmentation',
    'OnlineAugmentation'
]