SlideShare a Scribd company logo
1 of 6
Download to read offline
International Journal of Computer and Technology (IJCET), ISSN 0976 – 6367(Print),
International Journal of Computer Engineering
                                              Engineering
ISSN 0976 – 6375(Online) Volume 1, Number 1, May - June (2010), © IAEME
and Technology (IJCET), ISSN 0976 – 6367(Print)
ISSN 0976 – 6375(Online) Volume 1
                                                                         IJCET
Number 1, May - June (2010), pp. 207-212                             ©IAEME
© IAEME, http://www.iaeme.com/ijcet.html

      VISUAL CRYPTOGRAPHY SCHEME FOR COLOR
                                       IMAGES
                                   B.Saichandana
                                  Assistant Professor
                    Department of Computer Science and Engineering
                        GIT, GITAM University, Visakhapatnam

                                    Dr.K.srinivas
                                  Associate Professor
                    Department of Computer Science and Engineering
                            Pydah College of Engineering

                                 Dr. Reddi Kiran Kumar
                                   Assistant Professor
                             Department of Computer Science
                            Krishna University, Machilipatnam

ABSTRACT:
       Visual cryptography is a method for protecting image based secrets that has a
computation-free decoding process. In this paper, we propose a new visual cryptography
scheme for color images based on CMY model, half toning technique and the traditional
binary image sharing scheme. The image shares generated by our method are transmitted
to the destination through a network and the image is decrypted by stacking any two
transparencies. The image can be in any standard format. This scheme provides an
efficient way to hide the natural image among different shares. Furthermore, the size of
the shares and the implementation complexity do not depend on the number of colors
appearing in the secret image.
I. INTRODUCTION:
       Data hiding and visual cryptography are used to introduce confidentiality and
security when visual data are transmitted through unsecured channels. Data hiding
techniques try to embed data in digital media and transmit it in an imperceptible way. On
the other hand, in visual cryptography or visual secret sharing, the original input is shared



                                            207
International Journal of Computer Engineering and Technology (IJCET), ISSN 0976 – 6367(Print),
ISSN 0976 – 6375(Online) Volume 1, Number 1, May - June (2010), © IAEME


between a set of participants by a secret image holder. Based on the sharing policy, only
qualifies subsets of participants can recover the original input image.
        Visual cryptography [1] is a cryptographic technique which allows visual
information (pictures, text, etc) to be encrypted in such a way that the decryption can be
performed by the human visual system without the aid of computers. The most traditional
visual cryptography scheme is used for black and white images. Recently, some visual
cryptography schemes for gray or color images have been proposed. In all the proposed
schemes [2, 3, 4], if the number of colors in an image is large, the worse the resolution of
the decrypted images.
        Two important factors are used to determine the efficiency of any visual
cryptography scheme [5], namely: 1) the quality of the reconstructed image and 2) the
pixel expansion factor (m). Any loss of information during the reconstruction phase leads
to the reduction in the quality of the recovered image. On the other hand pixel expansion
refers to the number of sub-pixels in the generated shares that represents a pixel of the
original input image. For bandwidth constrained communication channels it is desirable
to keep ‘m’ as small as possible. For color images, reducing pixel expansion is of
paramount importance since they occupy more space and more bandwidth compared to
grey scale and binary images.
The paper is organized as follows: Section II presents the proposed scheme, Section III
presents the experimental results and finally section IV makes the conclusions.
II PROPOSED SCHEME:
        The proposed color image sharing scheme is based on the CMY model, half
toning technique and the traditional binary image sharing scheme.
        Firstly, a chromatic image is decomposed into three monochromatic images in
tones of cyan, magenta and yellow. The purpose of using a color model is to facilitate the
specification of colors in some standard, generally accepted way. In essence, a color
model is a specification of a coordinate system and a subspace within that system where
each color is represented in a single point. The CMY color model is used in our method.
This conversion is performed using the simple operation given in Figure 1.




                                                208
International Journal of Computer Engineering and Technology (IJCET), ISSN 0976 – 6367(Print),
ISSN 0976 – 6375(Online) Volume 1, Number 1, May - June (2010), © IAEME


                                     C              1         R
                                     M     =        1    -    G
                                     Y              1         B

                          Figure 1 Conversion from RGB to CMY
          Secondly, these three monochromatic images (cyan, magenta and yellow) are
transformed into binary images by half toning technique. Halftone is a method to display
an image in black and white spots. In this paper, we use Floyd-Steinberg algorithm to
generate the halftone images.
FLOYD AND STEINBERG ALGORITHM:
          Assume, g is the gray value of the image, which location is p(x,y).
e is the difference between the computed value and correct value.
b=0.
w=255.
t=128. ((b+w)/2)
if g > t then
       print white;
       e=g-w;
else
    print black;
    e=g-b;
(3/8 * e) is added to p(x+1,y);
(3/8 * e) is added to p(x,y+1);
(1/4 * e) is added to p(x+1, y+1)
Endif
          Thirdly, we consider every monochromatic image as a secret image and use the
traditional binary image sharing scheme to divide it into three secret shares with the same
color, and then we can choose any three different colors of which to compose them into
three colored shares. We have used (2, 3) visual threshold scheme for natural images [6],
for the generation of shares with the matrices shown in Figure 2.
                                  011           101          110
                            M0 = 0 1 1 M1= 1 0 1 M2= 1 1 0
                                  011           101          110
                        Figure 2 Matrices used in binary image sharing


                                                209
