필터 지우기
필터 지우기

How to blur some part of image without affecting rest of the part?

조회 수: 9 (최근 30일)
Narendra Kumar
Narendra Kumar 2022년 7월 5일
답변: Chunru 2022년 7월 5일
Suppose I have an image (Cameraman.tif) and I want to select some part of the input image then I Want to apply imfilter() operation only for the selected part not for the rest part. Lastly, when i will showing the blurred image then It has the same size which is equal to input image.

답변 (1개)

Chunru
Chunru 2022년 7월 5일
I = imread("peppers.png");
imshow(I)
LEN = 31; THETA = 11;
PSF = fspecial('motion', LEN, THETA);
% Blur part of image
I(100:300, 100:300, :) = imfilter(I(100:300, 100:300, :), PSF);
figure
imshow(I)

태그

제품


릴리스

R2022a

Community Treasure Hunt

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

Start Hunting!

Translated by