image_denoise_test
    
    
    
      image_denoise_test,
      a C code which
      calls image_denoise(), which
      uses the median filter to try to remove noise from an image.
    
    
      Licensing:
    
    
      The information on this web page is distributed under the MIT license.
    
    
      Related Data and Programs:
    
    
      
      image_denoise,
      a C code which
      applies simple filtering techniques to remove noise from an image.
    
    
      Source Code:
    
    
      
    
    
      BALLOONS is an RGB image of a couple with balloons, to which salt 
      and pepper noise has been added.
      
        - 
          balloons_noisy.ascii.pgm,
          the ASCII PGM file of glassware, with added noise.
        
 
        - 
          balloons_noisy.png,
          a PNG version.
        
 
        - 
          balloons_median_news.ascii.ppm,
          the ASCII PPM file of balloons, after the noise has been filtered using
          the median NEWS filter.
        
 
        - 
          balloons_median_news.png,
          a PNG version.
        
 
        - 
          balloons_median_news2.ascii.ppm,
          after application 2 of MEDIAN NEWS.
        
 
        - 
          balloons_median_news2.png,
          a PNG version.
        
 
        - 
          balloons_median_news3.ascii.ppm,
          after application 3 of MEDIAN NEWS.
        
 
        - 
          balloons_median_news3.png,
          a PNG version.
        
 
        - 
          balloons_median_news4.ascii.ppm,
          after application 4 of MEDIAN NEWS.  Notice that most of the remaining
          defects are 2x2 blocks of equal noise value, which cannot be filtered.
        
 
        - 
          balloons_median_news4.png,
          a PNG version.
        
 
      
    
    
      GLASSWARE is a grayscale image of glassware, to which salt and pepper
      noise has been added.
      
    
    
    
      Last revised on 08 July 2019.