Authors: Xin Wang, Xiaoyu Zhou, Danran Chen
This repository contains the final project of the authors in the course Data Visualization (2020 Fall) at Fudan University.
- We implement an accelerated version of the FFD algorithm so as to warp images in real time, in which a reverse mapping takes only 0.015 seconds and a deformation takes only 0.1 seconds on [email protected] without GPU acceleration.
- We offer four types of animations for space transformation visualization, using the Manim library.
- We implement six types of edge detection algorithms, i.e., Sobel, Canny, Laplacian, LoG, DoG, and XDoG, for sketch generation.
- All of our algorithms are implemented directly using Numpy, Pytorch (for computing derivatives automatically) and other libraries at the same level, rather than some professional image processing libraries like OpenCV, which provide too many black-box functions.
The software is verified to be operational on:
- Mac OS Big Sur 11.1
- Python 3.7
There is no guarantee that it will run successfully or that the interface will stay the same in other environments (such as Windows 10), although it should in theory.
We strongly recommend using Anaconda. You may follow the following steps:
conda create -n FFD python=3.7
conda activate FFD
Prerequisite information can be found in requirements.txt
. You may use pip to install them:
python -m pip install -r requirements.txt
# For faster installation, Chinese users may add the "-i" option when runing pip:
# python3 -m pip install -r requirements.txt -i https://pypi.tuna.tsinghua.edu.cn/simple
This error may occur while you are installing Pycairo by runing python -m pip install -r requirements.txt
. This is a problem related to the installation of Pycairo rather than our software. A typical solution is to install Pycairo via conda:
# Reference: https://anaconda.org/conda-forge/pycairo
conda install -c conda-forge pycairo
This error usually occurs when running our software on Mac OS. It is due to the library conflicts between OpenCV and PyQT5. To solve this problem, first uninstall current OpenCV:
pip uninstall opencv-python
# Or, you may need to try this: pip uninstall opencv-contrib-python
Then, install the headless version:
pip install opencv-contrib-python-headless
That is one of the reasons why we recommend creating a new environment using Anaconda.
Try running the following after setting working directory:
python GUI.py
We would like to thank Yuncheng Zhou (master student in the School of Data Science at Fudan) for his instruction in FFD algorithms.
We would like to thank the Python library Manim. We modified the source codes it provides for customizing mathematical animations.
This repository is under the MIT license.