International Journal of Computer Engineering and Technology (IJCET), ISSN 0976 – 6367(Print),
ISSN 0976 – 6375(Online) Volume 1, Number 1, May - June (2010), © IAEME


        Finally, these shares are transmitted through a communication channel to the
destination. The original secret information will be visible by stacking any 2 or 3
transparencies, but none secret information will be revealed by only one transparency.
        As stated in section I, the efficiency of any visual cryptography scheme depends
on two factors ie; the quality of the reconstructed image and the pixel expansion factor
‘m’. We used the Structural Similarity (SSIM) index [7] for measuring the quality
between two images. The SSIM index can be viewed as a quality measure of one of the
images being compared provided the other image is regarded as of perfect quality. The
quality measures are calculated between the original image, generated shares and the
recovered image. In our proposed scheme, a) the size of the shares is equal to the size of
the original input image, implies that no extra bandwidth is required for transmitting the
shares through a communication channel and b) the generated shares perfectly recover
the output image with SSIM index near to 1. These are the key advantages of our visual
cryptography scheme.
III EXPERIMENTAL RESULTS:
        This section presents the simulation results illustrating the performance of the
proposed Visual cryptographic scheme. The test image employed here is the true color
image “flower” with 290×290 pixels. The encryption and decryption algorithm are
implemented in Matlab 7.0 in core2duo of 2.66 GHz machine.




                               a) original image           b) halftone




                             c) S1 (share 1)             d) S2 (share 2)




                                                210
International Journal of Computer Engineering and Technology (IJCET), ISSN 0976 – 6367(Print),
ISSN 0976 – 6375(Online) Volume 1, Number 1, May - June (2010), © IAEME




                              e) S3 (share 3)           f ) S1+S2




                                 f) S2+S3                  g) S1+S3




                                           h)S1+S2+S3
                            Figure 3 Simulation results for (2,3) scheme

        Figure 3(a) is an original chromatic image. The image is decomposed in to three
monochromatic images in tones of cyan, magenta and yellow. These three images are
transformed into binary images by half toning technique. If we compose those three
monochromatic images, we get figure 3(b). By using the binary image sharing scheme,
we divide every monochromatic image into three secret shares with same color, and then,
we can choose any three different colors of which to compose them into three colored
shares shown in figures 3(c), 3(d) and 3(e). The original information will be visible by
stacking any 2 or 3 transparencies as shown in figures 3(e), 3(f), 3(g) and 3(h).
        Table 1 shows the quality measures that are calculated between the original
image, generated shares and the recovered image by using the SSIM index.
                                 Image                   SSIM Index
                             Original image                   1
                              S1( share 1)                 0.0041
                              S2 (share 2)                 0.0032
                              S3 (share 3)                 0.0036
                                 S1+S2                      0.88
                                 S2+S3                      0.89
                                 S1+S3                      0.87
                              S1+S2+S3                      0.94
                      Table 1: SSIM index values for images in Figure 3


                                                211
International Journal of Computer Engineering and Technology (IJCET), ISSN 0976 – 6367(Print),
ISSN 0976 – 6375(Online) Volume 1, Number 1, May - June (2010), © IAEME


CONCLUSION:
         In this paper, we have presented a new kind of visual cryptography scheme based
on CMY model, half toning and binary secret sharing scheme. The advantages of the
proposed method are its pixel expansion factor (the size of the share is same as the size of
the original image) and its capability of perfect reconstruction of the secret image. This
work is an attempt to make a secured transfer of valuable images between two trusted
parties. The confidentiality is maintained and the authentication can be checked by digital
signatures. It can be shown that the proposed scheme do not depend on the number of
colors appearing in the secret image.
REFERENCES:
[1] M.Naor and A Shamir, “Visual Cryptography”, Proceeding of Eurocrypt 94 Lecture
Notes in Computer Science, LNCS963,Berlin: Springer, 1994, pp1-11.

[2] E.R.Verheul and H.C.A. Tilberg, “ Constructions and properties of k out of n visual
secret sharing schemes”, Designs, Codes and Cryptography 1997, 11(2): pp 179-196
[3] M.Naor and A.shamir, “Visual cryptography II: Improving the contrast via the cover
base,” In Proc. of security protocols, international workshop 1996, Lecture notes in
Computer Science No. 1189, Springer-Verlag, 1997, pp 69-74
[4] V.Rijmen and B.Preneel, “Efficient color visual encryption for shared colors of
Benetton”, Eorucrypt ’96, Rump Session Berlin 1996
[5] Mohsen Heidarinejad, Amirhossein Alamdar Yazdi and Konstantious N.Plataniotis,
“Algebraic visual cryptography scheme for color images”, IEEE transactions 2008.
[6] H.J.Kim and Y.Choi “A new visual cryptography using Natural images”, IEEE
transactions “, Symposium on circuits and systems 2005.
[7] Z. Wang, A. C. Bovik, H. R. Sheikh and E. P. Simoncelli, "Image quality assessment:
From error visibility to structural similarity," IEEE Transactions on Image Processing,
vol. 13, no. 4, pp. 600-612, Apr. 2004.




                                                212

