Subchapters: 
  | 
ContoursYou can do a contour plot of images: IDL> contour,image,levels=[0,100,200,300,400,500] 
         IDL>
contour,img,levels=[0,100,200,300,400,500],/fill 
         IDL>
add_path,/es 
 The image here is too big and/or noisy for the contour to be very different from the tvim result. We may have to resize or to smooth the image.         IDL>
image2 = congrid(image,50,50) 
         IDL>
image3 = smooth(image,10) 
 The noise here is lower than 0, let's set all the negative values to 0:         IDL>
contour,image3 > 0,levels=[0,100,200,300,400,500] IDL> pos = [0.1,0.1,0.9,0.9] 
  | 
| 
 
 IDL courses C. Morisset © 2004 IA/UNAM V 2.2  |