I want to use a floating point matrix (2d) or a 2d array to make a simple basic image (be it square or rectangle) and then convert it to grayscale and add poisson noise to it. But the code i have is not working.
1 次查看(过去 30 天)
显示 更早的评论
a = repmat(0:0.01:0.5,100,5);
i = mat2gray(a);
j=imnoise(i,'poisson');
imshow(i)
figure();
imshow(j)
It shows the same image with and without poisson noise when i check the pixel value. Please help !
0 个评论
回答(0 个)
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!