More Related Content

What's hot

A novel embedded hybrid thinning algorithm for
A novel embedded hybrid thinning algorithm forA novel embedded hybrid thinning algorithm for
A novel embedded hybrid thinning algorithm for
prjpublications
 
An application of morphological
An application of morphologicalAn application of morphological
An application of morphological
Naresh Chilamakuri
 
Analysis of color image noising process
Analysis of color image noising processAnalysis of color image noising process
Analysis of color image noising process
ZiadAlqady
 
Spectral approach to image projection with cubic b spline interpolation
Spectral approach to image projection with cubic b spline interpolationSpectral approach to image projection with cubic b spline interpolation
Spectral approach to image projection with cubic b spline interpolation
iaemedu
 
Image compression using sand algorithm
Image compression using sand algorithmImage compression using sand algorithm
Image compression using sand algorithm
IAEME Publication
 

What's hot (18)

A novel embedded hybrid thinning algorithm for
A novel embedded hybrid thinning algorithm forA novel embedded hybrid thinning algorithm for
A novel embedded hybrid thinning algorithm for
 
An application of morphological
An application of morphologicalAn application of morphological
An application of morphological
 
Efficient fingerprint image enhancement algorithm based on gabor filter
Efficient fingerprint image enhancement algorithm based on gabor filterEfficient fingerprint image enhancement algorithm based on gabor filter
Efficient fingerprint image enhancement algorithm based on gabor filter
 
Comparative Study and Analysis of Image Inpainting Techniques
Comparative Study and Analysis of Image Inpainting TechniquesComparative Study and Analysis of Image Inpainting Techniques
Comparative Study and Analysis of Image Inpainting Techniques
 
Experimental analysis of matching technique of steganography for greyscale an...
Experimental analysis of matching technique of steganography for greyscale an...Experimental analysis of matching technique of steganography for greyscale an...
Experimental analysis of matching technique of steganography for greyscale an...
 
Property based fusion for multifocus images
Property based fusion for multifocus imagesProperty based fusion for multifocus images
Property based fusion for multifocus images
 
Analysis of color image noising process
Analysis of color image noising processAnalysis of color image noising process
Analysis of color image noising process
 
IRJET- Histogram Specification: A Review
IRJET-  	  Histogram Specification: A ReviewIRJET-  	  Histogram Specification: A Review
IRJET- Histogram Specification: A Review
 
20120140504013
2012014050401320120140504013
20120140504013
 
Design of Gabor Filter for Noise Reduction in Betel Vine leaves Disease Segme...
Design of Gabor Filter for Noise Reduction in Betel Vine leaves Disease Segme...Design of Gabor Filter for Noise Reduction in Betel Vine leaves Disease Segme...
Design of Gabor Filter for Noise Reduction in Betel Vine leaves Disease Segme...
 
Medial axis transformation based skeletonzation of image patterns using image...
Medial axis transformation based skeletonzation of image patterns using image...Medial axis transformation based skeletonzation of image patterns using image...
Medial axis transformation based skeletonzation of image patterns using image...
 
Spectral approach to image projection with cubic b spline interpolation
Spectral approach to image projection with cubic b spline interpolationSpectral approach to image projection with cubic b spline interpolation
Spectral approach to image projection with cubic b spline interpolation
 
44 paper
44 paper44 paper
44 paper
 
Gabor Filter
Gabor FilterGabor Filter
Gabor Filter
 
COMPARATIVE STUDY OF DISTANCE METRICS FOR FINDING SKIN COLOR SIMILARITY OF TW...
COMPARATIVE STUDY OF DISTANCE METRICS FOR FINDING SKIN COLOR SIMILARITY OF TW...COMPARATIVE STUDY OF DISTANCE METRICS FOR FINDING SKIN COLOR SIMILARITY OF TW...
COMPARATIVE STUDY OF DISTANCE METRICS FOR FINDING SKIN COLOR SIMILARITY OF TW...
 
Image compression using sand algorithm
Image compression using sand algorithmImage compression using sand algorithm
Image compression using sand algorithm
 
APPLICATION OF IMAGE FUSION FOR ENHANCING THE QUALITY OF AN IMAGE
APPLICATION OF IMAGE FUSION FOR ENHANCING THE QUALITY OF AN IMAGEAPPLICATION OF IMAGE FUSION FOR ENHANCING THE QUALITY OF AN IMAGE
APPLICATION OF IMAGE FUSION FOR ENHANCING THE QUALITY OF AN IMAGE
 
20120140502012
2012014050201220120140502012
20120140502012
 

Viewers also liked

Shared bandwidth reservation of backup paths of multiple
Shared bandwidth reservation of backup paths of multipleShared bandwidth reservation of backup paths of multiple
Shared bandwidth reservation of backup paths of multiple
iaemedu
 
Dc dc converter for ultracapacitor boosted electric vehicle
Dc dc converter for ultracapacitor boosted electric vehicleDc dc converter for ultracapacitor boosted electric vehicle
Dc dc converter for ultracapacitor boosted electric vehicle
iaemedu
 
Recent research in web page classification – a review
Recent research in web page classification – a reviewRecent research in web page classification – a review
Recent research in web page classification – a review
iaemedu
 
