www.ijmer.com

International Journal of Modern Engineering Research (IJMER)
Vol. 3, Issue. 5, Sep - Oct. 2013 pp-3008-3011
ISSN: 2249-6645

3D Median Filter Design for Iris Recognition
K. Ganesh Kumar1, Dr. K. Kiran Kumar2
1

M. Tech (ES), Dept. of ECM, KL University, Guntur Dist., A.P., India.
2
Professor, Dept. of ECM, KL University, Guntur Dist., A.P., India.

ABSTRACT - In many applications user authentication has to be carried out by portable devices. These kinds of devices
must deal with constraints like computational performance, power consumption while also maintaining high performance
rates in the authentication process. This paper provides solutions to designing such personal tokens where biometric
authentication is required. In this paper, a 3D median filter design for iris biometrics has been chosen to be implemented
due to the low error rates.
Keywords – Biometric authentication, 3D median filter.

I.

INTRODUCTION

Biometrics is the science of automated recognition of persons based on one or more physiological or behavioral
characteristics. Possible biometrics methods include face, fingerprint, iris, hand shape, gait, signature, etc. Biometrics is
widely used in many applications, such as access control to secure facilities, verification of financial transactions, welfare
fraud protection, law enforcement, and immigration status checking when entering a country. Biometrics is the only method
capable of recognizing human beings using the real features of the user instead of his or her knowledge (e.g., passwords) or
belongings (e.g., a magnetic stripe card) [1]. Among currently existing biometric modalities, iris recognition is considered to
be one of the most secure and reliable technologies [2], [4], [6], [5]; however, while matching algorithms in iris recognition
are straightforward, the signal processing prior to matching requires a significant amount of processing power.
IRIS ACQUISITION
Iris recognition is an automated method of biometric identification that uses mathematical pattern-recognition
techniques on video images of Irises of an individual's eyes, whose complex random patterns are unique and can be seen
from some distance.

Fig.1. Block diagram of a biometric system
Iris biometrics systems do not use laser-scans to capture the image of the human eye. Instead, an infrared photo or
video camera is used at a set distance to capture a high quality image of the iris. Working in the infrared range provides
many advantages when compared to the visible range: iris ridges, nerves, and crypts are more evident, the border between
the iris and the pupil is more pronounced; and users are not exposed to
annoying flashes.
A 3D median filter takes input as 2D or 3D image this can be done using a Stereo camera.
A stereo camera is that which captures the iris image in 3D.
IRIS SEGMENTATION
The main purpose of this process is to locate the iris on the image and isolate it from the rest of the eye image for
further processing. Some other important tasks that are also performed in this iris segmentation block include image quality
enhancement noise reduction, and emphasis of the ridges of the iris.

(a)
(b)
Fig.2 Input image (a), detected pupil edge
FEATURE EXTRACTION
Feature extraction involves simplifying the amount of resources required to describe a large set of data accurately.
When performing analysis of complex data one of the major problems stems from the number of variables involved.
www.ijmer.com

3008 | Page
International Journal of Modern Engineering Research (IJMER)
www.ijmer.com
Vol. 3, Issue. 5, Sep - Oct. 2013 pp-3008-3011
ISSN: 2249-6645
Analysis with a large number of variables generally requires a large amount of memory and computation power or
a classification algorithm which overfits the training sample and generalizes poorly to new samples. Feature extraction is a
general term for methods of constructing combinations of the variables to get around these problems while still describing
the data with sufficient accuracy.

II.

MEDIAN FILTER

Median filter is windowed filter of nonlinear class that is used for image quality improvement. Median filter[8] is
used “salt and pepper” noise reduction and in some cases to suppress speckle noise. The median filter is a nonlinear digital
filtering technique, often used to remove noise. Such noise reduction is a typical pre-processing step to improve the results of
later processing (for example, edge on an image).
Median filtering is very widely used in digital image processing because, under certain conditions, it preserves
edges while removing noise like salt and pepper noise
WORKING:
Like the mean filter, the median filter considers each pixel in the image in turn and looks at its nearby neighbors to
decide whether or not it is representative of its surroundings. Instead of simply replacing the pixel value with the mean of
neighboring pixel values, it replaces it with the median of those values. The median is calculated by first sorting all the pixel
values from the surrounding neighborhood into numerical order and then replacing the pixel being considered with the
middle pixel value. (If the neighborhood under consideration contains an even number of pixels, the average of the two
middle pixel values is used.)

