Skip to content

Latest commit

 

History

History
 
 

01_ImageWarping

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 

Assignment 1 - Image Warping

In this assignment, you will implement basic transformation and point-based deformation for images.

Resources:

1. Basic Image Geometric Transformation (Scale/Rotation/Translation).

Fill the Missing Part of 'run_global_transform.py'.

2. Point Based Image Deformation.

Implement MLS or RBF based image deformation in the Missing Part of 'run_point_transform.py'.


一个作业提交模板 (里面的结果也可参考)

Implementation of Image Geometric Transformation

This repository is Yudong Guo's implementation of Assignment_01 of DIP.

alt text

Requirements

To install requirements:

python -m pip install -r requirements.txt

Running

To run basic transformation, run:

python run_global_transform.py

To run point guided transformation, run:

python run_point_transform.py

Results (need add more result images)

Basic Transformation

alt text

Point Guided Deformation:

alt text

Acknowledgement

📋 Thanks for the algorithms proposed by Image Deformation Using Moving Least Squares.