A study on the presence of fecal pollution indicator
A study on the presence of fecal pollution indicatorA study on the presence of fecal pollution indicator
A study on the presence of fecal pollution indicator
iaemedu
 
A comparative study on multicast routing using dijkstra’s
A comparative study on multicast routing using dijkstra’sA comparative study on multicast routing using dijkstra’s
A comparative study on multicast routing using dijkstra’s
iaemedu
 
Parallel communicating flip pushdown automata systems
Parallel communicating flip pushdown automata systemsParallel communicating flip pushdown automata systems
Parallel communicating flip pushdown automata systems
iaemedu
 
An analytical study on a factors affecting employee
An analytical study on a factors affecting employeeAn analytical study on a factors affecting employee
An analytical study on a factors affecting employee
iaemedu
 
Innovative hr practices in software organization
Innovative hr practices in software organizationInnovative hr practices in software organization
Innovative hr practices in software organization
iaemedu
 

Viewers also liked (9)

Shared bandwidth reservation of backup paths of multiple
Shared bandwidth reservation of backup paths of multipleShared bandwidth reservation of backup paths of multiple
Shared bandwidth reservation of backup paths of multiple
 
Dc dc converter for ultracapacitor boosted electric vehicle
Dc dc converter for ultracapacitor boosted electric vehicleDc dc converter for ultracapacitor boosted electric vehicle
Dc dc converter for ultracapacitor boosted electric vehicle
 
Recent research in web page classification – a review
Recent research in web page classification – a reviewRecent research in web page classification – a review
Recent research in web page classification – a review
 
A study on the presence of fecal pollution indicator
A study on the presence of fecal pollution indicatorA study on the presence of fecal pollution indicator
A study on the presence of fecal pollution indicator
 
A comparative study on multicast routing using dijkstra’s
A comparative study on multicast routing using dijkstra’sA comparative study on multicast routing using dijkstra’s
A comparative study on multicast routing using dijkstra’s
 
Parallel communicating flip pushdown automata systems
Parallel communicating flip pushdown automata systemsParallel communicating flip pushdown automata systems
Parallel communicating flip pushdown automata systems
 
An analytical study on a factors affecting employee
An analytical study on a factors affecting employeeAn analytical study on a factors affecting employee
An analytical study on a factors affecting employee
 
Innovative hr practices in software organization
Innovative hr practices in software organizationInnovative hr practices in software organization
Innovative hr practices in software organization
 
Tech transfer making it as a risk free approach in pharmaceutical and biotech in
Tech transfer making it as a risk free approach in pharmaceutical and biotech inTech transfer making it as a risk free approach in pharmaceutical and biotech in
Tech transfer making it as a risk free approach in pharmaceutical and biotech in
 

Similar to Visual cryptography scheme for color images

Comparative study on image fusion methods in spatial domain
Comparative study on image fusion methods in spatial domainComparative study on image fusion methods in spatial domain
Comparative study on image fusion methods in spatial domain
IAEME Publication
 
Influence of local segmentation in the context of digital image processing
Influence of local segmentation in the context of digital image processingInfluence of local segmentation in the context of digital image processing
Influence of local segmentation in the context of digital image processing
iaemedu
 
An image steganography using improved hyper-chaotic Henon map and fractal Tro...
An image steganography using improved hyper-chaotic Henon map and fractal Tro...An image steganography using improved hyper-chaotic Henon map and fractal Tro...
An image steganography using improved hyper-chaotic Henon map and fractal Tro...
IJECEIAES
 
A fast fpga based architecture for measuring the distance between
A fast fpga based architecture for measuring the distance betweenA fast fpga based architecture for measuring the distance between
A fast fpga based architecture for measuring the distance between
IAEME Publication
 
Digital image watermarking using dct with high security of
Digital image watermarking using dct with high security ofDigital image watermarking using dct with high security of
Digital image watermarking using dct with high security of
IAEME Publication
 
Prediction based lossless medical image compression
Prediction based lossless medical image compressionPrediction based lossless medical image compression
Prediction based lossless medical image compression
IAEME Publication
 
Analysis of color image noising process
Analysis of color image noising processAnalysis of color image noising process
Analysis of color image noising process
ZiadAlqady
 
Analysis of color image noising process
Analysis of color image noising processAnalysis of color image noising process
Analysis of color image noising process
ZiadAlqady
 

Similar to Visual cryptography scheme for color images (20)

Comparative study on image fusion methods in spatial domain
Comparative study on image fusion methods in spatial domainComparative study on image fusion methods in spatial domain
Comparative study on image fusion methods in spatial domain
 
Evaluation of graphic effects embedded image compression
Evaluation of graphic effects embedded image compression Evaluation of graphic effects embedded image compression
Evaluation of graphic effects embedded image compression
 
High Security Cryptographic Technique Using Steganography and Chaotic Image E...
High Security Cryptographic Technique Using Steganography and Chaotic Image E...High Security Cryptographic Technique Using Steganography and Chaotic Image E...
High Security Cryptographic Technique Using Steganography and Chaotic Image E...
 
Influence of local segmentation in the context of digital image processing
Influence of local segmentation in the context of digital image processingInfluence of local segmentation in the context of digital image processing
Influence of local segmentation in the context of digital image processing
 
