Skip to main content

Nyquist Theorem for Images


Nyquist Theorem for Images

The Nyquist theorem applies to images too — not just audio. In images, it is about sampling spatial detail, not time.

Simple Explanation

The Nyquist theorem states that to accurately represent an image without losing detail, the sampling rate must be at least twice the highest spatial frequency.

What is Spatial Frequency?

Spatial frequency means how quickly pixel values change across the image.

  • High spatial frequency = sharp edges, fine details
  • Low spatial frequency = smooth areas

Meaning in Image Terms

If the image has very fine details, you need more pixels to capture them correctly. If you don’t sample enough pixels, aliasing happens (weird patterns, jagged edges, moiré).

Nyquist Rule for Images

If the highest detail frequency is f, then:

sampling rate ≥ 2f

In image terms:

pixels per unit distance ≥ 2 × (cycles per unit distance)

Real-World Meaning

  • Camera sensor: must have enough pixels (resolution) to capture the detail
  • Display: must have enough pixels to show it

What Happens if Nyquist is Violated?

You get aliasing, such as:

  • Jagged edges
  • Moiré patterns
  • Staircase lines

How to Avoid Aliasing

  • Use an anti-aliasing filter (removes high-frequency detail before sampling)
  • Use higher resolution (more pixels = higher sampling rate)

Summary

Concept Image Meaning
Sampling Pixels in the image
Frequency Detail level / edge density
Nyquist limit Need at least 2 pixels per detail cycle
Violation Aliasing (jagged lines)

How to Calculate Spatial Frequency from Real Images

You can calculate spatial frequency from real images using two methods: a simple visual estimate or a precise Fourier Transform (FFT) approach.

Method 1: Estimate from Repeating Patterns (Simple)

If the image has repeating lines or stripes, you can measure the distance between repeats.

Example: If stripes repeat every 5 pixels, then:

frequency = 1 / period = 1 / 5 = 0.2 cycles/pixel

Steps:

  1. Open the image
  2. Zoom in to see repeating pattern clearly
  3. Measure distance between two repeating points (in pixels)

Method 2: Use FFT (Fast Fourier Transform)

FFT converts the image from space domain to frequency domain. It shows which frequencies exist and how strong they are.

Example Python code using OpenCV:


import cv2
import numpy as np
import matplotlib.pyplot as plt

# Load image as grayscale
img = cv2.imread('image.jpg', 0)

# Apply FFT
f = np.fft.fft2(img)
fshift = np.fft.fftshift(f)

# Magnitude spectrum
magnitude = 20 * np.log(np.abs(fshift))

plt.imshow(magnitude, cmap='gray')
plt.title('Frequency Domain')
plt.show()
        

In the FFT output: center = low frequency (smooth areas) bright spots far from center = high frequency details

Convert FFT Distance to Real Units

If you know:

  • Image pixel size (mm/pixel)
  • Image resolution

You can convert distance to frequency using:

f = d / (N × Î”x)

Where:

  • d = distance from center in FFT
  • N = image size in pixels
  • Δx = mm per pixel

Example:
If image is 1000 pixels wide, pixel size = 0.01 mm/pixel, and d = 250:

f = 250 / (1000 × 0.01) = 25 cycles/mm

Summary

  • Simple method: measure repeating pattern distance → frequency = 1/period
  • Accurate method: use FFT → find highest frequency peak → convert to cycles/mm

Want help?

If you want, I can help you:

  • Run FFT on your image
  • Extract highest frequency automatically
  • Provide code for MATLAB / Python / OpenCV

MATLAB Example: Finding Spatial Frequency Using FFT

The following MATLAB code demonstrates how to generate a simple sinusoidal image, compute its Fourier Transform, and determine the highest spatial frequency present. Comments are written in plain language for clarity.


% Define the physical size of each pixel and the overall image size
pixelSize_mm = 0.01;    % millimeters per pixel
N = 64;                 % image will be N x N pixels

% Create coordinate grids for the image
[x, y] = meshgrid(1:N, 1:N);

% Generate a sinusoidal pattern with a known spatial frequency
freq = 2;               % spatial frequency in cycles/mm
img = 128 + 127 * sin(2*pi*freq*x*pixelSize_mm);

% Ensure image is in double precision for accurate calculations
img = double(img);

% If the image is RGB, convert to grayscale
if size(img,3) == 3
    img = rgb2gray(img);
end

