demo/reconstruct_cmplx.R

# compare reconstruction error of different complex moment types
# 
# Author: Allison Irvine
###############################################################################

data(earth_200)
orders=c(25,50,100)

#continuous complex moments 
#gpzm		Generalized Pseudo-Zernike
#fm			fourier mellin
#fc			fourier chebyshev
#fr			radial fourier


types = c("gpzm","fm","fc","fr")
params = list(1,0,0,0)
obj = new("CmplxIm",img=img)
displayImg(obj@I)

#results will be stored in a matrix, rows are moment type, cols are order
#sum of absolute error
error = mat.or.vec(length(types),length(orders))
#rms error
error1 = mat.or.vec(length(types),length(orders))

#total number of pixels
nPix = dim(obj@I)[1]*dim(obj@I)[2]

#for each moment type
for (i in 1:length(types)) {
	momentType(obj) = types[i];
	#for each order
	for (j in 1:length(orders)) {
		if(obj@momentType=="gpzm") {
			setOrder(obj) = orders[j];
			setParams(obj) = params[[i]];
		}else {
			setOrder(obj) = c(orders[j],orders[j]);
		}
		Moments(obj) = 0;
		Reconstruct(obj) = c(orders[j],orders[j]);
		#displayImg(obj@reconstruction)
		#title(sprintf("%s order %d",types[i],orders[j]))
		
		#normalize both image pixel values between 0 and 1
		I1 = (obj@I-min(obj@I)) / (max(obj@I)-min(obj@I))
		I2 = (obj@reconstruction-min(obj@reconstruction)) / (max(obj@reconstruction)-min(obj@reconstruction))
		
		
		#calculate percent reconstruction error relative to original image
		error[i,j] = sum(abs(I1-I2))/sum(I1);
		#calculate rms error of reconstructed image
		error1[i,j] = sqrt(sum((I1-I2)^2)/nPix);
	}
}

Try the IM package in your browser

Any scripts or data that you put into this service are public.

IM documentation built on May 2, 2019, 8:55 a.m.