Introduction - If you have any usage issues, please Google them yourself
		 
Quick list of the source included:  
imhist_thresh.cpp: Generate histogram from data,# of bins based on unique values.  
imsmarthist_thresh.cpp: equalize data based on histogram  
imsmartstd_thresh.cpp: equalize data based on standard deviation  
im_absdiff.cpp: Absolute difference of two images  
im_add.cpp: Add two images  
im_addelem.cpp: Add a variable to an image  
im_complement.cpp: Inverse of an image  
im_div.cpp: Divide one image by another (pixel wise, not linear algebra)  
im_divelem.cpp: divide an image by an element  
im_find.cpp: generate a new image based on conditions, will be booleanish  
im_fliplr.cpp: Flip image left right  
im_flipud.cpp: Flip image up down  
im_hist.cpp: Histogram of image, notes will explain how to display results  
im_log10.cpp: Take the log of the image  
im_max.cpp: Max value in the image  
im_mean.cpp: Mean value of the image  
im_median.cpp: Median value of the image  
im_min.cpp: Min value of the image  
im_mult.cpp: Mult