% Compute the 2D Fast Fourier Transform of the image
F = fft2(img);
Fshift = fftshift(F);

% Compute the magnitude spectrum for visualization
mag = abs(Fshift);

% Determine the size of the image
[M, N] = size(img);

% Remove the center (DC) component for peak detection
centerRow = ceil(M/2);
centerCol = ceil(N/2);
mag(centerRow, centerCol) = 0;

% Locate the position of the highest frequency peak
[maxVal, idx] = max(mag(:));
[row, col] = ind2sub(size(mag), idx);

% Convert pixel distances to spatial frequency in cycles/mm
fx = (col - centerCol) / (N * pixelSize_mm);
fy = (row - centerRow) / (M * pixelSize_mm);
f_max = sqrt(fx^2 + fy^2);

% Display the highest spatial frequency
fprintf('Highest spatial frequency: %.2f cycles/mm\n', f_max);

% Visualize the frequency spectrum
figure;
imagesc(log(1 + mag));
colormap gray;
axis image;
colorbar;
title('Log Magnitude Spectrum');

% Visualize the original sinusoidal image
figure;
imagesc(img);
colormap gray;
axis image;
colorbar;
title('Input Sinusoidal Image');
  

This example shows how to simulate an image with a known spatial frequency, use FFT to analyze its frequency content, and visualize both the original image and its spectrum. This is useful for understanding how sampling rates affect image detail and for verifying the Nyquist theorem in practice.

Output 

 

 

People are good at skipping over material they already know!

View Related Topics to







Contact Us

Name

Email *

Message *

Popular Posts

BER vs SNR for M-ary QAM, M-ary PSK, QPSK, BPSK, ...

