Skip to content Skip to navigation

Connexions

You are here: Home » Content » Steganalysis - Zeros Hiding Detection

Navigation

Content Actions

  • Download module PDF
  • Add to ...
    Add the module to:
    • My Favorites
    • A lens
    • An external social bookmarking service
    • My Favorites (What is 'My Favorites'?)
      'My Favorites' is a special kind of lens which you can use to bookmark modules and collections directly in Connexions. 'My Favorites' can only be seen by you, and collections saved in 'My Favorites' can remember the last module you were on. You need a Connexions account to use 'My Favorites'.
    • A lens (What is a lens?)

      Definition of a lens

      Lenses

      A lens is a custom view of Connexions content. You can think of it as a fancy kind of list that will let you see Connexions through the eyes of organizations and people you trust.

      What is in a lens?

      Lens makers point to Connexions materials (modules and collections), creating a guide that includes their own comments and descriptive tags about the content.

      Who can create a lens?

      Any individual Connexions member, a community, or a respected organization.

    • External bookmarks
  • E-mail the authors

Lenses

What is a lens?

Definition of a lens

Lenses

A lens is a custom view of Connexions content. You can think of it as a fancy kind of list that will let you see Connexions through the eyes of organizations and people you trust.

What is in a lens?

Lens makers point to Connexions materials (modules and collections), creating a guide that includes their own comments and descriptive tags about the content.

Who can create a lens?

Any individual Connexions member, a community, or a respected organization.

This content is ...

Affiliated with (What does "Affiliated with" mean?)

This content is either by members of the organizations listed or about topics related to the organizations listed. Click each link to see a list of all content affiliated with the organization.
  • Rice University ELEC 301 Projects

    This module is included inLens: Rice University ELEC 301 Project Lens
    By: Rice University ELEC 301As a part of collection:"ELEC 301 Projects Fall 2005"

    Click the "Rice University ELEC 301 Projects" link to see all content affiliated with them.

Recently Viewed

This feature requires Javascript to be enabled.

Steganalysis - Zeros Hiding Detection

Module by: Danny Blanco, Elliot Ng, Charlie Ice, Bryan Grandy

Steganalysis

Zeros Hiding Detection

In order to find data hiding with our zeros hidden method, we first analyzed the histogram of the DCT coefficients of an uncompressed image, compressed image without data, and compressed image with hidden data. The histogram of the DCT coefficients reveals the number of times each DCT coefficient value appears within the DCT matrix. From the analysis of an uncompressed image (Figure 1), the histogram has a smooth curve. In the histogram of compressed image (Figure 2), values before the threshold are dropped. Therefore, those values dropped to zero in the histogram. The histogram of compressed image with data (Figure 3) shows a similar shape to an uncompressed image. However, the values are much lower which makes sense since we are replacing the values that were originally going to be dropped with data. Therefore it is statically less likely to replace the dropped value with the same value.

Figure 1
Figure 1 (DCT_coefficients)
Figure 2
Figure 2 (DCT_compressed)
Figure 3
Figure 3 (DCT_hidden)

Therefore, after analyzing the histogram of the different types of images, we did an analysis of the l2 norm in the DCT matrix. If the analysis results in no power in the one valued DCT coefficients, it is a compressed image. This is due to the fact that ones are the minimum value that can be dropped. If there is power in the ones, then the image is either uncompressed or contains hidden data. The key difference between the two is the magnitude of the power in the ones. Statistically, it is less likely that every dropped coefficient gets replaced with a one. Therefore, the magnitude of the power in the ones in an image with data is lower than a compressed image. An image with hidden data will on average fall below a certain threshold. This threshold is dependent on the image size. Figure 4 shows the plots of the power without data, the power with data, and the threshold. Clearly, the power without data is greater than the power with data. We found our detection program to have a 90% success rate but resulted in a false-positive 12% of the time.

L2 Norm Equation

x 2 = n = 0 N - 1 | x n | 2 1 2 x 2 = n = 0 N - 1 | x n | 2 1 2 2 x n 0 N 1 x n 2 1 2 (1)
Figure 4
Figure 4 (L2_norm)

Comments, questions, feedback, criticisms?

Send feedback