SlideShare a Scribd company logo
Advanced 2D Otsu Method
Xin Li(xl553)*, Jingyao Ren(jr986)**
* Department of Biomedical Engineering, Cornell University
** Department of Electrical and Computer Engineering, Cornell University
Introduction
References
Description of 2D Otsu Method
Experiment Results of Shadow Image
Experiment Results of Noise Image
Final Project
Group 13
ECE 5470
Fall 2015
In this project, we implemented the traditional Otsu method[1] for
image thresholding. Next, based on the weaknesses of the
traditional Otsu method such as sensitive to noise and shadow, we
implemented an Advanced 2D Otsu method[2,3]. Different tests
were conducted to evaluate the performance of the Advanced 2D
Otsu method. Comparing to traditional Otsu, the 2D Otsu method is
a better automatic thresholding method for noise and shadow
images, and it could get more accurate thresholding than the
traditional Otsu method.
The keypoint of the 2D Otsu method is to use both the distribution
of the pixel grayscales and the spatial information to decide the
threshold together[2,3]. The 1D Otsu method only consider the
gray level of the image and ignored the spatial information. To
overcome this problem, we could use 2D variance-based
techniques using local neighborhood as well as pixel information
by maximizing the between-class variance defined on the 2D
histogram. This will improve the noise robustness of 1D Otsu.
Compared to traditional Otsu method, 2D Otsu shows better
performance at eliminating shadows and background noise.
However, compared to traditional Otsu with Mean Filter, 2D Otsu
method shows a similiar performance and limited improvements
on denoising. In conlcusion, 2D Otsu is a good choice for
removing shadows but not a perfect choice for denoising. Future
work are needed to improve its denoising ability of 2D Otsu
method.
[1]. Nobuyuki Otsu (1979). "A threshold selection method from gray-level histograms". IEEE Trans. Sys., Man., Cyber. 9 (1): 62–66
[2]. Jianzhuang, Liu, Li Wenqing, and Tian Yupeng. "Automatic thresholding of gray-level pictures using two-dimension Otsu method."
Circuits and Systems, 1991. Conference Proceedings, China., 1991 International Conference on. IEEE, 1991.
[3]. Nie, F., Wang, Y., Pan, M., Peng, G., & Zhang, P. (2013). Two-dimensional extension of variance-based thresholding for image
segmentation. Multidimensional systems and signal processing, 24(3), 485-501.
[4]. Berkeley Segmentation Dataset and Benchmarks 500 (BSDS500), website source: http://www.eecs.berkeley.edu/Research/Projects/
CS/vision/grouping/resources.html
1
2
4
5
2D histogram 1D projection of 2D
histogram
MSE functions of 2D Otsu. Maximizing
Z* will achieve best threshold
1D projection of 2D histogram
Experiment Design3
Design:
• Dataset: Use images with noise(i.e. Gaussain noise, Salt and Pepper
noise, etc. ) and shadow from BSD500 database[4].
• Ground True: Manually mark the ground truth.
• Evaluation: Jaccard and Dice Index; compare result image directly
Additional test:
• Compare the thresholding performance of 2D Otsu on noise image
and original Otsu on Mean-Filtered image.
Hypothesis:
• The 2D Otsu method has better thresholding performance than
original Otsu espcially on images with noise and shadow.
Fish Otsu 2D Otsu
Mp Otsu 2D Otsu
Beaver Otsu 2D Otsu
Image Name
Jaccard
Index
Dice
Index
Normalized Jaccard Index
(2D Otsu is 1) Improvement
(Jaccard)
Otsu 2D Otsu Otsu 2D Otsu Otsu 2D Otsu
Fish 0.01542 0.07785 0.03038 0.14446 0.5075 1 49.24%
Mp 0.05208 0.17051 0.09901 0.29135 0.5260 1 47.40%
Beaver 0.19720 0.33464 0.32943 0.50146 0.5986 1 40.14%
Cup 0.06186 0.10345 0.11651 0.18750 0.5309 1 46.91%
Cup Otsu 2D Otsu
Rectangle Rectangle + Gaussain noise
Otsu only 2D Otsu Mean Filter + Otsu
The 2D Otsu method could work as
a Low-Pass-Filter to remove noise.
To evaluate its performance, we
also compared the thresholding
quality of the 2D Otsu with Mean
Filter + Otsu.
Conclusion6
Eagle + Salt and Pepper noise Otsu only
Mean-Filter + Otsu2D Otsu

