필터 지우기
필터 지우기

Is it possible to subsample an image by deleting data then interpolating to create a blurred image, while keeping the resulting image the same size as the original image?

조회 수: 2 (최근 30일)
Is it possible to subsample an image by deleting data then interpolating to create a blurred image, while keeping the resulting image the same size as the original image?
The code I am using below does the subsampling and interpolation but changes the image size. It looks smaller. See a part of my code below.
originalImage = imread(imagePath);
zeroPaddedImage = zeros(size(originalImage), 'like', originalImage);
zeroPaddedImage(:, 1:subsamplingFactor:end) = originalImage(:, 1:subsamplingFactor:end);
blurredImage = imresize(zeroPaddedImage, 1/subsamplingFactor, 'bicubic');

채택된 답변

Matt J
Matt J 2023년 12월 18일
편집: Matt J 2023년 12월 19일
siz=size(originalImage);
tempImage=originalImage( 1:subsamplingFactor:end, 1:subsamplingFactor:end, :);
blurredImage = imresize(tempImage, siz(1:2), 'bicubic');
  댓글 수: 10
Tevin
Tevin 2023년 12월 19일
%Please see a part of my code
% Create a zero-filled image of the same size as the original
siz = size(originalImage);
zeroPaddedImage = zeros(size(originalImage), 'like', originalImage);
zeroPaddedImage(:, 1:factor:end, :) = originalImage(:, 1:factor:end, :);
blurredImage = imresize(zeroPaddedImage, siz(1:2), 'bicubic');
I have attached a file with the original image, the subsampled and the interpolated image. The interpolated image looks like the subsampled one. I want to fill the gaps by interpolating so it seemed like a blurry or noisy image, rather than a having gaps. Can you look at where my code is going wrong?
Matt J
Matt J 2023년 12월 19일
originalImage=load('Images').originalImage;
subsamplingFactor=20;
siz=size(originalImage);
tempImage=originalImage( 1:subsamplingFactor:end, 1:subsamplingFactor:end, :);
blurredImage = imresize(tempImage, siz(1:2), 'bicubic');
montage({originalImage,blurredImage})

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

제품


릴리스

R2022b

Community Treasure Hunt

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

Start Hunting!

Translated by