i want to solve this image processing deblurring problem, if anyone ave any idea have a look to my question posted in image?
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
chitresh
am 20 Okt. 2013
Kommentiert: chitresh
am 20 Okt. 2013
how to deblurred, i stuck at this point, i have no idea about this what this question trying to say. so guys plz help me have a look to question posted in image file
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/150931/image.jpeg)
0 Kommentare
Akzeptierte Antwort
Image Analyst
am 20 Okt. 2013
Your instructor provided you with a function called challenge1.m. You have to use that function, then use the other code he gave you, such as
m = 256;
n = 256;
noise = 0.01;
[B, Ac, Ar, X] = challenge1(m, n, noise);
xNaive = Ac\B/Ar';
imagesc(X);
axis image;
colormap gray;
Actually there's not much for you to do since he gave you all the code you're supposed to run.
2 Kommentare
Weitere Antworten (0)
Siehe auch
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!