MATLAB: Move all counts of the image in random direction

countsdisplaceimage processingopticsstatisticsStatistics and Machine Learning Toolbox

I have the following problem. I have 8-bit image. It represents photon counts, so each pixel is capable to register up to 255 photons. I need to introduce some random error – each photons trajectory is disturbed, so that finaly instead of e.g. (150, 100) it is regiesterd at (150+random1, 100+random2). Random1 and random2 both have Poisson distirbution and are small, ~2 pixels.
Notice, that is is not enough to displace each pixel in random direction, since each count from each pixel has to be displaced separately.
What is the easiest and fastest way to code it?
Best regards, Alex

Best Answer

You need to scan your original image, and if the value is not zero (meaning that there is a photon in the original CCD well or whatever the image represents) then you need to calculate the new location (row,col) by adding a deltax and deltay taken from a Poisson distribution. Then add the photon to the output location and (optionally) remove it from the input location.
outputImage = zeros(rows, columns);
for col = 1 : columns
for row = 1 : rows
if originalImage(row, col) > 1
newRow = round(row + random('Poisson', pd));
newCol = round(col + random('Poisson', pd));
% Increment the number of pixels at this output image location.
outputImage(newRow, newCol) = outputImage(newRow, newCol) + 1;
% Decrement the number of photons at this output image location (only if you want to)
originalImage(row, col) = originalImage(row, col) - 1;
end
end
end
See documentation for random() in the Statistics and Machine Learning Toolbox for info on how to get pd, the probability distribution object.