A block-based blind embedding and correlation coefficient detector technique for image watermarking is presented below.

[ E_BLK_BLIND ] [ D_BLK_CC ]


Embedding

This method is based on System 3 presented in [ 1 ]. It is a method based on E-Blind, although in this case the image is grouped into blocks and then the mark is distributed among them. Doing so makes the system more robust. The method works exactly the same as E-Blind.

The code for the embedding method is available at the following link: E_BLK_BLIND.

To embed a mark you can run a command like the following:

$ python3 E_BLK_BLIND.py image.png passw123 1 marked.png


Detection

Unlike the E-Blind method, where we perform the detection using linear correlation, in this case we use the correlation coefficient between the marked image and the mark. We will need the password to generate the same mark that has been embedded in order to calculate the correlation coefficient.

The formula used for the correlation coefficient is as follows:

$Z_{cc} = \frac{ \bar{v}·\bar{w_r} }{ \sqrt{(\bar{v}·\bar{v})(\bar{w_r}·\bar{w_r})}} = \sum_{x=0}^7 \sum_{y=0}^7 \bar{v}(x,y) \bar{w_r}(x,y)$

The threshold of $Z_{cc}$ used to decide whether the mark is present or not is usually calculated experimentally for the type of images in which it is to be used. In this implementation a threshold of $0.55$ has been used.

The code of the detection method is available at the following link: D_BLK_CC.

To detect the mark and see if a 0 or a 1 has been embedded, just run a command like the following:

$ python3 D_BLK_CC.py marked.png passw123
CC: 0.9324434
watermark, m=1


Referencias

  1. I. J. Cox, M. L. Miller, J. A. Bloom, J. Fridrich y T. Kalker (2008). Digital Watermarking and Steganography. Morgan Kaufmann. Second Edition.

Comments

There are currently no comments on this article.


Add a Comment