More Related Content

PPTX
JPD_OSA_Biomedical_Optics_2016
PPTX
Single image haze removal
PDF
A Review over Different Blur Detection Techniques in Image Processing
PDF
Mn3621372142
PDF
F045033337
PPTX
3 d printing
PDF
D04402024029
PDF
Image Denoising of various images Using Wavelet Transform and Thresholding Te...
JPD_OSA_Biomedical_Optics_2016
Single image haze removal
A Review over Different Blur Detection Techniques in Image Processing
Mn3621372142
F045033337
3 d printing
D04402024029
Image Denoising of various images Using Wavelet Transform and Thresholding Te...

What's hot (20)

PPTX
Microstructural Analysis and Machine Learning
PDF
B42020710
PPTX
final_year_project
PDF
Pixel Recursive Super Resolution. Google Brain
PDF
H1802054851
PDF
Ed34785790
PDF
An Analysis and Comparison of Quality Index Using Clustering Techniques for S...
PDF
G1802053147
PDF
3 d molding and casting4
PPTX
Final ppt v3
PDF
Amalgamation of contour, texture, color, edge, and spatial features for effic...
PDF
15 20 jul17 6jun 16151 gunawanedgenn jul17final(edit)n
PDF
Review on Optimal image fusion techniques and Hybrid technique
PDF
IMPROVED PARALLEL THINNING ALGORITHM TO OBTAIN UNIT-WIDTH SKELETON
PDF
IJARCCE 22
PDF
Unsupervised Building Extraction from High Resolution Satellite Images Irresp...
PDF
IRJET- Image Segmentation Techniques: A Review
PPTX
Deep learning for image super resolution
PDF
C1803011419
PDF
Fpga implementation of image segmentation by using edge detection based on so...
Microstructural Analysis and Machine Learning
B42020710
final_year_project
Pixel Recursive Super Resolution. Google Brain
H1802054851
Ed34785790
An Analysis and Comparison of Quality Index Using Clustering Techniques for S...
G1802053147
3 d molding and casting4
Final ppt v3
Amalgamation of contour, texture, color, edge, and spatial features for effic...
15 20 jul17 6jun 16151 gunawanedgenn jul17final(edit)n
Review on Optimal image fusion techniques and Hybrid technique
IMPROVED PARALLEL THINNING ALGORITHM TO OBTAIN UNIT-WIDTH SKELETON
IJARCCE 22
Unsupervised Building Extraction from High Resolution Satellite Images Irresp...
IRJET- Image Segmentation Techniques: A Review
Deep learning for image super resolution
C1803011419
Fpga implementation of image segmentation by using edge detection based on so...
Ad

Similar to Advanced 2D Otsu Method (20)

PDF
Image noise reduction by deep learning methods
PDF
Binarization of Degraded Text documents and Palm Leaf Manuscripts
PDF
IRJET- Implementation of Histogram based Tsallis Entropic Thresholding Segmen...
PDF
Noisy image enhancements using deep learning techniques
PDF
IMAGE SEGMENTATION BY USING THRESHOLDING TECHNIQUES FOR MEDICAL IMAGES
PDF
An effective and robust technique for the binarization of degraded document i...
PDF
A NOVEL APPROACH FOR SEGMENTATION OF SECTOR SCAN SONAR IMAGES USING ADAPTIVE ...
PDF
A NOVEL APPROACH FOR SEGMENTATION OF SECTOR SCAN SONAR IMAGES USING ADAPTIVE ...
PPTX
c4 project batch submitted in MREC main campus ppt
PDF
A Review On Single Image Depth Prediction with Wavelet Decomposition
PDF
Image Segmentation Techniques for Remote Sensing Satellite Images.pdf
PDF
Removal of Gaussian noise on the image edges using the Prewitt operator and t...
PDF
An Efficient Image Denoising Approach for the Recovery of Impulse Noise
PDF
noise remove in image processing by fuzzy logic
PDF
V2 i2087
PDF
Object Recogniton Based on Undecimated Wavelet Transform
PPT
P.maria sheeba 15 mco010
PDF
IRJET - Contrast and Color Improvement based Haze Removal of Underwater Image...
PDF
Comparative study on image fusion methods in spatial domain
Image noise reduction by deep learning methods
Binarization of Degraded Text documents and Palm Leaf Manuscripts
IRJET- Implementation of Histogram based Tsallis Entropic Thresholding Segmen...
Noisy image enhancements using deep learning techniques
IMAGE SEGMENTATION BY USING THRESHOLDING TECHNIQUES FOR MEDICAL IMAGES
An effective and robust technique for the binarization of degraded document i...
A NOVEL APPROACH FOR SEGMENTATION OF SECTOR SCAN SONAR IMAGES USING ADAPTIVE ...
A NOVEL APPROACH FOR SEGMENTATION OF SECTOR SCAN SONAR IMAGES USING ADAPTIVE ...
c4 project batch submitted in MREC main campus ppt
A Review On Single Image Depth Prediction with Wavelet Decomposition
Image Segmentation Techniques for Remote Sensing Satellite Images.pdf
Removal of Gaussian noise on the image edges using the Prewitt operator and t...
An Efficient Image Denoising Approach for the Recovery of Impulse Noise
noise remove in image processing by fuzzy logic
V2 i2087
Object Recogniton Based on Undecimated Wavelet Transform
P.maria sheeba 15 mco010
IRJET - Contrast and Color Improvement based Haze Removal of Underwater Image...
Comparative study on image fusion methods in spatial domain
Ad

