All Projects → GKalliatakis → Fourier-Analysis-Digital-Images

GKalliatakis / Fourier-Analysis-Digital-Images

Licence: MIT License
Fourier analysis applications for image matching.

Programming Languages

matlab
3953 projects

Projects that are alternatives of or similar to Fourier-Analysis-Digital-Images

SSD Keras
Single Shot MultiBox Detector(SSD)目标检测算法
Stars: ✭ 44 (+144.44%)
Mutual labels:  ssd
disktrim
Windows application to send TRIM / UNMAP / DISCARD to SSD. Similar to blkdiscard.
Stars: ✭ 17 (-5.56%)
Mutual labels:  ssd
CacheLib
Pluggable in-process caching engine to build and scale high performance services
Stars: ✭ 637 (+3438.89%)
Mutual labels:  ssd
coral-pi-rest-server
Perform inferencing of tensorflow-lite models on an RPi with acceleration from Coral USB stick
Stars: ✭ 49 (+172.22%)
Mutual labels:  ssd
old-audiosync
First implementation of the audio synchronization feature for Vidify, now obsolete
Stars: ✭ 16 (-11.11%)
Mutual labels:  cross-correlation
CNCC-2020
Computational Neuroscience Crash Course (University of Bordeaux, 2020)
Stars: ✭ 36 (+100%)
Mutual labels:  fourier-analysis
nemar
[CVPR2020] Unsupervised Multi-Modal Image Registration via Geometry Preserving Image-to-Image Translation
Stars: ✭ 120 (+566.67%)
Mutual labels:  image-registration
Image-Restoration
Image registration using pytorch
Stars: ✭ 26 (+44.44%)
Mutual labels:  image-registration
quicksilver
Predictive Image Registration
Stars: ✭ 117 (+550%)
Mutual labels:  image-registration
CNN-Series-Getting-Started-and-PyTorch-Implementation
我的笔记和Demo,包含分类,检测、分割、知识蒸馏。
Stars: ✭ 49 (+172.22%)
Mutual labels:  ssd
robust-kalman
Robust Kalman filter with adaptive noise statistics estimation.
Stars: ✭ 89 (+394.44%)
Mutual labels:  noise
shd
Show pretty HDD/SSD list
Stars: ✭ 37 (+105.56%)
Mutual labels:  ssd
VoxelMorph-PyTorch
An unofficial PyTorch implementation of VoxelMorph- An unsupervised 3D deformable image registration method
Stars: ✭ 68 (+277.78%)
Mutual labels:  image-registration
MIRACL
Multi-modal Image Registration And Connectivity anaLysis
Stars: ✭ 23 (+27.78%)
Mutual labels:  image-registration
ACRN Chest X-ray IA
Learning Deformable Registration of Medical Images with Anatomical Constraints
Stars: ✭ 18 (+0%)
Mutual labels:  image-registration
DeepAtlas
Joint Semi-supervised Learning of Image Registration and Segmentation
Stars: ✭ 38 (+111.11%)
Mutual labels:  image-registration
OBNI
Objet Bruité Non Identifié - Unity displacement shader
Stars: ✭ 28 (+55.56%)
Mutual labels:  noise
hand detection
A Light CNN based Method for Hand Detection and Orientation Estimation
Stars: ✭ 116 (+544.44%)
Mutual labels:  ssd
fractal-noise-js
Fractal noise functions
Stars: ✭ 37 (+105.56%)
Mutual labels:  noise
SSD-Pruning-and-quantization
Pruning and quantization for SSD. Model compression.
Stars: ✭ 19 (+5.56%)
Mutual labels:  ssd

Fourier Analysis with Digital Images

Fourier analysis applications for image matching

alt tag

Overview

The goal of this Fourier analysis exercise is to understand the Fourier analysis itself alongside some applications mainly focused on magnitude and phase. Two main exercises will be discussed in this repository:

  1. Template matching using Symmetric Phase Only Matched Filters (SPOMF)
  2. Image registration with Fourier-Mellin Invariant (FMI) – SPOMF .

Introduction

Image matching is defined as the problem of evaluating the similarity of objects in different images. It is used for detecting changes in a scene, estimating object motion, locating targets, integrating information from different types of images or identifying objects, etc. A matching algorithm should be robust with respect to low signal to noise ratio (SNR), and should remain accurate even when the same object has different intensities or different orientations and sizes in the two images to be matched, or when the object is partially truncated in one of the images. The most common approach to image matching is based on the cross-correlation technique, also referred to as template matching. However the maximum of the cross-correlation between two images is rather broad, and therefore difficult to locate in the presence of noise. Several alternatives to the cross-correlation function have been proposed, such as the Sum of Squared Differences (SSD) which most of the time seems to work better than the cross-correlation technique. In this exercise, a normalized cross-correlation matching was implemented alongside a SSD matching in order to test their result against the SPOMF method.

SPOMF Approach

This technique, referred to as a symmetric phase-only matched filtering (SPOMF), can be seen as a nonlinear two step process, the first step being the extraction of the phases of the input images and the second the phase-only matched filtering. Because cross-correlation is very sensitive to luminance, one solution is to normalize the images before the comparison, which leads to Normalized Cross-correlation. Furthermore, another solution can be adopted by comparing only the phase information, namely SPOMF.

Template matching with SPOMF

For this exercise a normalized cross-correlation matching, an SSD matching and the SPOMF matching were implemented. Then these algorithms were tested on the images provided. The results can be showed in the above figure. The first line contains the reference image alongside the query image. The second line shows the three different approaches used and the last line presents the location of the query image inside the reference image based on each method. The code for the template matching can be found in the function named template_matching_ssd_ncc_SPOMF and can be used for gray-scale and color images. The code itself contains lots of explanatory comments.

Image registration with FMI-SPOMF

In this exercise, image registration with the FMI-SPOMF method was introduced. First a distorted version of the “cameraman.tif” image was constructed with arbitrary rotation and scaling only with 30 degrees rotation and 0.7 scaling. After that, the sampling of images on a log-polar grid was implemented in a function named logsample. The implementation was based on Log-polar image sampling.

License

Fourier analysis applications for image matching is released under the MIT License.

This app is for learning purposes, and not meant for any use in production / commercial purposes.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].