Fig.4 calculating the median value of a pixel neighborhood.
As can be seen, the central pixel value of 150 is rather unrepresentative of the surrounding pixels and is replaced with the
median value: 124. A 3×3 square neighborhood is used here; larger neighborhoods will produce more severe smoothing.
By calculating the median value of a neighborhood rather than the mean filter, the median filter has two main advantages
over the mean filter:
1) The median is a more robust average than the mean and so a single very un-representative pixel in a neighborhood will
not affect the median value significantly.
2) Since the median value must actually be the value of one of the pixels in the neighborhood, the median filter does not
create new unrealistic pixel values when the filter straddles an edge. For this reason the median filter is much better at
preserving sharp edges than the mean filter.
SALT AND PEPPER NOISE
Salt and pepper noise[3] is a form of noise typically seen on images. It represents itself as randomly occurring
white and black pixels. An effective noise reduction method for this type of noise involves the usage of a median
filter, morphological filter or a contra harmonic mean filter. Salt and pepper noise creeps into images in situations where
quick transients, such as faulty switching, take place.
As a stereo camera is used in getting iris image it gives a 3D image of iris which contains salt and pepper noise

Fig.3 Iris image with salt and pepper noise
www.ijmer.com

3009 | Page
International Journal of Modern Engineering Research (IJMER)
www.ijmer.com
Vol. 3, Issue. 5, Sep - Oct. 2013 pp-3008-3011
ISSN: 2249-6645
3D MEDIAN FILTER
3D median filter[9] uses 3D parallelepiped window to process volume image elements.