Recently uploaded (20)

PPTX
2. Earth - The Living Planet earth and life
PPTX
Pharmacology of Autonomic nervous system
PPTX
cpcsea ppt.pptxssssssssssssssjjdjdndndddd
PPTX
Introduction to Fisheries Biotechnology_Lesson 1.pptx
PDF
Cosmic Outliers: Low-spin Halos Explain the Abundance, Compactness, and Redsh...
PPT
POSITIONING IN OPERATION THEATRE ROOM.ppt
PDF
Unveiling a 36 billion solar mass black hole at the centre of the Cosmic Hors...
PPTX
Introduction to Cardiovascular system_structure and functions-1
PPT
6.1 High Risk New Born. Padetric health ppt
PDF
VARICELLA VACCINATION: A POTENTIAL STRATEGY FOR PREVENTING MULTIPLE SCLEROSIS
PPTX
Taita Taveta Laboratory Technician Workshop Presentation.pptx
PDF
SEHH2274 Organic Chemistry Notes 1 Structure and Bonding.pdf
PPT
The World of Physical Science, • Labs: Safety Simulation, Measurement Practice
PPT
protein biochemistry.ppt for university classes
PPTX
ECG_Course_Presentation د.محمد صقران ppt
PPTX
neck nodes and dissection types and lymph nodes levels
PPTX
The KM-GBF monitoring framework – status & key messages.pptx
PDF
. Radiology Case Scenariosssssssssssssss
PPTX
BIOMOLECULES PPT........................
PDF
Warm, water-depleted rocky exoplanets with surfaceionic liquids: A proposed c...
2. Earth - The Living Planet earth and life
Pharmacology of Autonomic nervous system
cpcsea ppt.pptxssssssssssssssjjdjdndndddd
Introduction to Fisheries Biotechnology_Lesson 1.pptx
Cosmic Outliers: Low-spin Halos Explain the Abundance, Compactness, and Redsh...
POSITIONING IN OPERATION THEATRE ROOM.ppt
Unveiling a 36 billion solar mass black hole at the centre of the Cosmic Hors...
Introduction to Cardiovascular system_structure and functions-1
6.1 High Risk New Born. Padetric health ppt
VARICELLA VACCINATION: A POTENTIAL STRATEGY FOR PREVENTING MULTIPLE SCLEROSIS
Taita Taveta Laboratory Technician Workshop Presentation.pptx
SEHH2274 Organic Chemistry Notes 1 Structure and Bonding.pdf
The World of Physical Science, • Labs: Safety Simulation, Measurement Practice
protein biochemistry.ppt for university classes
ECG_Course_Presentation د.محمد صقران ppt
neck nodes and dissection types and lymph nodes levels
The KM-GBF monitoring framework – status & key messages.pptx
. Radiology Case Scenariosssssssssssssss
BIOMOLECULES PPT........................
Warm, water-depleted rocky exoplanets with surfaceionic liquids: A proposed c...

