Move all counts of the image in random direction
    3 visualizaciones (últimos 30 días)
  
       Mostrar comentarios más antiguos
    
    Alex Kurek
 el 17 de Feb. de 2016
  
    
    
    
    
    Comentada: Alex Kurek
 el 19 de Feb. de 2016
            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
0 comentarios
Respuesta aceptada
  Image Analyst
      
      
 el 17 de Feb. de 2016
        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.
3 comentarios
  Image Analyst
      
      
 el 18 de Feb. de 2016
				You could perhaps get all the Poisson distances in 256 arrays in advance instead of getting them one number at a time.
Más respuestas (0)
Ver también
Categorías
				Más información sobre Image Segmentation and Analysis en Help Center y File Exchange.
			
	Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

