获取水印相关性
(self, orig_sig_data: bytes,
watermark_data: bytes)
| 76 | return self.get_watermark_correlation(orig_sig_data, watermark_data) |
| 77 | |
| 78 | def get_watermark_correlation(self, orig_sig_data: bytes, |
| 79 | watermark_data: bytes) -> float: |
| 80 | """获取水印相关性""" |
| 81 | raise NotImplementedError |
| 82 | |
| 83 | def get_high_watermark_level(self) -> float: |
| 84 | """获取高水印阈值""" |