An image steganography using improved hyper-chaotic Henon map and fractal Tro...
An image steganography using improved hyper-chaotic Henon map and fractal Tro...An image steganography using improved hyper-chaotic Henon map and fractal Tro...
An image steganography using improved hyper-chaotic Henon map and fractal Tro...
 
Feature isolation and extraction of satellite images for remote sensing appli...
Feature isolation and extraction of satellite images for remote sensing appli...Feature isolation and extraction of satellite images for remote sensing appli...
Feature isolation and extraction of satellite images for remote sensing appli...
 
A fast fpga based architecture for measuring the distance between
A fast fpga based architecture for measuring the distance betweenA fast fpga based architecture for measuring the distance between
A fast fpga based architecture for measuring the distance between
 
PREPROCESSING ALGORITHM FOR DIGITAL FINGERPRINT IMAGE RECOGNITION
PREPROCESSING ALGORITHM FOR DIGITAL FINGERPRINT IMAGE RECOGNITION PREPROCESSING ALGORITHM FOR DIGITAL FINGERPRINT IMAGE RECOGNITION
PREPROCESSING ALGORITHM FOR DIGITAL FINGERPRINT IMAGE RECOGNITION
 
PREPROCESSING ALGORITHM FOR DIGITAL FINGERPRINT IMAGE RECOGNITION
PREPROCESSING ALGORITHM FOR DIGITAL FINGERPRINT IMAGE RECOGNITIONPREPROCESSING ALGORITHM FOR DIGITAL FINGERPRINT IMAGE RECOGNITION
PREPROCESSING ALGORITHM FOR DIGITAL FINGERPRINT IMAGE RECOGNITION
 
PREPROCESSING ALGORITHM FOR DIGITAL FINGERPRINT IMAGE RECOGNITION
PREPROCESSING ALGORITHM FOR DIGITAL FINGERPRINT IMAGE RECOGNITIONPREPROCESSING ALGORITHM FOR DIGITAL FINGERPRINT IMAGE RECOGNITION
PREPROCESSING ALGORITHM FOR DIGITAL FINGERPRINT IMAGE RECOGNITION
 
50120140501019
5012014050101950120140501019
50120140501019
 
PREPROCESSING ALGORITHM FOR DIGITAL FINGERPRINT IMAGE RECOGNITION
PREPROCESSING ALGORITHM FOR DIGITAL FINGERPRINT IMAGE RECOGNITIONPREPROCESSING ALGORITHM FOR DIGITAL FINGERPRINT IMAGE RECOGNITION
PREPROCESSING ALGORITHM FOR DIGITAL FINGERPRINT IMAGE RECOGNITION
 
An unsupervised method for real time video shot segmentation
An unsupervised method for real time video shot segmentationAn unsupervised method for real time video shot segmentation
An unsupervised method for real time video shot segmentation
 
An unsupervised method for real time video shot segmentation
An unsupervised method for real time video shot segmentationAn unsupervised method for real time video shot segmentation
An unsupervised method for real time video shot segmentation
 
Digital image watermarking using dct with high security of
Digital image watermarking using dct with high security ofDigital image watermarking using dct with high security of
Digital image watermarking using dct with high security of
 
Prediction based lossless medical image compression
Prediction based lossless medical image compressionPrediction based lossless medical image compression
Prediction based lossless medical image compression
 
Analysis of color image noising process
Analysis of color image noising processAnalysis of color image noising process
Analysis of color image noising process
 
Analysis of color image noising process
Analysis of color image noising processAnalysis of color image noising process
Analysis of color image noising process
 
An efficient color image compression technique
An efficient color image compression techniqueAn efficient color image compression technique
An efficient color image compression technique
 
Transmission of image using sms technique
Transmission of image using sms techniqueTransmission of image using sms technique
Transmission of image using sms technique
 

More from iaemedu

Integration of feature sets with machine learning techniques
Integration of feature sets with machine learning techniquesIntegration of feature sets with machine learning techniques
Integration of feature sets with machine learning techniques
iaemedu
 
Effective broadcasting in mobile ad hoc networks using grid
Effective broadcasting in mobile ad hoc networks using gridEffective broadcasting in mobile ad hoc networks using grid
Effective broadcasting in mobile ad hoc networks using grid
iaemedu
 
Effect of scenario environment on the performance of mane ts routing
Effect of scenario environment on the performance of mane ts routingEffect of scenario environment on the performance of mane ts routing
Effect of scenario environment on the performance of mane ts routing
iaemedu
 
Adaptive job scheduling with load balancing for workflow application
Adaptive job scheduling with load balancing for workflow applicationAdaptive job scheduling with load balancing for workflow application
Adaptive job scheduling with load balancing for workflow application
iaemedu
 
Survey on transaction reordering
Survey on transaction reorderingSurvey on transaction reordering
Survey on transaction reordering
iaemedu
 
Semantic web services and its challenges
Semantic web services and its challengesSemantic web services and its challenges
Semantic web services and its challenges
iaemedu
 
Website based patent information searching mechanism
Website based patent information searching mechanismWebsite based patent information searching mechanism
Website based patent information searching mechanism
iaemedu
 
Revisiting the experiment on detecting of replay and message modification
Revisiting the experiment on detecting of replay and message modificationRevisiting the experiment on detecting of replay and message modification
Revisiting the experiment on detecting of replay and message modification
iaemedu
 
