how could we identify the type of blur in an image?? first, how could we realize that a image is blurred or not???

1 回表示 (過去 30 日間)
  1. how could we identify an image is blurred or not and the type of blur occured??
  2. if i create a blur to an image by fspecial(), can we see the matrix of psf??
  3. is it possible to simulate a blur only to a particular object(portion) in an image, if so how??
can someone help me with the code too for better understanding.
Thanks in advance.....

回答 (1 件)

Harsh Parikh
Harsh Parikh 2020 年 9 月 30 日
Hi Vimal,
You can identify the "blurriness" of the image and the parameters as well using a neural network based on multi-valued neurons as shown in the paper here which should answer the first two questions.
To blur a particular part of an image:
  • Cut the part.
  • Apply blurring to that part.
  • Join the part back to the original image.
Refer the link1 and link2 which shows, blurring half of the image and blurring with a controlled area, respectively.
  3 件のコメント
Image Analyst
Image Analyst 2020 年 10 月 1 日
Regarding your #2, look in the workspace panel to see the numbers in your psf matrix. To visualize it, do something like this:
psf = fspecial('gaussian', 41, 11)
subplot(2, 1, 1);
imshow(psf, [], 'InitialMagnification', 800);
axis('on', 'image');
subplot(2, 1, 2);
surf(psf);
Vimal Raj
Vimal Raj 2020 年 10 月 2 日
ok sir, thank you soo much....

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeGet Started with Image Processing Toolbox についてさらに検索

タグ

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by