Total members 10262 | Gratitudes |It is currently Wed May 23, 2012 9:57 pm Login / Join Codemiles


All times are UTC [ DST ]




Post new topic Reply to topic  Quick reply  [ 2 posts ] 
Author Code Snippet
 Code subject: Median filter to image
PostPosted: Wed Mar 09, 2011 10:44 pm 
Offline
Mastermind
User avatar

Joined: Tue Mar 27, 2007 10:55 pm
Posts: 2279
Location: Earth
Has thanked: 39 time
Have thanks: 61 time

Applying Median filter to image using MATLAB

Code:
%% read the image from the file system to Matrix I 
 I 
= imread('cameraman.tif'); 
   
  
%% create a new figure to show the image . 
   figure
(1);
  %% show the loaded image.
   imshow(I);
   
  
%% apply median filter using the internal matlab function medfilt2 . 
   Y
=medfilt2(I,[5 5]);

   figure(2);
   %% show image after applying the filter 
   imshow
(Y);

   %% write the new image to the file system .
   imwrite(Y,'newimage.gif','GIF');
 

_________________
Currenlty programming with : java , html , php , and javascript . (OCJP-6 certified )


TOP
 Profile Send private message  
Reply with quote  
 Code subject: Re: Median filter to image
PostPosted: Fri Mar 11, 2011 7:55 am 
Offline
Newbie
User avatar

Joined: Mon Mar 07, 2011 6:47 am
Posts: 3
Has thanked: 0 time
Have thanks: 0 time
Thank you for sharing some useful info!!..


TOP
 Profile Send private message  
Reply with quote  
Post new topic Reply to topic Quick reply  [ 2 posts ] 
Quick reply


  

 Similar topics
 Image Insert in Excel File Using POI
 image processing
 help me How do I load image from my pc to matlab
 Image compression
 JavaCV crop image
 Draw rectangle on image
 Show image using before property
 Show image when click on link
 Many links for the one image
 Set image size as a percentage of the page size

All times are UTC [ DST ]


Users browsing similar codes

Users browsing this forum: No registered users and 1 guest



Jump to:  
Previous Code Snippet | Next Code Snippet 




Home
General Talks
Finished Projects
Code Library
Games
Tutorials

Java
C/C++
C-sharp
php
Script
JSP/Servlets
Ajax
ASP/ASP.net
Google SEO
Database
Communications
Phpbb3 styles
Photoshop tutorials
Flash tutorials
Find a job






Powered by phpBB © 2000, 2002, 2005, 2007 phpBB Group
All copyrights reserved to codemiles.com 2007-2011
mileX v1.0 designed by codemiles team