To add a new method for benchmarking:
- Create a file
method_steganography.py - Create a class that extends the
SteganographyMethodclass fromsteganography_interface.py. - Import the class into
benchmark.pyand add its entry in the array:
steganography_methods: List[SteganographyMethod] = [
QRCodeSteganography(),
MethodSteganography()
]- Run
python3 benchmark.py