File:Gibbs Ringing in Shepp Logan phantom.png

Original file(2,048 × 1,024 pixels, file size: 74 KB, MIME type: image/png)

Captions

Captions

Example of Gibbs ringing on edges in a Shepp-Logan phantom

Summary edit

Description
English: Left: Artifact free image. Right: Image with Gibbs ringing artefact, most prominent at the edge between white ring-like structure and gray internal area.
Deutsch: Links: Artefakt freies Bild. Rechts: Bild mit Kantenoszillationen (Gibbssches Phänomen), besonders Auffallend an der Kante zwischen der weißen Ring-artigen Struktur und dem grauen Innenbereich
Date
Source Own work
Author FbrG

Licensing edit

I, the copyright holder of this work, hereby publish it under the following license:
w:en:Creative Commons
attribution share alike
This file is licensed under the Creative Commons Attribution-Share Alike 4.0 International license.
You are free:
  • to share – to copy, distribute and transmit the work
  • to remix – to adapt the work
Under the following conditions:
  • attribution – You must give appropriate credit, provide a link to the license, and indicate if changes were made. You may do so in any reasonable manner, but not in any way that suggests the licensor endorses you or your use.
  • share alike – If you remix, transform, or build upon the material, you must distribute your contributions under the same or compatible license as the original.

MATLAB Code edit

Nh = 1024;
Nl = 256;

% high resolution phantom
hRes = phantom(Nh);

% Fourier transform
hRes_f = fftshift(fftn(fftshift(hRes)));

% take central part of kSpace to simulate low resolution
% acquisition.
mRes_f = hRes_f(Nh/2+1-Nl/2:Nh/2+1+Nl/2-1, Nh/2+1-Nl/2:Nh/2+1+Nl/2-1);

% retrieve low resolution image
mRes = 1/(Nh/Nl)^2 * abs(ifftshift(ifftn(ifftshift(mRes_f))));

% make images same size
img = cat(2, imresize(hRes, [Nl Nl]), mRes/max(mRes(:)));

% resize image
img = repelem(img, 4, 4, 3);

% save as *.png to avoid any additional compression artefacts
imwrite(img, 'Gibbs Ringing in Shepp Logan phantom.png');

File history

Click on a date/time to view the file as it appeared at that time.

Date/TimeThumbnailDimensionsUserComment
current13:03, 3 January 2021Thumbnail for version as of 13:03, 3 January 20212,048 × 1,024 (74 KB)FbrG (talk | contribs)Uploaded own work with UploadWizard

There are no pages that use this file.

File usage on other wikis

The following other wikis use this file:

Metadata