summaryrefslogtreecommitdiff
path: root/macros/decorrstretch.sci
blob: 257f19100a811bcf78e0793dcd4786438c5ed711 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
function new_image = decorrstretch(image)
	
	image_list = mattolist(image)
	
	out = opencv_decorrstretch(image_list)
	
	sz = size(out)
	for i=1:sz
		new_image(:, :, i) = out(i)
	end
	
endfunction