fspecial filter of my own making

4 ビュー (過去 30 日間)
David Raveh
David Raveh 2022 年 3 月 8 日
回答済み: Image Analyst 2022 年 3 月 8 日
I would like to make a point spread function using fspecial for atmospheric turbulence. Is there a way that I can create my own function instead of using the pre-defined functions for 'gaussian' etc.? If yes, how would I go about doing that?

回答 (1 件)

Image Analyst
Image Analyst 2022 年 3 月 8 日
Sure. Just assign it.
psf = [1,2,3;
4,5,6;
7,8,9]; % or whatever it is.
Do you know the size of it (the window width)? Do you have a formula for it? You need to or else how will you put the values into it. Then you can use conv2() to convolve your input image with your custom PSF.
blurredImage = conv2(inputImage, psf, 'same');

カテゴリ

Help Center および File ExchangeImage Filtering and Enhancement についてさらに検索

製品


リリース

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by