This repo are my implementations and demonstrations of classic algorithms through Python 3.
tree -d -L 2 # only display directories with maximum depth of 2
.
├── Computer Graphics
│ ├── Basics
│ └── NeRF
├── Computer Vision
│ ├── A Simple Image Steganography
│ ├── DCT - Discrete Cosine Transform
│ ├── Delauany Trianglization Image Morphing
│ ├── Histogram Equalization Algorithm
│ ├── PCA Image Compression
│ └── Shift and Sum Multi-Camera Refocusing
├── Machine Learning
│ ├── GAN - Generative Adversial network Vanilla Version
│ ├── GCN - Graph Concolutional Network
│ ├── Gradient Descent and Backpropagation
│ ├── PCA - Principle Component Analysis
│ ├── QL - Q Learning
│ └── VAE - Variational Autoencoder
├── Mathematics
│ ├── DFT - Discrete Fourier Transform
│ └── Jacobi Method - Find Eigenvectors and Eigenvalues
└── Sorting Algorithms
├── Mergesort
└── Quicksort