Prediction of customer behavior using cma
Prediction of customer behavior using cmaPrediction of customer behavior using cma
Prediction of customer behavior using cma
iaemedu
 
Performance analysis of manet routing protocol in presence
Performance analysis of manet routing protocol in presencePerformance analysis of manet routing protocol in presence
Performance analysis of manet routing protocol in presence
iaemedu
 
Performance measurement of different requirements engineering
Performance measurement of different requirements engineeringPerformance measurement of different requirements engineering
Performance measurement of different requirements engineering
iaemedu
 
Mobile safety systems for automobiles
Mobile safety systems for automobilesMobile safety systems for automobiles
Mobile safety systems for automobiles
iaemedu
 
Efficient text compression using special character replacement
Efficient text compression using special character replacementEfficient text compression using special character replacement
Efficient text compression using special character replacement
iaemedu
 
Agile programming a new approach
Agile programming a new approachAgile programming a new approach
Agile programming a new approach
iaemedu
 
Adaptive load balancing techniques in global scale grid environment
Adaptive load balancing techniques in global scale grid environmentAdaptive load balancing techniques in global scale grid environment
Adaptive load balancing techniques in global scale grid environment
iaemedu
 
A survey on the performance of job scheduling in workflow application
A survey on the performance of job scheduling in workflow applicationA survey on the performance of job scheduling in workflow application
A survey on the performance of job scheduling in workflow application
iaemedu
 
A survey of mitigating routing misbehavior in mobile ad hoc networks
A survey of mitigating routing misbehavior in mobile ad hoc networksA survey of mitigating routing misbehavior in mobile ad hoc networks
A survey of mitigating routing misbehavior in mobile ad hoc networks
iaemedu
 
A novel approach for satellite imagery storage by classify
A novel approach for satellite imagery storage by classifyA novel approach for satellite imagery storage by classify
A novel approach for satellite imagery storage by classify
iaemedu
 
A self recovery approach using halftone images for medical imagery
A self recovery approach using halftone images for medical imageryA self recovery approach using halftone images for medical imagery
A self recovery approach using halftone images for medical imagery
iaemedu
 
A comprehensive study of non blocking joining technique
A comprehensive study of non blocking joining techniqueA comprehensive study of non blocking joining technique
A comprehensive study of non blocking joining technique
iaemedu
 

More from iaemedu (20)

Integration of feature sets with machine learning techniques
Integration of feature sets with machine learning techniquesIntegration of feature sets with machine learning techniques
Integration of feature sets with machine learning techniques
 
Effective broadcasting in mobile ad hoc networks using grid
Effective broadcasting in mobile ad hoc networks using gridEffective broadcasting in mobile ad hoc networks using grid
Effective broadcasting in mobile ad hoc networks using grid
 
Effect of scenario environment on the performance of mane ts routing
Effect of scenario environment on the performance of mane ts routingEffect of scenario environment on the performance of mane ts routing
Effect of scenario environment on the performance of mane ts routing
 
Adaptive job scheduling with load balancing for workflow application
Adaptive job scheduling with load balancing for workflow applicationAdaptive job scheduling with load balancing for workflow application
Adaptive job scheduling with load balancing for workflow application
 
Survey on transaction reordering
Survey on transaction reorderingSurvey on transaction reordering
Survey on transaction reordering
 
Semantic web services and its challenges
Semantic web services and its challengesSemantic web services and its challenges
Semantic web services and its challenges
 
Website based patent information searching mechanism
Website based patent information searching mechanismWebsite based patent information searching mechanism
Website based patent information searching mechanism
 
Revisiting the experiment on detecting of replay and message modification
Revisiting the experiment on detecting of replay and message modificationRevisiting the experiment on detecting of replay and message modification
Revisiting the experiment on detecting of replay and message modification
 
Prediction of customer behavior using cma
Prediction of customer behavior using cmaPrediction of customer behavior using cma
Prediction of customer behavior using cma
 
Performance analysis of manet routing protocol in presence
Performance analysis of manet routing protocol in presencePerformance analysis of manet routing protocol in presence
Performance analysis of manet routing protocol in presence
 
Performance measurement of different requirements engineering
Performance measurement of different requirements engineeringPerformance measurement of different requirements engineering
Performance measurement of different requirements engineering
 
Mobile safety systems for automobiles
Mobile safety systems for automobilesMobile safety systems for automobiles
Mobile safety systems for automobiles
 
Efficient text compression using special character replacement
Efficient text compression using special character replacementEfficient text compression using special character replacement
Efficient text compression using special character replacement
 
Agile programming a new approach
Agile programming a new approachAgile programming a new approach
Agile programming a new approach
 
Adaptive load balancing techniques in global scale grid environment
Adaptive load balancing techniques in global scale grid environmentAdaptive load balancing techniques in global scale grid environment
Adaptive load balancing techniques in global scale grid environment
 
A survey on the performance of job scheduling in workflow application
A survey on the performance of job scheduling in workflow applicationA survey on the performance of job scheduling in workflow application
A survey on the performance of job scheduling in workflow application
 
A survey of mitigating routing misbehavior in mobile ad hoc networks
A survey of mitigating routing misbehavior in mobile ad hoc networksA survey of mitigating routing misbehavior in mobile ad hoc networks
A survey of mitigating routing misbehavior in mobile ad hoc networks
 