`
Fig. 4 Window or mask of size 3×3×3 in 3D
In special cases we can analyze and process sequences of image frames corrupted with different levels of noise.
These frames of images can be stored in the selected three-dimensional matrix X3(1: M; 1: N; 1: K). The operation of a
moving three-dimensional array mask is illustrated
in algorithm presented.
for i=1:M-2
for j=1:N-2
for k=1:K-2
B (1:3, 1:3, 1:3) =...
X3(i-1:i+1,j-1:j+1,k-1:k+1);
Y ( i, j, k)= med(B(:));
end
end
end

Fig.5 The three-dimensional median filter masken
Estimation of Statistical Parameters
The parameters which are used in estimation of performance are Signal to Noise Ratio (SNR), Root Mean Square Error
(RMSE), and Peak Signal to Noise Ratio (PSNR) [7].
A. Estimation of SNR
SNR compares the level of desired signal to the level of background noise. The higher the SNR, the lesser the noise in the
image and vice versa [7].

2

Where, σ is the variance of the original image and
2

g

σ is the variance of error between the original and image denoised with some filter.
e

B. Estimation of RMSE
Mean square error (MSE) is given by

Where, f is the original image F is the image denoised with some filter and N is the size of image [7].
RMSE = √MSE
www.ijmer.com

3010 | Page
International Journal of Modern Engineering Research (IJMER)
www.ijmer.com
Vol. 3, Issue. 5, Sep - Oct. 2013 pp-3008-3011
ISSN: 2249-6645
C. Estimation of PSNR
PSNR gives the ratio between possible power of a signal and the power of corrupting noise present in the image [7].
Higher the PSNR gives lower the noise in the image i.e. higher image quality.
PSNR = 20 log10 (255/RMSE)
APPLICATIONS:
Median filter is having following applications in image processing applications.
1. Median filtering extensively used for Salt & Pepper noise filtering purpose.
2. Its edge preserving quality makes it to useful in cases where edge blurring is unacceptable.
3. This filter also used to remove speckle noise from images
ADVANTAGES
1. Simple to understand.
2. Preserves brightness difference resulting in minimal blurring of regional boundaries.
3. Median computer algorithm can be customized.
DISADVANTAGES
1. Less effective in removing Gaussian or random intensity noise.
2. High computational cost.
3. Removes noise only if the noisy pixel occupies less than one half of neighbor- hood area.

III.

CONCLUSION

As previously used 2D median filter doesn’t gives a much efficient filtering of noise in images it can be replaced by
an 3D median filter for better noise removal.
As the theoretical studies give that a 3D median filter is most efficient in removing salt and pepper noise in 3D
ultrasound images. It can be applied to an iris biometric system for more efficient de-noising if images.

REFERENCES
[1]
[2]
[3]

[4]
[5]
[6]
[7]
[8]
[9]
[10]

[11]
[12]
[13]
[14]
[15]

A. Jain, R. Bolle, and S. Pankanti, , S. P. A. Jain and R. Bolle, Eds., Biometrics: Personal Identification in a Networked Society.
Norwell, MA: Kluwer, 1999.
M. Faundez-Zanuy, “Biometric security technology,” IEEE A&E Syst. Mag., vol. 21, no. 6, pp. 15–26, Jun. 2006.
Salt-and-Pepper Noise Removal by Median-Type Noise Detectors and Detail-Preserving Regularization Raymond H. Chan,
Chung-Wa Ho, and Mila Nikolova; IEEE TRANSACTIONS ON IMAGE PROCESSING, VOL. 14, NO. 10, OCTOBER 2005
1479.
P. Phillips, W. T. Scruggs, A. J. O’Toole, P. J. Flynn, K. W. Bowyer, C. L. Schott, and M. Sharpe, “FRVT 2006 and ICE 2006
large-scale results,” Nat. Inst. Standards Technol.,2007. [Online].
Independent Biometric Group, “Comparative biometric testing round 6 public report,” 2006 [Online]. Available:
http://www.biometricgroup.com/reports/public/comparative_biometric_testing.html..
K. Bowyer, K. Hollingsworth, and P. Flynn, “Image understanding for iris biometrics: A survey,” Comput. Vision Image
Understand., vol.110, no. 2, pp. 281–307, 2008.
Z. Wang, A. Bovik, H. Sheikh, and E. Simoncelli, “Image quality assessment: From error measurement to structural similarity,”
IEEE Trans. Image Process., vol. 13, no. 4, pp. 600–612, Apr. 2004.
NON-LINEAR MEDIAN FILTERING OF BIOMEDICAL IMAGES V. Musoko and A. Prochiazka; IJCSI International Journal
of Computer Science Issues, Vol. 8, Issue 5, No 3, September 2011.
High-performance 3D median filter architecture for medical image despeckling November 23 2006 Jiang, M. Sch. of Electron.,
Queen''s Univ. Belfast Crookes, D. Volume: 42 .
Iris Biometrics for Embedded Systems Judith Liu-Jimenez, Student Member, IEEE, Raul Sanchez-Reillo, Member, IEEE, and
Belen Fernandez-Saavedra, Student Member, IEEE TRANSACTIONS ON VERY LARGE SCALE INTEGRATION (VLSI)
SYSTEMS, VOL. 19, NO. 2, FEBRUARY 2011.
Karakas DG, Trahnias, Trahanis PE, “Generalized Multichannel Image-Filtering Structures,” IEEE Trans. On Image Process., vol
6, no. 7, pp1038-45,1997.
V.Ponomaryyov, A.Rosales-Silva and V. Golikov, “Adaptive and Vector Directional Processing Applied to Video Colour Images,”
Electronic Letters,vol. 42, no. 11 pp 131-32,May 2006.
Dang D. and Luo W., “Color Image Noise Removal Algorithm Utilizing Hybrid Vector Filtering,” Int. Journal of Electronics and
Comm., vol. 62, no. 1, pp 63-71.
Jin L. and Li D., “A Switching Vector Median Filter Based on CIELAB color Space for Color Image Restoration,” Signal Process.
Letters, vol. 87, no. 6, pp 1345-54.
Rajoo Pandey, Awdesh Kumar Singh and Umesh Ghanekar, “Local Pixel Statistics Based Impulse Detection and Hybrid Color
Filtering for Restoration of Digital Color Images,” Intl. Journal of Electronics and Comm., in Press Corrected Proof, Available
online on 29 April 2011.

www.ijmer.com

3011 | Page

More Related Content

PDF
Paper id 21201419
PDF
Fpga implementation of image segmentation by using edge detection based on so...
PDF
Fpga implementation of image segmentation by using edge detection based on so...
PDF
13 pradeep kumar_137-149
PDF
Automatic Detection of Radius of Bone Fracture
PDF
Paper id 26201476
PDF
F045033337
PDF
Image Denoising of various images Using Wavelet Transform and Thresholding Te...
Paper id 21201419
Fpga implementation of image segmentation by using edge detection based on so...
Fpga implementation of image segmentation by using edge detection based on so...
13 pradeep kumar_137-149
Automatic Detection of Radius of Bone Fracture
Paper id 26201476
F045033337
Image Denoising of various images Using Wavelet Transform and Thresholding Te...

What's hot (18)

PDF
De-Noisy Image of Activity Tracking System in Digital Image Processing
PDF
PDF
IRJET - Contrast and Color Improvement based Haze Removal of Underwater Image...
PDF
HYBRID APPROACH FOR NOISE REMOVAL AND IMAGE ENHANCEMENT OF BRAIN TUMORS IN MA...
PDF
Removing fence and recovering image details various techniques with performan...
PDF
50120130406013
PDF
Co33548550
PDF
Stereo Vision Human Motion Detection and Tracking in Uncontrolled Environment
PDF
Numerical simulation of flow modeling in ducted axial fan using simpson’s 13r...
PDF
A new tristate switching median filtering technique for image enhancement
PDF
EDGE DETECTION OF MICROSCOPIC IMAGE
PDF
Cz4301586590
PDF
International Journal of Engineering Research and Development (IJERD)
PDF
Sub ecs 702_30sep14
PDF
Instant fracture detection using ir-rays
PDF
Performance comparison of noise reduction in mammogram images
PDF
A Novel Approach for Edge Detection using Modified ACIES Filtering
PDF
Design and development of sapling monitoring system
De-Noisy Image of Activity Tracking System in Digital Image Processing
IRJET - Contrast and Color Improvement based Haze Removal of Underwater Image...
HYBRID APPROACH FOR NOISE REMOVAL AND IMAGE ENHANCEMENT OF BRAIN TUMORS IN MA...
Removing fence and recovering image details various techniques with performan...
50120130406013
Co33548550
Stereo Vision Human Motion Detection and Tracking in Uncontrolled Environment
Numerical simulation of flow modeling in ducted axial fan using simpson’s 13r...
A new tristate switching median filtering technique for image enhancement
EDGE DETECTION OF MICROSCOPIC IMAGE
Cz4301586590
International Journal of Engineering Research and Development (IJERD)
Sub ecs 702_30sep14
Instant fracture detection using ir-rays
Performance comparison of noise reduction in mammogram images
A Novel Approach for Edge Detection using Modified ACIES Filtering
Design and development of sapling monitoring system
Ad

Viewers also liked (20)

PDF
Voltage Stability Improvement by Reactive Power Rescheduling Incorporating P...
PDF
CNC PART PROGRAMMING AND COST ANALYSIS ON VERTICAL MACHINING CENTRE (VTC)
PDF
Energy Based Analysis of a Thermal Power Station for Energy Efficiency Improv...
PDF
Implementation of Cryptography Architecture with High Secure Core
PDF
Di2644594461
PDF
Optimizing Bunsen burner Performance Using CFD Analysis
PDF
Effect of Radiation on Mixed Convection Flow of a Non-Newtonian Nan fluid ove...
PDF
About the 2-Banach Spaces
PDF
Bf2420172020
PDF
Microstructure Degradation after Prolonged Exploitation of Heatresistant Ste...
PDF
Road User Attitudes towards Safety Initiatives in Kuwait
PDF
Tannin gel derived from Leaves of Ricinus Communis as an adsorbent for the Re...
PDF
Analysis of Non Conventional Cross Section of Pipe Made Of Composite Material
PDF
Micro-Electromechanical Systems (Mems)
PDF
Efficient Energy Management System with Solar Energy
PDF
http://www.ijmer.com/papers/Vol4_Issue1/AW41187193.pdf
PDF
Fatigue Analysis of Acetylene converter reactor
PDF
Assessing Water Demand And Supply For Srinagar City (J&K) India, Under Chang...
PDF
Probabilistic Modeling and Performance Analysis of A 2(K)-Out-Of-3(N) System ...
PDF
Safety Margin of Slope Stability Using Common Deterministic Methods
Voltage Stability Improvement by Reactive Power Rescheduling Incorporating P...
CNC PART PROGRAMMING AND COST ANALYSIS ON VERTICAL MACHINING CENTRE (VTC)
Energy Based Analysis of a Thermal Power Station for Energy Efficiency Improv...
Implementation of Cryptography Architecture with High Secure Core
Di2644594461
Optimizing Bunsen burner Performance Using CFD Analysis
Effect of Radiation on Mixed Convection Flow of a Non-Newtonian Nan fluid ove...
About the 2-Banach Spaces
Bf2420172020
Microstructure Degradation after Prolonged Exploitation of Heatresistant Ste...
Road User Attitudes towards Safety Initiatives in Kuwait
Tannin gel derived from Leaves of Ricinus Communis as an adsorbent for the Re...
Analysis of Non Conventional Cross Section of Pipe Made Of Composite Material
Micro-Electromechanical Systems (Mems)
Efficient Energy Management System with Solar Energy
http://www.ijmer.com/papers/Vol4_Issue1/AW41187193.pdf
Fatigue Analysis of Acetylene converter reactor
Assessing Water Demand And Supply For Srinagar City (J&K) India, Under Chang...
Probabilistic Modeling and Performance Analysis of A 2(K)-Out-Of-3(N) System ...
Safety Margin of Slope Stability Using Common Deterministic Methods
Ad

Similar to 3D Median Filter Design for Iris Recognition (20)

PDF
De-Noisy Image of Activity Tracking System in Digital Image Processing
PDF
Performance analysis of image filtering algorithms for mri images
PDF
Performance analysis of image filtering algorithms for mri images
DOCX
Efficient analysis mri us 1
PPTX
NOISE FILTERS IN IMAGE PROCESSING
PDF
Iaetsd literature review on efficient detection and filtering of high
PDF
IRJET- Analysis of Various Noise Filtering Techniques for Medical Images
PDF
The International Journal of Engineering and Science (The IJES)
PDF
Removal of Gaussian noise on the image edges using the Prewitt operator and t...
PPTX
Image Filtering
PDF
Performance Assessment of Several Filters for Removing Salt and Pepper Noise,...
PPTX
literature.pptx
PDF
A literature review of various techniques available on Image Denoising
DOCX
Documentation
PDF
A Novel Framework For Preprocessing Of Breast Ultra Sound Images By Combining...
PDF
Gg2411291135
PDF
elsevier_publication_2013
PDF
IRJET- Image Restoration using Adaptive Median Filtering
PDF
Pxc3871846
PDF
Hk3513021306
De-Noisy Image of Activity Tracking System in Digital Image Processing
Performance analysis of image filtering algorithms for mri images
Performance analysis of image filtering algorithms for mri images
Efficient analysis mri us 1
NOISE FILTERS IN IMAGE PROCESSING
Iaetsd literature review on efficient detection and filtering of high
IRJET- Analysis of Various Noise Filtering Techniques for Medical Images
The International Journal of Engineering and Science (The IJES)
Removal of Gaussian noise on the image edges using the Prewitt operator and t...
Image Filtering
Performance Assessment of Several Filters for Removing Salt and Pepper Noise,...
literature.pptx
A literature review of various techniques available on Image Denoising
Documentation
A Novel Framework For Preprocessing Of Breast Ultra Sound Images By Combining...
Gg2411291135
elsevier_publication_2013
IRJET- Image Restoration using Adaptive Median Filtering
Pxc3871846
Hk3513021306

More from IJMER (20)

PDF
A Study on Translucent Concrete Product and Its Properties by Using Optical F...
PDF
Developing Cost Effective Automation for Cotton Seed Delinting
PDF
Study & Testing Of Bio-Composite Material Based On Munja Fibre
PDF
Hybrid Engine (Stirling Engine + IC Engine + Electric Motor)
PDF
Fabrication & Characterization of Bio Composite Materials Based On Sunnhemp F...
PDF
Geochemistry and Genesis of Kammatturu Iron Ores of Devagiri Formation, Sandu...
PDF
Experimental Investigation on Characteristic Study of the Carbon Steel C45 in...
PDF
Non linear analysis of Robot Gun Support Structure using Equivalent Dynamic A...
PDF
Static Analysis of Go-Kart Chassis by Analytical and Solid Works Simulation
PDF
High Speed Effortless Bicycle
PDF
Integration of Struts & Spring & Hibernate for Enterprise Applications
PDF
Microcontroller Based Automatic Sprinkler Irrigation System
PDF
On some locally closed sets and spaces in Ideal Topological Spaces
PDF
Intrusion Detection and Forensics based on decision tree and Association rule...
PDF
Natural Language Ambiguity and its Effect on Machine Learning
PDF
Evolvea Frameworkfor SelectingPrime Software DevelopmentProcess
PDF
Material Parameter and Effect of Thermal Load on Functionally Graded Cylinders
PDF
Studies On Energy Conservation And Audit
PDF
An Implementation of I2C Slave Interface using Verilog HDL
PDF
Discrete Model of Two Predators competing for One Prey
A Study on Translucent Concrete Product and Its Properties by Using Optical F...
Developing Cost Effective Automation for Cotton Seed Delinting
Study & Testing Of Bio-Composite Material Based On Munja Fibre
Hybrid Engine (Stirling Engine + IC Engine + Electric Motor)
Fabrication & Characterization of Bio Composite Materials Based On Sunnhemp F...
Geochemistry and Genesis of Kammatturu Iron Ores of Devagiri Formation, Sandu...
Experimental Investigation on Characteristic Study of the Carbon Steel C45 in...
Non linear analysis of Robot Gun Support Structure using Equivalent Dynamic A...
Static Analysis of Go-Kart Chassis by Analytical and Solid Works Simulation
High Speed Effortless Bicycle
Integration of Struts & Spring & Hibernate for Enterprise Applications
Microcontroller Based Automatic Sprinkler Irrigation System
On some locally closed sets and spaces in Ideal Topological Spaces
Intrusion Detection and Forensics based on decision tree and Association rule...
Natural Language Ambiguity and its Effect on Machine Learning
Evolvea Frameworkfor SelectingPrime Software DevelopmentProcess
Material Parameter and Effect of Thermal Load on Functionally Graded Cylinders
Studies On Energy Conservation And Audit
An Implementation of I2C Slave Interface using Verilog HDL
Discrete Model of Two Predators competing for One Prey

Recently uploaded (20)

PDF
Connector Corner: Transform Unstructured Documents with Agentic Automation
PPTX
agenticai-neweraofintelligence-250529192801-1b5e6870.pptx
PPTX
Microsoft User Copilot Training Slide Deck
PPTX
SGT Report The Beast Plan and Cyberphysical Systems of Control
PDF
Lung cancer patients survival prediction using outlier detection and optimize...
PDF
Convolutional neural network based encoder-decoder for efficient real-time ob...
PPTX
AI-driven Assurance Across Your End-to-end Network With ThousandEyes
PDF
5-Ways-AI-is-Revolutionizing-Telecom-Quality-Engineering.pdf
PDF
Planning-an-Audit-A-How-To-Guide-Checklist-WP.pdf
PDF
Improvisation in detection of pomegranate leaf disease using transfer learni...
PDF
Advancing precision in air quality forecasting through machine learning integ...
PDF
MENA-ECEONOMIC-CONTEXT-VC MENA-ECEONOMIC
DOCX
Basics of Cloud Computing - Cloud Ecosystem
PDF
Electrocardiogram sequences data analytics and classification using unsupervi...
PDF
The-Future-of-Automotive-Quality-is-Here-AI-Driven-Engineering.pdf
PPTX
Training Program for knowledge in solar cell and solar industry
PDF
Rapid Prototyping: A lecture on prototyping techniques for interface design
PPTX
Module 1 Introduction to Web Programming .pptx
PDF
giants, standing on the shoulders of - by Daniel Stenberg
PPTX
GROUP4NURSINGINFORMATICSREPORT-2 PRESENTATION
Connector Corner: Transform Unstructured Documents with Agentic Automation
agenticai-neweraofintelligence-250529192801-1b5e6870.pptx
Microsoft User Copilot Training Slide Deck
SGT Report The Beast Plan and Cyberphysical Systems of Control
Lung cancer patients survival prediction using outlier detection and optimize...
Convolutional neural network based encoder-decoder for efficient real-time ob...
AI-driven Assurance Across Your End-to-end Network With ThousandEyes
5-Ways-AI-is-Revolutionizing-Telecom-Quality-Engineering.pdf
Planning-an-Audit-A-How-To-Guide-Checklist-WP.pdf
Improvisation in detection of pomegranate leaf disease using transfer learni...
Advancing precision in air quality forecasting through machine learning integ...
MENA-ECEONOMIC-CONTEXT-VC MENA-ECEONOMIC
Basics of Cloud Computing - Cloud Ecosystem
Electrocardiogram sequences data analytics and classification using unsupervi...
The-Future-of-Automotive-Quality-is-Here-AI-Driven-Engineering.pdf
Training Program for knowledge in solar cell and solar industry
Rapid Prototyping: A lecture on prototyping techniques for interface design
Module 1 Introduction to Web Programming .pptx
giants, standing on the shoulders of - by Daniel Stenberg
GROUP4NURSINGINFORMATICSREPORT-2 PRESENTATION

3D Median Filter Design for Iris Recognition

  • 1. www.ijmer.com International Journal of Modern Engineering Research (IJMER) Vol. 3, Issue. 5, Sep - Oct. 2013 pp-3008-3011 ISSN: 2249-6645 3D Median Filter Design for Iris Recognition K. Ganesh Kumar1, Dr. K. Kiran Kumar2 1 M. Tech (ES), Dept. of ECM, KL University, Guntur Dist., A.P., India. 2 Professor, Dept. of ECM, KL University, Guntur Dist., A.P., India. ABSTRACT - In many applications user authentication has to be carried out by portable devices. These kinds of devices must deal with constraints like computational performance, power consumption while also maintaining high performance rates in the authentication process. This paper provides solutions to designing such personal tokens where biometric authentication is required. In this paper, a 3D median filter design for iris biometrics has been chosen to be implemented due to the low error rates. Keywords – Biometric authentication, 3D median filter. I. INTRODUCTION Biometrics is the science of automated recognition of persons based on one or more physiological or behavioral characteristics. Possible biometrics methods include face, fingerprint, iris, hand shape, gait, signature, etc. Biometrics is widely used in many applications, such as access control to secure facilities, verification of financial transactions, welfare fraud protection, law enforcement, and immigration status checking when entering a country. Biometrics is the only method capable of recognizing human beings using the real features of the user instead of his or her knowledge (e.g., passwords) or belongings (e.g., a magnetic stripe card) [1]. Among currently existing biometric modalities, iris recognition is considered to be one of the most secure and reliable technologies [2], [4], [6], [5]; however, while matching algorithms in iris recognition are straightforward, the signal processing prior to matching requires a significant amount of processing power. IRIS ACQUISITION Iris recognition is an automated method of biometric identification that uses mathematical pattern-recognition techniques on video images of Irises of an individual's eyes, whose complex random patterns are unique and can be seen from some distance. Fig.1. Block diagram of a biometric system Iris biometrics systems do not use laser-scans to capture the image of the human eye. Instead, an infrared photo or video camera is used at a set distance to capture a high quality image of the iris. Working in the infrared range provides many advantages when compared to the visible range: iris ridges, nerves, and crypts are more evident, the border between the iris and the pupil is more pronounced; and users are not exposed to annoying flashes. A 3D median filter takes input as 2D or 3D image this can be done using a Stereo camera. A stereo camera is that which captures the iris image in 3D. IRIS SEGMENTATION The main purpose of this process is to locate the iris on the image and isolate it from the rest of the eye image for further processing. Some other important tasks that are also performed in this iris segmentation block include image quality enhancement noise reduction, and emphasis of the ridges of the iris. (a) (b) Fig.2 Input image (a), detected pupil edge FEATURE EXTRACTION Feature extraction involves simplifying the amount of resources required to describe a large set of data accurately. When performing analysis of complex data one of the major problems stems from the number of variables involved. www.ijmer.com 3008 | Page
  • 2. International Journal of Modern Engineering Research (IJMER) www.ijmer.com Vol. 3, Issue. 5, Sep - Oct. 2013 pp-3008-3011 ISSN: 2249-6645 Analysis with a large number of variables generally requires a large amount of memory and computation power or a classification algorithm which overfits the training sample and generalizes poorly to new samples. Feature extraction is a general term for methods of constructing combinations of the variables to get around these problems while still describing the data with sufficient accuracy. II. MEDIAN FILTER Median filter is windowed filter of nonlinear class that is used for image quality improvement. Median filter[8] is used “salt and pepper” noise reduction and in some cases to suppress speckle noise. The median filter is a nonlinear digital filtering technique, often used to remove noise. Such noise reduction is a typical pre-processing step to improve the results of later processing (for example, edge on an image). Median filtering is very widely used in digital image processing because, under certain conditions, it preserves edges while removing noise like salt and pepper noise WORKING: Like the mean filter, the median filter considers each pixel in the image in turn and looks at its nearby neighbors to decide whether or not it is representative of its surroundings. Instead of simply replacing the pixel value with the mean of neighboring pixel values, it replaces it with the median of those values. The median is calculated by first sorting all the pixel values from the surrounding neighborhood into numerical order and then replacing the pixel being considered with the middle pixel value. (If the neighborhood under consideration contains an even number of pixels, the average of the two middle pixel values is used.) Fig.4 calculating the median value of a pixel neighborhood. As can be seen, the central pixel value of 150 is rather unrepresentative of the surrounding pixels and is replaced with the median value: 124. A 3×3 square neighborhood is used here; larger neighborhoods will produce more severe smoothing. By calculating the median value of a neighborhood rather than the mean filter, the median filter has two main advantages over the mean filter: 1) The median is a more robust average than the mean and so a single very un-representative pixel in a neighborhood will not affect the median value significantly. 2) Since the median value must actually be the value of one of the pixels in the neighborhood, the median filter does not create new unrealistic pixel values when the filter straddles an edge. For this reason the median filter is much better at preserving sharp edges than the mean filter. SALT AND PEPPER NOISE Salt and pepper noise[3] is a form of noise typically seen on images. It represents itself as randomly occurring white and black pixels. An effective noise reduction method for this type of noise involves the usage of a median filter, morphological filter or a contra harmonic mean filter. Salt and pepper noise creeps into images in situations where quick transients, such as faulty switching, take place. As a stereo camera is used in getting iris image it gives a 3D image of iris which contains salt and pepper noise Fig.3 Iris image with salt and pepper noise www.ijmer.com 3009 | Page
  • 3. International Journal of Modern Engineering Research (IJMER) www.ijmer.com Vol. 3, Issue. 5, Sep - Oct. 2013 pp-3008-3011 ISSN: 2249-6645 3D MEDIAN FILTER 3D median filter[9] uses 3D parallelepiped window to process volume image elements. ` Fig. 4 Window or mask of size 3×3×3 in 3D In special cases we can analyze and process sequences of image frames corrupted with different levels of noise. These frames of images can be stored in the selected three-dimensional matrix X3(1: M; 1: N; 1: K). The operation of a moving three-dimensional array mask is illustrated in algorithm presented. for i=1:M-2 for j=1:N-2 for k=1:K-2 B (1:3, 1:3, 1:3) =... X3(i-1:i+1,j-1:j+1,k-1:k+1); Y ( i, j, k)= med(B(:)); end end end Fig.5 The three-dimensional median filter masken Estimation of Statistical Parameters The parameters which are used in estimation of performance are Signal to Noise Ratio (SNR), Root Mean Square Error (RMSE), and Peak Signal to Noise Ratio (PSNR) [7]. A. Estimation of SNR SNR compares the level of desired signal to the level of background noise. The higher the SNR, the lesser the noise in the image and vice versa [7]. 2 Where, σ is the variance of the original image and 2 g σ is the variance of error between the original and image denoised with some filter. e B. Estimation of RMSE Mean square error (MSE) is given by Where, f is the original image F is the image denoised with some filter and N is the size of image [7]. RMSE = √MSE www.ijmer.com 3010 | Page
  • 4. International Journal of Modern Engineering Research (IJMER) www.ijmer.com Vol. 3, Issue. 5, Sep - Oct. 2013 pp-3008-3011 ISSN: 2249-6645 C. Estimation of PSNR PSNR gives the ratio between possible power of a signal and the power of corrupting noise present in the image [7]. Higher the PSNR gives lower the noise in the image i.e. higher image quality. PSNR = 20 log10 (255/RMSE) APPLICATIONS: Median filter is having following applications in image processing applications. 1. Median filtering extensively used for Salt & Pepper noise filtering purpose. 2. Its edge preserving quality makes it to useful in cases where edge blurring is unacceptable. 3. This filter also used to remove speckle noise from images ADVANTAGES 1. Simple to understand. 2. Preserves brightness difference resulting in minimal blurring of regional boundaries. 3. Median computer algorithm can be customized. DISADVANTAGES 1. Less effective in removing Gaussian or random intensity noise. 2. High computational cost. 3. Removes noise only if the noisy pixel occupies less than one half of neighbor- hood area. III. CONCLUSION As previously used 2D median filter doesn’t gives a much efficient filtering of noise in images it can be replaced by an 3D median filter for better noise removal. As the theoretical studies give that a 3D median filter is most efficient in removing salt and pepper noise in 3D ultrasound images. It can be applied to an iris biometric system for more efficient de-noising if images. REFERENCES [1] [2] [3] [4] [5] [6] [7] [8] [9] [10] [11] [12] [13] [14] [15] A. Jain, R. Bolle, and S. Pankanti, , S. P. A. Jain and R. Bolle, Eds., Biometrics: Personal Identification in a Networked Society. Norwell, MA: Kluwer, 1999. M. Faundez-Zanuy, “Biometric security technology,” IEEE A&E Syst. Mag., vol. 21, no. 6, pp. 15–26, Jun. 2006. Salt-and-Pepper Noise Removal by Median-Type Noise Detectors and Detail-Preserving Regularization Raymond H. Chan, Chung-Wa Ho, and Mila Nikolova; IEEE TRANSACTIONS ON IMAGE PROCESSING, VOL. 14, NO. 10, OCTOBER 2005 1479. P. Phillips, W. T. Scruggs, A. J. O’Toole, P. J. Flynn, K. W. Bowyer, C. L. Schott, and M. Sharpe, “FRVT 2006 and ICE 2006 large-scale results,” Nat. Inst. Standards Technol.,2007. [Online]. Independent Biometric Group, “Comparative biometric testing round 6 public report,” 2006 [Online]. Available: http://www.biometricgroup.com/reports/public/comparative_biometric_testing.html.. K. Bowyer, K. Hollingsworth, and P. Flynn, “Image understanding for iris biometrics: A survey,” Comput. Vision Image Understand., vol.110, no. 2, pp. 281–307, 2008. Z. Wang, A. Bovik, H. Sheikh, and E. Simoncelli, “Image quality assessment: From error measurement to structural similarity,” IEEE Trans. Image Process., vol. 13, no. 4, pp. 600–612, Apr. 2004. NON-LINEAR MEDIAN FILTERING OF BIOMEDICAL IMAGES V. Musoko and A. Prochiazka; IJCSI International Journal of Computer Science Issues, Vol. 8, Issue 5, No 3, September 2011. High-performance 3D median filter architecture for medical image despeckling November 23 2006 Jiang, M. Sch. of Electron., Queen''s Univ. Belfast Crookes, D. Volume: 42 . Iris Biometrics for Embedded Systems Judith Liu-Jimenez, Student Member, IEEE, Raul Sanchez-Reillo, Member, IEEE, and Belen Fernandez-Saavedra, Student Member, IEEE TRANSACTIONS ON VERY LARGE SCALE INTEGRATION (VLSI) SYSTEMS, VOL. 19, NO. 2, FEBRUARY 2011. Karakas DG, Trahnias, Trahanis PE, “Generalized Multichannel Image-Filtering Structures,” IEEE Trans. On Image Process., vol 6, no. 7, pp1038-45,1997. V.Ponomaryyov, A.Rosales-Silva and V. Golikov, “Adaptive and Vector Directional Processing Applied to Video Colour Images,” Electronic Letters,vol. 42, no. 11 pp 131-32,May 2006. Dang D. and Luo W., “Color Image Noise Removal Algorithm Utilizing Hybrid Vector Filtering,” Int. Journal of Electronics and Comm., vol. 62, no. 1, pp 63-71. Jin L. and Li D., “A Switching Vector Median Filter Based on CIELAB color Space for Color Image Restoration,” Signal Process. Letters, vol. 87, no. 6, pp 1345-54. Rajoo Pandey, Awdesh Kumar Singh and Umesh Ghanekar, “Local Pixel Statistics Based Impulse Detection and Hybrid Color Filtering for Restoration of Digital Color Images,” Intl. Journal of Electronics and Comm., in Press Corrected Proof, Available online on 29 April 2011. www.ijmer.com 3011 | Page