Advanced 2D Otsu Method

  • 1. Advanced 2D Otsu Method Xin Li(xl553)*, Jingyao Ren(jr986)** * Department of Biomedical Engineering, Cornell University ** Department of Electrical and Computer Engineering, Cornell University Introduction References Description of 2D Otsu Method Experiment Results of Shadow Image Experiment Results of Noise Image Final Project Group 13 ECE 5470 Fall 2015 In this project, we implemented the traditional Otsu method[1] for image thresholding. Next, based on the weaknesses of the traditional Otsu method such as sensitive to noise and shadow, we implemented an Advanced 2D Otsu method[2,3]. Different tests were conducted to evaluate the performance of the Advanced 2D Otsu method. Comparing to traditional Otsu, the 2D Otsu method is a better automatic thresholding method for noise and shadow images, and it could get more accurate thresholding than the traditional Otsu method. The keypoint of the 2D Otsu method is to use both the distribution of the pixel grayscales and the spatial information to decide the threshold together[2,3]. The 1D Otsu method only consider the gray level of the image and ignored the spatial information. To overcome this problem, we could use 2D variance-based techniques using local neighborhood as well as pixel information by maximizing the between-class variance defined on the 2D histogram. This will improve the noise robustness of 1D Otsu. Compared to traditional Otsu method, 2D Otsu shows better performance at eliminating shadows and background noise. However, compared to traditional Otsu with Mean Filter, 2D Otsu method shows a similiar performance and limited improvements on denoising. In conlcusion, 2D Otsu is a good choice for removing shadows but not a perfect choice for denoising. Future work are needed to improve its denoising ability of 2D Otsu method. [1]. Nobuyuki Otsu (1979). "A threshold selection method from gray-level histograms". IEEE Trans. Sys., Man., Cyber. 9 (1): 62–66 [2]. Jianzhuang, Liu, Li Wenqing, and Tian Yupeng. "Automatic thresholding of gray-level pictures using two-dimension Otsu method." Circuits and Systems, 1991. Conference Proceedings, China., 1991 International Conference on. IEEE, 1991. [3]. Nie, F., Wang, Y., Pan, M., Peng, G., & Zhang, P. (2013). Two-dimensional extension of variance-based thresholding for image segmentation. Multidimensional systems and signal processing, 24(3), 485-501. [4]. Berkeley Segmentation Dataset and Benchmarks 500 (BSDS500), website source: http://www.eecs.berkeley.edu/Research/Projects/ CS/vision/grouping/resources.html 1 2 4 5 2D histogram 1D projection of 2D histogram MSE functions of 2D Otsu. Maximizing Z* will achieve best threshold 1D projection of 2D histogram Experiment Design3 Design: • Dataset: Use images with noise(i.e. Gaussain noise, Salt and Pepper noise, etc. ) and shadow from BSD500 database[4]. • Ground True: Manually mark the ground truth. • Evaluation: Jaccard and Dice Index; compare result image directly Additional test: • Compare the thresholding performance of 2D Otsu on noise image and original Otsu on Mean-Filtered image. Hypothesis: • The 2D Otsu method has better thresholding performance than original Otsu espcially on images with noise and shadow. Fish Otsu 2D Otsu Mp Otsu 2D Otsu Beaver Otsu 2D Otsu Image Name Jaccard Index Dice Index Normalized Jaccard Index (2D Otsu is 1) Improvement (Jaccard) Otsu 2D Otsu Otsu 2D Otsu Otsu 2D Otsu Fish 0.01542 0.07785 0.03038 0.14446 0.5075 1 49.24% Mp 0.05208 0.17051 0.09901 0.29135 0.5260 1 47.40% Beaver 0.19720 0.33464 0.32943 0.50146 0.5986 1 40.14% Cup 0.06186 0.10345 0.11651 0.18750 0.5309 1 46.91% Cup Otsu 2D Otsu Rectangle Rectangle + Gaussain noise Otsu only 2D Otsu Mean Filter + Otsu The 2D Otsu method could work as a Low-Pass-Filter to remove noise. To evaluate its performance, we also compared the thresholding quality of the 2D Otsu with Mean Filter + Otsu. Conclusion6 Eagle + Salt and Pepper noise Otsu only Mean-Filter + Otsu2D Otsu