A novel approach for satellite imagery storage by classify
A novel approach for satellite imagery storage by classifyA novel approach for satellite imagery storage by classify
A novel approach for satellite imagery storage by classify
 
A self recovery approach using halftone images for medical imagery
A self recovery approach using halftone images for medical imageryA self recovery approach using halftone images for medical imagery
A self recovery approach using halftone images for medical imagery
 
A comprehensive study of non blocking joining technique
A comprehensive study of non blocking joining techniqueA comprehensive study of non blocking joining technique
A comprehensive study of non blocking joining technique
 

Visual cryptography scheme for color images

  • 1. International Journal of Computer and Technology (IJCET), ISSN 0976 – 6367(Print), International Journal of Computer Engineering Engineering ISSN 0976 – 6375(Online) Volume 1, Number 1, May - June (2010), © IAEME and Technology (IJCET), ISSN 0976 – 6367(Print) ISSN 0976 – 6375(Online) Volume 1 IJCET Number 1, May - June (2010), pp. 207-212 ©IAEME © IAEME, http://www.iaeme.com/ijcet.html VISUAL CRYPTOGRAPHY SCHEME FOR COLOR IMAGES B.Saichandana Assistant Professor Department of Computer Science and Engineering GIT, GITAM University, Visakhapatnam Dr.K.srinivas Associate Professor Department of Computer Science and Engineering Pydah College of Engineering Dr. Reddi Kiran Kumar Assistant Professor Department of Computer Science Krishna University, Machilipatnam ABSTRACT: Visual cryptography is a method for protecting image based secrets that has a computation-free decoding process. In this paper, we propose a new visual cryptography scheme for color images based on CMY model, half toning technique and the traditional binary image sharing scheme. The image shares generated by our method are transmitted to the destination through a network and the image is decrypted by stacking any two transparencies. The image can be in any standard format. This scheme provides an efficient way to hide the natural image among different shares. Furthermore, the size of the shares and the implementation complexity do not depend on the number of colors appearing in the secret image. I. INTRODUCTION: Data hiding and visual cryptography are used to introduce confidentiality and security when visual data are transmitted through unsecured channels. Data hiding techniques try to embed data in digital media and transmit it in an imperceptible way. On the other hand, in visual cryptography or visual secret sharing, the original input is shared 207
  • 2. International Journal of Computer Engineering and Technology (IJCET), ISSN 0976 – 6367(Print), ISSN 0976 – 6375(Online) Volume 1, Number 1, May - June (2010), © IAEME between a set of participants by a secret image holder. Based on the sharing policy, only qualifies subsets of participants can recover the original input image. Visual cryptography [1] is a cryptographic technique which allows visual information (pictures, text, etc) to be encrypted in such a way that the decryption can be performed by the human visual system without the aid of computers. The most traditional visual cryptography scheme is used for black and white images. Recently, some visual cryptography schemes for gray or color images have been proposed. In all the proposed schemes [2, 3, 4], if the number of colors in an image is large, the worse the resolution of the decrypted images. Two important factors are used to determine the efficiency of any visual cryptography scheme [5], namely: 1) the quality of the reconstructed image and 2) the pixel expansion factor (m). Any loss of information during the reconstruction phase leads to the reduction in the quality of the recovered image. On the other hand pixel expansion refers to the number of sub-pixels in the generated shares that represents a pixel of the original input image. For bandwidth constrained communication channels it is desirable to keep ‘m’ as small as possible. For color images, reducing pixel expansion is of paramount importance since they occupy more space and more bandwidth compared to grey scale and binary images. The paper is organized as follows: Section II presents the proposed scheme, Section III presents the experimental results and finally section IV makes the conclusions. II PROPOSED SCHEME: The proposed color image sharing scheme is based on the CMY model, half toning technique and the traditional binary image sharing scheme. Firstly, a chromatic image is decomposed into three monochromatic images in tones of cyan, magenta and yellow. The purpose of using a color model is to facilitate the specification of colors in some standard, generally accepted way. In essence, a color model is a specification of a coordinate system and a subspace within that system where each color is represented in a single point. The CMY color model is used in our method. This conversion is performed using the simple operation given in Figure 1. 208
  • 3. International Journal of Computer Engineering and Technology (IJCET), ISSN 0976 – 6367(Print), ISSN 0976 – 6375(Online) Volume 1, Number 1, May - June (2010), © IAEME C 1 R M = 1 - G Y 1 B Figure 1 Conversion from RGB to CMY Secondly, these three monochromatic images (cyan, magenta and yellow) are transformed into binary images by half toning technique. Halftone is a method to display an image in black and white spots. In this paper, we use Floyd-Steinberg algorithm to generate the halftone images. FLOYD AND STEINBERG ALGORITHM: Assume, g is the gray value of the image, which location is p(x,y). e is the difference between the computed value and correct value. b=0. w=255. t=128. ((b+w)/2) if g > t then print white; e=g-w; else print black; e=g-b; (3/8 * e) is added to p(x+1,y); (3/8 * e) is added to p(x,y+1); (1/4 * e) is added to p(x+1, y+1) Endif Thirdly, we consider every monochromatic image as a secret image and use the traditional binary image sharing scheme to divide it into three secret shares with the same color, and then we can choose any three different colors of which to compose them into three colored shares. We have used (2, 3) visual threshold scheme for natural images [6], for the generation of shares with the matrices shown in Figure 2. 011 101 110 M0 = 0 1 1 M1= 1 0 1 M2= 1 1 0 011 101 110 Figure 2 Matrices used in binary image sharing 209
  • 4. International Journal of Computer Engineering and Technology (IJCET), ISSN 0976 – 6367(Print), ISSN 0976 – 6375(Online) Volume 1, Number 1, May - June (2010), © IAEME Finally, these shares are transmitted through a communication channel to the destination. The original secret information will be visible by stacking any 2 or 3 transparencies, but none secret information will be revealed by only one transparency. As stated in section I, the efficiency of any visual cryptography scheme depends on two factors ie; the quality of the reconstructed image and the pixel expansion factor ‘m’. We used the Structural Similarity (SSIM) index [7] for measuring the quality between two images. The SSIM index can be viewed as a quality measure of one of the images being compared provided the other image is regarded as of perfect quality. The quality measures are calculated between the original image, generated shares and the recovered image. In our proposed scheme, a) the size of the shares is equal to the size of the original input image, implies that no extra bandwidth is required for transmitting the shares through a communication channel and b) the generated shares perfectly recover the output image with SSIM index near to 1. These are the key advantages of our visual cryptography scheme. III EXPERIMENTAL RESULTS: This section presents the simulation results illustrating the performance of the proposed Visual cryptographic scheme. The test image employed here is the true color image “flower” with 290×290 pixels. The encryption and decryption algorithm are implemented in Matlab 7.0 in core2duo of 2.66 GHz machine. a) original image b) halftone c) S1 (share 1) d) S2 (share 2) 210
  • 5. International Journal of Computer Engineering and Technology (IJCET), ISSN 0976 – 6367(Print), ISSN 0976 – 6375(Online) Volume 1, Number 1, May - June (2010), © IAEME e) S3 (share 3) f ) S1+S2 f) S2+S3 g) S1+S3 h)S1+S2+S3 Figure 3 Simulation results for (2,3) scheme Figure 3(a) is an original chromatic image. The image is decomposed in to three monochromatic images in tones of cyan, magenta and yellow. These three images are transformed into binary images by half toning technique. If we compose those three monochromatic images, we get figure 3(b). By using the binary image sharing scheme, we divide every monochromatic image into three secret shares with same color, and then, we can choose any three different colors of which to compose them into three colored shares shown in figures 3(c), 3(d) and 3(e). The original information will be visible by stacking any 2 or 3 transparencies as shown in figures 3(e), 3(f), 3(g) and 3(h). Table 1 shows the quality measures that are calculated between the original image, generated shares and the recovered image by using the SSIM index. Image SSIM Index Original image 1 S1( share 1) 0.0041 S2 (share 2) 0.0032 S3 (share 3) 0.0036 S1+S2 0.88 S2+S3 0.89 S1+S3 0.87 S1+S2+S3 0.94 Table 1: SSIM index values for images in Figure 3 211
  • 6. International Journal of Computer Engineering and Technology (IJCET), ISSN 0976 – 6367(Print), ISSN 0976 – 6375(Online) Volume 1, Number 1, May - June (2010), © IAEME CONCLUSION: In this paper, we have presented a new kind of visual cryptography scheme based on CMY model, half toning and binary secret sharing scheme. The advantages of the proposed method are its pixel expansion factor (the size of the share is same as the size of the original image) and its capability of perfect reconstruction of the secret image. This work is an attempt to make a secured transfer of valuable images between two trusted parties. The confidentiality is maintained and the authentication can be checked by digital signatures. It can be shown that the proposed scheme do not depend on the number of colors appearing in the secret image. REFERENCES: [1] M.Naor and A Shamir, “Visual Cryptography”, Proceeding of Eurocrypt 94 Lecture Notes in Computer Science, LNCS963,Berlin: Springer, 1994, pp1-11. [2] E.R.Verheul and H.C.A. Tilberg, “ Constructions and properties of k out of n visual secret sharing schemes”, Designs, Codes and Cryptography 1997, 11(2): pp 179-196 [3] M.Naor and A.shamir, “Visual cryptography II: Improving the contrast via the cover base,” In Proc. of security protocols, international workshop 1996, Lecture notes in Computer Science No. 1189, Springer-Verlag, 1997, pp 69-74 [4] V.Rijmen and B.Preneel, “Efficient color visual encryption for shared colors of Benetton”, Eorucrypt ’96, Rump Session Berlin 1996 [5] Mohsen Heidarinejad, Amirhossein Alamdar Yazdi and Konstantious N.Plataniotis, “Algebraic visual cryptography scheme for color images”, IEEE transactions 2008. [6] H.J.Kim and Y.Choi “A new visual cryptography using Natural images”, IEEE transactions “, Symposium on circuits and systems 2005. [7] Z. Wang, A. C. Bovik, H. R. Sheikh and E. P. Simoncelli, "Image quality assessment: From error visibility to structural similarity," IEEE Transactions on Image Processing, vol. 13, no. 4, pp. 600-612, Apr. 2004. 212