📘 Overview of BER and SNR 🧮 Online Simulator for BER calculation of m-ary QAM and m-ary PSK 🧮 MATLAB Code for BER calculation of M-ary QAM, M-ary PSK, QPSK, BPSK, ... 📚 Further Reading 📂 View Other Topics on M-ary QAM, M-ary PSK, QPSK ... 🧮 Online Simulator for Constellation Diagram of m-ary QAM 🧮 Online Simulator for Constellation Diagram of m-ary PSK 🧮 MATLAB Code for BER calculation of ASK, FSK, and PSK 🧮 MATLAB Code for BER calculation of Alamouti Scheme 🧮 Different approaches to calculate BER vs SNR What is Bit Error Rate (BER)? The abbreviation BER stands for Bit Error Rate, which indicates how many corrupted bits are received (after the demodulation process) compared to the total number of bits sent in a communication process. BER = (number of bits received in error) / (total number of tran...

Constellation Diagrams of ASK, PSK, and FSK

📘 Overview of Energy per Bit (Eb / N0) 🧮 Online Simulator for constellation diagrams of ASK, FSK, and PSK 🧮 Theory behind Constellation Diagrams of ASK, FSK, and PSK 🧮 MATLAB Codes for Constellation Diagrams of ASK, FSK, and PSK 📚 Further Reading 📂 Other Topics on Constellation Diagrams of ASK, PSK, and FSK ... 🧮 Simulator for constellation diagrams of m-ary PSK 🧮 Simulator for constellation diagrams of m-ary QAM BASK (Binary ASK) Modulation: Transmits one of two signals: 0 or -√Eb, where Eb​ is the energy per bit. These signals represent binary 0 and 1.    BFSK (Binary FSK) Modulation: Transmits one of two signals: +√Eb​ ( On the y-axis, the phase shift of 90 degrees with respect to the x-axis, which is also termed phase offset ) or √Eb (on x-axis), where Eb​ is the energy per bit. These signals represent binary 0 and 1.  BPSK (Binary PSK) Modulation: Transmits one of two signals...

Online Simulator for ASK, FSK, and PSK

Try our new Digital Signal Processing Simulator!   Start Simulator for binary ASK Modulation Message Bits (e.g. 1,0,1,0) Carrier Frequency (Hz) Sampling Frequency (Hz) Run Simulation Simulator for binary FSK Modulation Input Bits (e.g. 1,0,1,0) Freq for '1' (Hz) Freq for '0' (Hz) Sampling Rate (Hz) Visualize FSK Signal Simulator for BPSK Modulation ...

Channel Impulse Response (CIR)

📘 Overview & Theory 📘 How CIR Affects the Signal 🧮 Online Channel Impulse Response Simulator 🧮 MATLAB Codes 📚 Further Reading What is the Channel Impulse Response (CIR)? The Channel Impulse Response (CIR) is a concept primarily used in the field of telecommunications and signal processing. It provides information about how a communication channel responds to an impulse signal. It describes the behavior of a communication channel in response to an impulse signal. In signal processing, an impulse signal has zero amplitude at all other times and amplitude ∞ at time 0 for the signal. Using a Dirac Delta function, we can approximate this. Fig: Dirac Delta Function The result of this calculation is that all frequencies are responded to equally by δ(t) . This is crucial since we never know which frequenci...

Theoretical BER vs SNR for binary ASK, FSK, and PSK

📘 Overview & Theory 🧮 MATLAB Codes 📚 Further Reading Theoretical BER vs SNR for Amplitude Shift Keying (ASK) The theoretical Bit Error Rate (BER) for binary ASK depends on how binary bits are mapped to signal amplitudes. For typical cases: If bits are mapped to 1 and -1, the BER is: BER = Q(√(2 × SNR)) If bits are mapped to 0 and 1, the BER becomes: BER = Q(√(SNR / 2)) Where: Q(x) is the Q-function: Q(x) = 0.5 × erfc(x / √2) SNR : Signal-to-Noise Ratio N₀ : Noise Power Spectral Density Understanding the Q-Function and BER for ASK Bit '0' transmits noise only Bit '1' transmits signal (1 + noise) Receiver decision threshold is 0.5 BER is given by: P b = Q(0.5 / σ) , where σ = √(N₀ / 2) Using SNR = (0.5)² / N₀, we get: BER = Q(√(SNR / 2)) Theoretical BER vs ...

What is - 3dB Frequency Response? Applications ...

📘 Overview & Theory 📘 Application of -3dB Frequency Response 🧮 MATLAB Codes 🧮 Online Digital Filter Simulator 📚 Further Reading Filters What is -3dB Frequency Response?   Remember, for most passband filters, the magnitude response typically remains close to the peak value within the passband, varying by no more than 3 dB. This is a standard characteristic in filter design. The term '-3dB frequency response' indicates that power has decreased to 50% of its maximum or that signal voltage has reduced to 0.707 of its peak value. Specifically, The -3dB comes from either 10 Log (0.5) {in the case of power} or 20 Log (0.707) {in the case of amplitude} . Viewing the signal in the frequency domain is helpful. In electronic amplifiers, the -3 dB limit is commonly used to define the passband. It shows whether the signal remains approximately flat across the passband. For example, in pulse shapi...

BER performance of QPSK with BPSK, 4-QAM, 16-QAM, 64-QAM, 256-QAM, etc

📘 Overview 📚 QPSK vs BPSK and QAM: A Comparison of Modulation Schemes in Wireless Communication 📚 Real-World Example 🧮 MATLAB Code 📚 Further Reading   QPSK provides twice the data rate compared to BPSK. However, the bit error rate (BER) is approximately the same as BPSK at low SNR values when gray coding is used. On the other hand, QPSK exhibits similar spectral efficiency to 4-QAM and 16-QAM under low SNR conditions. In very noisy channels, QPSK can sometimes achieve better spectral efficiency than 4-QAM or 16-QAM. In practical wireless communication scenarios, QPSK is commonly used along with QAM techniques, especially where adaptive modulation is applied. Modulation Bits/Symbol Points in Constellation Usage Notes BPSK 1 2 Very robust, used in weak signals QPSK 2 4 Balanced speed & reliability 4-QAM ...

Coherence Bandwidth and Coherence Time

🧮 Coherence Bandwidth 🧮 Coherence Time 🧮 MATLAB Code s 📚 Further Reading For Doppler Delay or Multi-path Delay Coherence time T coh ∝ 1 / v max (For slow fading, coherence time T coh is greater than the signaling interval.) Coherence bandwidth W coh ∝ 1 / Ï„ max (For frequency-flat fading, coherence bandwidth W coh is greater than the signaling bandwidth.) Where: T coh = coherence time W coh = coherence bandwidth v max = maximum Doppler frequency (or maximum Doppler shift) Ï„ max = maximum excess delay (maximum time delay spread) Notes: The notation v max −1 and Ï„ max −1 indicate inverse proportionality. Doppler spread refers to the range of frequency shifts caused by relative motion, determining T coh . Delay spread (or multipath delay spread) determines W coh . Frequency-flat fading occurs when W coh is greater than the signaling bandwidth. Coherence Bandwidth Coherence bandwidth is...