function [images] = interpWeights(start,end,U,steps,xbar,sizeim) scale = 1/steps interp = []; images = []; weights1 = projectImage(start,U,xbar); weights2 = projectImage(end,U,xbar); for n=0:steps weight = scale*n; iweight = (1-weight)*weights1 + (weight)*weights2; interp = reconstruct(iweight,U,xbar,sizeim); images = [images interp]; end