├── Deep Learning ├── READMe.md ├── code │ ├── __pycache__ │ │ ├── student_code.cpython-35.pyc │ │ └── utils.cpython-35.pyc │ ├── logs │ │ └── part1 │ │ │ ├── best_model.pth.tar │ │ │ └── checkpoint.pth.tar │ ├── proj6.ipynb │ ├── student_code.py │ ├── utils.py │ └── utils_gpu.py └── html │ ├── 1.png │ ├── 10.png │ ├── 11.png │ ├── 12.png │ ├── 13.png │ ├── 14.png │ ├── 15.png │ ├── 16.png │ ├── 2.png │ ├── 3.png │ ├── 4.png │ ├── 5.png │ ├── 6.png │ ├── 7.png │ ├── 8.png │ ├── 9.png │ ├── highlighting │ ├── LICENSE │ ├── README.md │ ├── README.ru.md │ ├── classref.txt │ ├── highlight.pack.js │ └── styles │ │ ├── arta.css │ │ ├── ascetic.css │ │ ├── brown_paper.css │ │ ├── brown_papersq.png │ │ ├── dark.css │ │ ├── default.css │ │ ├── far.css │ │ ├── github.css │ │ ├── googlecode.css │ │ ├── idea.css │ │ ├── ir_black.css │ │ ├── magula.css │ │ ├── monokai.css │ │ ├── pojoaque.css │ │ ├── pojoaque.jpg │ │ ├── rainbow.css │ │ ├── school_book.css │ │ ├── school_book.png │ │ ├── solarized_dark.css │ │ ├── solarized_light.css │ │ ├── sunburst.css │ │ ├── tomorrow-night-blue.css │ │ ├── tomorrow-night-bright.css │ │ ├── tomorrow-night-eighties.css │ │ ├── tomorrow-night.css │ │ ├── tomorrow.css │ │ ├── vs.css │ │ ├── xcode.css │ │ └── zenburn.css │ └── index.html ├── Project1 Image Filtering and Hybrid Images ├── READMe.md ├── code │ ├── __pycache__ │ │ ├── student_code.cpython-35.pyc │ │ └── utils.cpython-35.pyc │ ├── proj1.ipynb │ ├── proj1_test_filtering.ipynb │ ├── student_code.py │ └── utils.py ├── html │ ├── cut-offs │ │ ├── 1.jpg │ │ ├── 2.jpg │ │ └── 3.jpg │ ├── highlighting │ │ ├── LICENSE │ │ ├── README.md │ │ ├── README.ru.md │ │ ├── classref.txt │ │ ├── highlight.pack.js │ │ └── styles │ │ │ ├── arta.css │ │ │ ├── ascetic.css │ │ │ ├── brown_paper.css │ │ │ ├── brown_papersq.png │ │ │ ├── dark.css │ │ │ ├── default.css │ │ │ ├── far.css │ │ │ ├── github.css │ │ │ ├── googlecode.css │ │ │ ├── idea.css │ │ │ ├── ir_black.css │ │ │ ├── magula.css │ │ │ ├── monokai.css │ │ │ ├── pojoaque.css │ │ │ ├── pojoaque.jpg │ │ │ ├── rainbow.css │ │ │ ├── school_book.css │ │ │ ├── school_book.png │ │ │ ├── solarized_dark.css │ │ │ ├── solarized_light.css │ │ │ ├── sunburst.css │ │ │ ├── tomorrow-night-blue.css │ │ │ ├── tomorrow-night-bright.css │ │ │ ├── tomorrow-night-eighties.css │ │ │ ├── tomorrow-night.css │ │ │ ├── tomorrow.css │ │ │ ├── vs.css │ │ │ ├── xcode.css │ │ │ └── zenburn.css │ ├── hybrid_images │ │ ├── high1.jpg │ │ ├── high2.jpg │ │ ├── high3.jpg │ │ ├── high4.jpg │ │ ├── high5.jpg │ │ ├── hybrid1.jpg │ │ ├── hybrid2.jpg │ │ ├── hybrid3.jpg │ │ ├── hybrid4.jpg │ │ ├── hybrid5.jpg │ │ ├── low1.jpg │ │ ├── low2.jpg │ │ ├── low3.jpg │ │ ├── low4.jpg │ │ └── low5.jpg │ ├── image_filter │ │ ├── blur_image.jpg │ │ ├── high_pass_image.jpg │ │ ├── identity_image.jpg │ │ ├── laplacian_image.jpg │ │ ├── large_blur_image.jpg │ │ └── sobel_image.jpg │ ├── index.html │ ├── interchange │ │ ├── interchange_cat.jpg │ │ ├── interchange_dog.jpg │ │ └── interchange_hy.jpg │ └── paddings │ │ ├── 1 │ │ ├── blur_image.jpg │ │ ├── high_pass_image.jpg │ │ ├── identity_image.jpg │ │ ├── laplacian_image.jpg │ │ ├── large_blur_image.jpg │ │ └── sobel_image.jpg │ │ └── 2 │ │ ├── blur_image.jpg │ │ ├── high_pass_image.jpg │ │ ├── identity_image.jpg │ │ ├── laplacian_image.jpg │ │ ├── large_blur_image.jpg │ │ └── sobel_image.jpg └── results │ ├── Bird_Plane │ ├── high_frequencies.jpg │ ├── hybrid_image.jpg │ ├── hybrid_image_scales.jpg │ └── low_frequencies.jpg │ ├── Cat_Dog │ ├── high_frequencies.jpg │ ├── hybrid_image.jpg │ ├── hybrid_image_scales.jpg │ └── low_frequencies.jpg │ ├── Einstein_Marilyn │ ├── high_frequencies.jpg │ ├── hybrid_image.jpg │ ├── hybrid_image_scales.jpg │ └── low_frequencies.jpg │ ├── Fish_Submarine │ ├── high_frequencies.jpg │ ├── hybrid_image.jpg │ ├── hybrid_image_scales.jpg │ └── low_frequencies.jpg │ ├── Motor_Bicycle │ ├── high_frequencies.jpg │ ├── hybrid_image.jpg │ ├── hybrid_image_scales.jpg │ └── low_frequencies.jpg │ └── filtered_image_cat │ ├── blur_image.jpg │ ├── high_pass_image.jpg │ ├── identity_image.jpg │ ├── laplacian_image.jpg │ ├── large_blur_image.jpg │ └── sobel_image.jpg ├── Project2 Local Feature Matching ├── READMe.md ├── code │ ├── __pycache__ │ │ ├── student_feature_matching.cpython-35.pyc │ │ ├── student_harris.cpython-35.pyc │ │ ├── student_sift.cpython-35.pyc │ │ └── utils.cpython-35.pyc │ ├── proj2.ipynb │ ├── student_feature_matching.py │ ├── student_harris.py │ ├── student_sift.py │ └── utils.py └── html │ ├── 1 │ ├── cheat │ │ ├── 1.png │ │ ├── 2.png │ │ ├── eval.jpg │ │ ├── vis_circles.jpg │ │ └── vis_lines.jpg │ └── real │ │ ├── 1.png │ │ ├── 2.png │ │ ├── eval.jpg │ │ ├── vis_circles.jpg │ │ └── vis_lines.jpg │ ├── 2 │ └── real │ │ ├── 1.png │ │ ├── 2.png │ │ ├── eval.png │ │ ├── vis_circles.png │ │ └── vis_lines.png │ ├── 3 │ └── real │ │ ├── 1.png │ │ ├── 2.png │ │ ├── eval.jpg │ │ ├── vis_circles.jpg │ │ └── vis_lines.jpg │ ├── 4 │ ├── vis_circles.png │ └── vis_lines.png │ ├── 5 │ ├── vis_circles.jpg │ └── vis_lines.jpg │ ├── 6 │ ├── vis_circles.png │ └── vis_lines.png │ ├── highlighting │ ├── LICENSE │ ├── README.md │ ├── classref.txt │ ├── highlight.pack.js │ └── styles │ │ ├── arta.css │ │ ├── ascetic.css │ │ ├── brown_paper.css │ │ ├── brown_papersq.png │ │ ├── dark.css │ │ ├── default.css │ │ ├── far.css │ │ ├── github.css │ │ ├── googlecode.css │ │ ├── idea.css │ │ ├── ir_black.css │ │ ├── magula.css │ │ ├── monokai.css │ │ ├── pojoaque.css │ │ ├── pojoaque.jpg │ │ ├── rainbow.css │ │ ├── school_book.css │ │ ├── school_book.png │ │ ├── solarized_dark.css │ │ ├── solarized_light.css │ │ ├── sunburst.css │ │ ├── tomorrow-night-blue.css │ │ ├── tomorrow-night-bright.css │ │ ├── tomorrow-night-eighties.css │ │ ├── tomorrow-night.css │ │ ├── tomorrow.css │ │ ├── vs.css │ │ ├── xcode.css │ │ └── zenburn.css │ └── index.html ├── Project3 Camera Calibration and Fundamental Matrix Estimation with RANSAC ├── READMe.md ├── code │ ├── __pycache__ │ │ ├── student_code.cpython-35.pyc │ │ └── utils.cpython-35.pyc │ ├── proj3.ipynb │ ├── student_code.py │ └── utils.py └── html │ ├── 1.1.png │ ├── 1.2.png │ ├── 1.3.png │ ├── 1_1.png │ ├── 1_2.png │ ├── 1_3.png │ ├── 2.1.png │ ├── 2.2.png │ ├── 2.3.png │ ├── 2_1.png │ ├── 2_2.png │ ├── 2_3.png │ ├── 3.1.png │ ├── 3.2.png │ ├── 3.3.png │ ├── 3_1.png │ ├── 3_2.png │ ├── 3_3.png │ ├── 4.1.png │ ├── 4.2.png │ ├── 4.3.png │ ├── 4_1.png │ ├── 4_2.png │ ├── 4_3.png │ ├── F1.png │ ├── F2.png │ ├── F_1.png │ ├── F_2.png │ ├── cc.png │ ├── cc2.png │ ├── highlighting │ ├── LICENSE │ ├── README.md │ ├── README.ru.md │ ├── classref.txt │ ├── highlight.pack.js │ └── styles │ │ ├── arta.css │ │ ├── ascetic.css │ │ ├── brown_paper.css │ │ ├── brown_papersq.png │ │ ├── dark.css │ │ ├── default.css │ │ ├── far.css │ │ ├── github.css │ │ ├── googlecode.css │ │ ├── idea.css │ │ ├── ir_black.css │ │ ├── magula.css │ │ ├── monokai.css │ │ ├── pojoaque.css │ │ ├── pojoaque.jpg │ │ ├── rainbow.css │ │ ├── school_book.css │ │ ├── school_book.png │ │ ├── solarized_dark.css │ │ ├── solarized_light.css │ │ ├── sunburst.css │ │ ├── tomorrow-night-blue.css │ │ ├── tomorrow-night-bright.css │ │ ├── tomorrow-night-eighties.css │ │ ├── tomorrow-night.css │ │ ├── tomorrow.css │ │ ├── vs.css │ │ ├── xcode.css │ │ └── zenburn.css │ ├── index.html │ ├── placeholder.jpg │ ├── pm2.png │ ├── pm3.png │ └── projection_matrix.png ├── Project4 Scene recognition with bag of words ├── READMe.md ├── code │ ├── __init__.py │ ├── __pycache__ │ │ ├── student_code.cpython-35.pyc │ │ └── utils.cpython-35.pyc │ ├── proj4.ipynb │ ├── student_code.py │ ├── utils.py │ └── vocab.pkl └── html │ ├── 1.png │ ├── 10.png │ ├── 11.png │ ├── 12.png │ ├── 13.png │ ├── 14.png │ ├── 15.png │ ├── 16.png │ ├── 17.png │ ├── 18.png │ ├── 19.png │ ├── 2.png │ ├── 21.png │ ├── 22.png │ ├── 23.png │ ├── 24.png │ ├── 25.png │ ├── 26.png │ ├── 27.png │ ├── 28.png │ ├── 29.png │ ├── 3.png │ ├── 30.png │ ├── 4.png │ ├── 5.png │ ├── 6.png │ ├── 7.png │ ├── 8.png │ ├── 9.png │ ├── C.png │ ├── confusion_mt1.png │ ├── confusion_mt2.png │ ├── confusion_mt3.png │ ├── highlighting │ ├── LICENSE │ ├── README.md │ ├── README.ru.md │ ├── classref.txt │ ├── highlight.pack.js │ └── styles │ │ ├── arta.css │ │ ├── ascetic.css │ │ ├── brown_paper.css │ │ ├── brown_papersq.png │ │ ├── dark.css │ │ ├── default.css │ │ ├── far.css │ │ ├── github.css │ │ ├── googlecode.css │ │ ├── idea.css │ │ ├── ir_black.css │ │ ├── magula.css │ │ ├── monokai.css │ │ ├── pojoaque.css │ │ ├── pojoaque.jpg │ │ ├── rainbow.css │ │ ├── school_book.css │ │ ├── school_book.png │ │ ├── solarized_dark.css │ │ ├── solarized_light.css │ │ ├── sunburst.css │ │ ├── tomorrow-night-blue.css │ │ ├── tomorrow-night-bright.css │ │ ├── tomorrow-night-eighties.css │ │ ├── tomorrow-night.css │ │ ├── tomorrow.css │ │ ├── vs.css │ │ ├── xcode.css │ │ └── zenburn.css │ ├── index.html │ ├── tol.png │ └── vocab.png ├── Project5 Face detection with a sliding window ├── READMe.md ├── code │ ├── __pycache__ │ │ ├── student_code.cpython-35.pyc │ │ └── utils.cpython-35.pyc │ ├── student_code.py │ └── utils.py └── html │ ├── A1.png │ ├── A10.png │ ├── A11.png │ ├── A12.png │ ├── A13.png │ ├── A14.png │ ├── A15.png │ ├── A16.png │ ├── A17.png │ ├── A18.png │ ├── A19.png │ ├── A2.png │ ├── A20.png │ ├── A21.png │ ├── A22.png │ ├── A23.png │ ├── A3.png │ ├── A4.png │ ├── A5.png │ ├── A6.png │ ├── A7.png │ ├── A8.png │ ├── A9.png │ ├── HOG1.png │ ├── HOG2.png │ ├── accuracies.png │ ├── class.png │ ├── highlighting │ ├── LICENSE │ ├── README.md │ ├── README.ru.md │ ├── classref.txt │ ├── highlight.pack.js │ └── styles │ │ ├── arta.css │ │ ├── ascetic.css │ │ ├── brown_paper.css │ │ ├── brown_papersq.png │ │ ├── dark.css │ │ ├── default.css │ │ ├── far.css │ │ ├── github.css │ │ ├── googlecode.css │ │ ├── idea.css │ │ ├── ir_black.css │ │ ├── magula.css │ │ ├── monokai.css │ │ ├── pojoaque.css │ │ ├── pojoaque.jpg │ │ ├── rainbow.css │ │ ├── school_book.css │ │ ├── school_book.png │ │ ├── solarized_dark.css │ │ ├── solarized_light.css │ │ ├── sunburst.css │ │ ├── tomorrow-night-blue.css │ │ ├── tomorrow-night-bright.css │ │ ├── tomorrow-night-eighties.css │ │ ├── tomorrow-night.css │ │ ├── tomorrow.css │ │ ├── vs.css │ │ ├── xcode.css │ │ └── zenburn.css │ └── index.html └── README.md /Deep Learning/READMe.md: -------------------------------------------------------------------------------- 1 | # CS 6476 project 6: [Deep Learning](https://www.cc.gatech.edu/~hays/compvision/proj6/) 2 | 3 | # Setup 4 | - Install [Miniconda](https://conda.io/miniconda). It doesn't matter whether you use 2.7 or 3.6 because we will create our own environment anyways. 5 | - Create a conda environment, using the appropriate command. On Windows, open the installed "Conda prompt" to run this command. On MacOS and Linux, you can just use a terminal window to run the command. Modify the command based on your OS ('linux', 'mac', or 'win'): `conda env create -f environment_.yml` 6 | - This should create an environment named `cs6476p6`. Activate it using the following Windows command: `activate cs6476p6` or the following MacOS / Linux command: `source activate cs6476p6`. 7 | - Run the notebook using: `jupyter notebook ./code/proj6.ipynb` 8 | - Generate the submission once you're finished using `python zip_submission.py` 9 | 10 | For this project, I didn't implement any extra credit, just simply run the code through your notebook. 11 | 12 | #### 13 | I used 1 slip day in this project. 14 | -------------------------------------------------------------------------------- /Deep Learning/code/__pycache__/student_code.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Deep Learning/code/__pycache__/student_code.cpython-35.pyc -------------------------------------------------------------------------------- /Deep Learning/code/__pycache__/utils.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Deep Learning/code/__pycache__/utils.cpython-35.pyc -------------------------------------------------------------------------------- /Deep Learning/code/logs/part1/best_model.pth.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Deep Learning/code/logs/part1/best_model.pth.tar -------------------------------------------------------------------------------- /Deep Learning/code/logs/part1/checkpoint.pth.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Deep Learning/code/logs/part1/checkpoint.pth.tar -------------------------------------------------------------------------------- /Deep Learning/html/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Deep Learning/html/1.png -------------------------------------------------------------------------------- /Deep Learning/html/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Deep Learning/html/10.png -------------------------------------------------------------------------------- /Deep Learning/html/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Deep Learning/html/11.png -------------------------------------------------------------------------------- /Deep Learning/html/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Deep Learning/html/12.png -------------------------------------------------------------------------------- /Deep Learning/html/13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Deep Learning/html/13.png -------------------------------------------------------------------------------- /Deep Learning/html/14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Deep Learning/html/14.png -------------------------------------------------------------------------------- /Deep Learning/html/15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Deep Learning/html/15.png -------------------------------------------------------------------------------- /Deep Learning/html/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Deep Learning/html/16.png -------------------------------------------------------------------------------- /Deep Learning/html/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Deep Learning/html/2.png -------------------------------------------------------------------------------- /Deep Learning/html/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Deep Learning/html/3.png -------------------------------------------------------------------------------- /Deep Learning/html/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Deep Learning/html/4.png -------------------------------------------------------------------------------- /Deep Learning/html/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Deep Learning/html/5.png -------------------------------------------------------------------------------- /Deep Learning/html/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Deep Learning/html/6.png -------------------------------------------------------------------------------- /Deep Learning/html/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Deep Learning/html/7.png -------------------------------------------------------------------------------- /Deep Learning/html/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Deep Learning/html/8.png -------------------------------------------------------------------------------- /Deep Learning/html/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Deep Learning/html/9.png -------------------------------------------------------------------------------- /Deep Learning/html/highlighting/LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (c) 2006, Ivan Sagalaev 2 | All rights reserved. 3 | Redistribution and use in source and binary forms, with or without 4 | modification, are permitted provided that the following conditions are met: 5 | 6 | * Redistributions of source code must retain the above copyright 7 | notice, this list of conditions and the following disclaimer. 8 | * Redistributions in binary form must reproduce the above copyright 9 | notice, this list of conditions and the following disclaimer in the 10 | documentation and/or other materials provided with the distribution. 11 | * Neither the name of highlight.js nor the names of its contributors 12 | may be used to endorse or promote products derived from this software 13 | without specific prior written permission. 14 | 15 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND ANY 16 | EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED 17 | WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE 18 | DISCLAIMED. IN NO EVENT SHALL THE REGENTS AND CONTRIBUTORS BE LIABLE FOR ANY 19 | DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES 20 | (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; 21 | LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND 22 | ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 23 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS 24 | SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 25 | -------------------------------------------------------------------------------- /Deep Learning/html/highlighting/styles/ascetic.css: -------------------------------------------------------------------------------- 1 | /* 2 | 3 | Original style from softwaremaniacs.org (c) Ivan Sagalaev 4 | 5 | */ 6 | 7 | pre code { 8 | display: block; padding: 0.5em; 9 | background: white; color: black; 10 | } 11 | 12 | pre .string, 13 | pre .tag .value, 14 | pre .filter .argument, 15 | pre .addition, 16 | pre .change, 17 | pre .apache .tag, 18 | pre .apache .cbracket, 19 | pre .nginx .built_in, 20 | pre .tex .formula { 21 | color: #888; 22 | } 23 | 24 | pre .comment, 25 | pre .template_comment, 26 | pre .shebang, 27 | pre .doctype, 28 | pre .pi, 29 | pre .javadoc, 30 | pre .deletion, 31 | pre .apache .sqbracket { 32 | color: #CCC; 33 | } 34 | 35 | pre .keyword, 36 | pre .tag .title, 37 | pre .ini .title, 38 | pre .lisp .title, 39 | pre .clojure .title, 40 | pre .http .title, 41 | pre .nginx .title, 42 | pre .css .tag, 43 | pre .winutils, 44 | pre .flow, 45 | pre .apache .tag, 46 | pre .tex .command, 47 | pre .request, 48 | pre .status { 49 | font-weight: bold; 50 | } 51 | -------------------------------------------------------------------------------- /Deep Learning/html/highlighting/styles/brown_papersq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Deep Learning/html/highlighting/styles/brown_papersq.png -------------------------------------------------------------------------------- /Deep Learning/html/highlighting/styles/ir_black.css: -------------------------------------------------------------------------------- 1 | /* 2 | IR_Black style (c) Vasily Mikhailitchenko 3 | */ 4 | 5 | pre code { 6 | display: block; padding: 0.5em; 7 | background: #000; color: #f8f8f8; 8 | } 9 | 10 | pre .shebang, 11 | pre .comment, 12 | pre .template_comment, 13 | pre .javadoc { 14 | color: #7c7c7c; 15 | } 16 | 17 | pre .keyword, 18 | pre .tag, 19 | pre .tex .command, 20 | pre .request, 21 | pre .status, 22 | pre .clojure .attribute { 23 | color: #96CBFE; 24 | } 25 | 26 | pre .sub .keyword, 27 | pre .method, 28 | pre .list .title, 29 | pre .nginx .title { 30 | color: #FFFFB6; 31 | } 32 | 33 | pre .string, 34 | pre .tag .value, 35 | pre .cdata, 36 | pre .filter .argument, 37 | pre .attr_selector, 38 | pre .apache .cbracket, 39 | pre .date { 40 | color: #A8FF60; 41 | } 42 | 43 | pre .subst { 44 | color: #DAEFA3; 45 | } 46 | 47 | pre .regexp { 48 | color: #E9C062; 49 | } 50 | 51 | pre .title, 52 | pre .sub .identifier, 53 | pre .pi, 54 | pre .decorator, 55 | pre .tex .special, 56 | pre .haskell .type, 57 | pre .constant, 58 | pre .smalltalk .class, 59 | pre .javadoctag, 60 | pre .yardoctag, 61 | pre .phpdoc, 62 | pre .nginx .built_in { 63 | color: #FFFFB6; 64 | } 65 | 66 | pre .symbol, 67 | pre .ruby .symbol .string, 68 | pre .number, 69 | pre .variable, 70 | pre .vbscript, 71 | pre .literal { 72 | color: #C6C5FE; 73 | } 74 | 75 | pre .css .tag { 76 | color: #96CBFE; 77 | } 78 | 79 | pre .css .rules .property, 80 | pre .css .id { 81 | color: #FFFFB6; 82 | } 83 | 84 | pre .css .class { 85 | color: #FFF; 86 | } 87 | 88 | pre .hexcolor { 89 | color: #C6C5FE; 90 | } 91 | 92 | pre .number { 93 | color:#FF73FD; 94 | } 95 | 96 | pre .coffeescript .javascript, 97 | pre .javascript .xml, 98 | pre .tex .formula, 99 | pre .xml .javascript, 100 | pre .xml .vbscript, 101 | pre .xml .css, 102 | pre .xml .cdata { 103 | opacity: 0.7; 104 | } 105 | -------------------------------------------------------------------------------- /Deep Learning/html/highlighting/styles/pojoaque.css: -------------------------------------------------------------------------------- 1 | /* 2 | 3 | Pojoaque Style by Jason Tate 4 | http://web-cms-designs.com/ftopict-10-pojoaque-style-for-highlight-js-code-highlighter.html 5 | Based on Solarized Style from http://ethanschoonover.com/solarized 6 | 7 | */ 8 | 9 | pre code { 10 | display: block; padding: 0.5em; 11 | color: #DCCF8F; 12 | background: url(./pojoaque.jpg) repeat scroll left top #181914; 13 | } 14 | 15 | pre .comment, 16 | pre .template_comment, 17 | pre .diff .header, 18 | pre .doctype, 19 | pre .lisp .string, 20 | pre .javadoc { 21 | color: #586e75; 22 | font-style: italic; 23 | } 24 | 25 | pre .keyword, 26 | pre .css .rule .keyword, 27 | pre .winutils, 28 | pre .javascript .title, 29 | pre .method, 30 | pre .addition, 31 | pre .css .tag, 32 | pre .clojure .title, 33 | pre .nginx .title { 34 | color: #B64926; 35 | } 36 | 37 | pre .number, 38 | pre .command, 39 | pre .string, 40 | pre .tag .value, 41 | pre .phpdoc, 42 | pre .tex .formula, 43 | pre .regexp, 44 | pre .hexcolor { 45 | color: #468966; 46 | } 47 | 48 | pre .title, 49 | pre .localvars, 50 | pre .function .title, 51 | pre .chunk, 52 | pre .decorator, 53 | pre .built_in, 54 | pre .lisp .title, 55 | pre .clojure .built_in, 56 | pre .identifier, 57 | pre .id { 58 | color: #FFB03B; 59 | } 60 | 61 | pre .attribute, 62 | pre .variable, 63 | pre .lisp .body, 64 | pre .smalltalk .number, 65 | pre .constant, 66 | pre .class .title, 67 | pre .parent, 68 | pre .haskell .type { 69 | color: #b58900; 70 | } 71 | 72 | pre .css .attribute { 73 | color: #b89859; 74 | } 75 | 76 | pre .css .number,pre .css .hexcolor{ 77 | color: #DCCF8F; 78 | } 79 | 80 | pre .css .class { 81 | color: #d3a60c; 82 | } 83 | 84 | pre .preprocessor, 85 | pre .pi, 86 | pre .shebang, 87 | pre .symbol, 88 | pre .symbol .string, 89 | pre .diff .change, 90 | pre .special, 91 | pre .attr_selector, 92 | pre .important, 93 | pre .subst, 94 | pre .cdata { 95 | color: #cb4b16; 96 | } 97 | 98 | pre .deletion { 99 | color: #dc322f; 100 | } 101 | 102 | pre .tex .formula { 103 | background: #073642; 104 | } 105 | -------------------------------------------------------------------------------- /Deep Learning/html/highlighting/styles/pojoaque.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Deep Learning/html/highlighting/styles/pojoaque.jpg -------------------------------------------------------------------------------- /Deep Learning/html/highlighting/styles/school_book.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Deep Learning/html/highlighting/styles/school_book.png -------------------------------------------------------------------------------- /Deep Learning/html/highlighting/styles/solarized_dark.css: -------------------------------------------------------------------------------- 1 | /* 2 | 3 | Orginal Style from ethanschoonover.com/solarized (c) Jeremy Hull 4 | 5 | */ 6 | 7 | pre code { 8 | display: block; padding: 0.5em; 9 | background: #002b36; color: #839496; 10 | } 11 | 12 | pre .comment, 13 | pre .template_comment, 14 | pre .diff .header, 15 | pre .doctype, 16 | pre .pi, 17 | pre .lisp .string, 18 | pre .javadoc { 19 | color: #586e75; 20 | font-style: italic; 21 | } 22 | 23 | pre .keyword, 24 | pre .winutils, 25 | pre .method, 26 | pre .addition, 27 | pre .css .tag, 28 | pre .request, 29 | pre .status, 30 | pre .nginx .title { 31 | color: #859900; 32 | } 33 | 34 | pre .number, 35 | pre .command, 36 | pre .string, 37 | pre .tag .value, 38 | pre .phpdoc, 39 | pre .tex .formula, 40 | pre .regexp, 41 | pre .hexcolor { 42 | color: #2aa198; 43 | } 44 | 45 | pre .title, 46 | pre .localvars, 47 | pre .chunk, 48 | pre .decorator, 49 | pre .built_in, 50 | pre .identifier, 51 | pre .vhdl .literal, 52 | pre .id { 53 | color: #268bd2; 54 | } 55 | 56 | pre .attribute, 57 | pre .variable, 58 | pre .lisp .body, 59 | pre .smalltalk .number, 60 | pre .constant, 61 | pre .class .title, 62 | pre .parent, 63 | pre .haskell .type { 64 | color: #b58900; 65 | } 66 | 67 | pre .preprocessor, 68 | pre .preprocessor .keyword, 69 | pre .shebang, 70 | pre .symbol, 71 | pre .symbol .string, 72 | pre .diff .change, 73 | pre .special, 74 | pre .attr_selector, 75 | pre .important, 76 | pre .subst, 77 | pre .cdata, 78 | pre .clojure .title { 79 | color: #cb4b16; 80 | } 81 | 82 | pre .deletion { 83 | color: #dc322f; 84 | } 85 | 86 | pre .tex .formula { 87 | background: #073642; 88 | } 89 | -------------------------------------------------------------------------------- /Deep Learning/html/highlighting/styles/solarized_light.css: -------------------------------------------------------------------------------- 1 | /* 2 | 3 | Orginal Style from ethanschoonover.com/solarized (c) Jeremy Hull 4 | 5 | */ 6 | 7 | pre code { 8 | display: block; padding: 0.5em; 9 | background: #fdf6e3; color: #657b83; 10 | } 11 | 12 | pre .comment, 13 | pre .template_comment, 14 | pre .diff .header, 15 | pre .doctype, 16 | pre .pi, 17 | pre .lisp .string, 18 | pre .javadoc { 19 | color: #93a1a1; 20 | font-style: italic; 21 | } 22 | 23 | pre .keyword, 24 | pre .winutils, 25 | pre .method, 26 | pre .addition, 27 | pre .css .tag, 28 | pre .request, 29 | pre .status, 30 | pre .nginx .title { 31 | color: #859900; 32 | } 33 | 34 | pre .number, 35 | pre .command, 36 | pre .string, 37 | pre .tag .value, 38 | pre .phpdoc, 39 | pre .tex .formula, 40 | pre .regexp, 41 | pre .hexcolor { 42 | color: #2aa198; 43 | } 44 | 45 | pre .title, 46 | pre .localvars, 47 | pre .chunk, 48 | pre .decorator, 49 | pre .built_in, 50 | pre .identifier, 51 | pre .vhdl .literal, 52 | pre .id { 53 | color: #268bd2; 54 | } 55 | 56 | pre .attribute, 57 | pre .variable, 58 | pre .lisp .body, 59 | pre .smalltalk .number, 60 | pre .constant, 61 | pre .class .title, 62 | pre .parent, 63 | pre .haskell .type { 64 | color: #b58900; 65 | } 66 | 67 | pre .preprocessor, 68 | pre .preprocessor .keyword, 69 | pre .shebang, 70 | pre .symbol, 71 | pre .symbol .string, 72 | pre .diff .change, 73 | pre .special, 74 | pre .attr_selector, 75 | pre .important, 76 | pre .subst, 77 | pre .cdata, 78 | pre .clojure .title { 79 | color: #cb4b16; 80 | } 81 | 82 | pre .deletion { 83 | color: #dc322f; 84 | } 85 | 86 | pre .tex .formula { 87 | background: #eee8d5; 88 | } 89 | -------------------------------------------------------------------------------- /Deep Learning/html/highlighting/styles/tomorrow-night-blue.css: -------------------------------------------------------------------------------- 1 | /* Tomorrow Night Blue Theme */ 2 | /* http://jmblog.github.com/color-themes-for-google-code-highlightjs */ 3 | /* Original theme - https://github.com/chriskempson/tomorrow-theme */ 4 | /* http://jmblog.github.com/color-themes-for-google-code-highlightjs */ 5 | .tomorrow-comment, pre .comment, pre .title { 6 | color: #7285b7; 7 | } 8 | 9 | .tomorrow-red, pre .variable, pre .attribute, pre .tag, pre .regexp, pre .ruby .constant, pre .xml .tag .title, pre .xml .pi, pre .xml .doctype, pre .html .doctype, pre .css .id, pre .css .class, pre .css .pseudo { 10 | color: #ff9da4; 11 | } 12 | 13 | .tomorrow-orange, pre .number, pre .preprocessor, pre .built_in, pre .literal, pre .params, pre .constant { 14 | color: #ffc58f; 15 | } 16 | 17 | .tomorrow-yellow, pre .class, pre .ruby .class .title, pre .css .rules .attribute { 18 | color: #ffeead; 19 | } 20 | 21 | .tomorrow-green, pre .string, pre .value, pre .inheritance, pre .header, pre .ruby .symbol, pre .xml .cdata { 22 | color: #d1f1a9; 23 | } 24 | 25 | .tomorrow-aqua, pre .css .hexcolor { 26 | color: #99ffff; 27 | } 28 | 29 | .tomorrow-blue, pre .function, pre .python .decorator, pre .python .title, pre .ruby .function .title, pre .ruby .title .keyword, pre .perl .sub, pre .javascript .title, pre .coffeescript .title { 30 | color: #bbdaff; 31 | } 32 | 33 | .tomorrow-purple, pre .keyword, pre .javascript .function { 34 | color: #ebbbff; 35 | } 36 | 37 | pre code { 38 | display: block; 39 | background: #002451; 40 | color: white; 41 | padding: 0.5em; 42 | } 43 | 44 | pre .coffeescript .javascript, 45 | pre .javascript .xml, 46 | pre .tex .formula, 47 | pre .xml .javascript, 48 | pre .xml .vbscript, 49 | pre .xml .css, 50 | pre .xml .cdata { 51 | opacity: 0.5; 52 | } 53 | -------------------------------------------------------------------------------- /Deep Learning/html/highlighting/styles/tomorrow-night-bright.css: -------------------------------------------------------------------------------- 1 | /* Tomorrow Night Bright Theme */ 2 | /* Original theme - https://github.com/chriskempson/tomorrow-theme */ 3 | /* http://jmblog.github.com/color-themes-for-google-code-highlightjs */ 4 | .tomorrow-comment, pre .comment, pre .title { 5 | color: #969896; 6 | } 7 | 8 | .tomorrow-red, pre .variable, pre .attribute, pre .tag, pre .regexp, pre .ruby .constant, pre .xml .tag .title, pre .xml .pi, pre .xml .doctype, pre .html .doctype, pre .css .id, pre .css .class, pre .css .pseudo { 9 | color: #d54e53; 10 | } 11 | 12 | .tomorrow-orange, pre .number, pre .preprocessor, pre .built_in, pre .literal, pre .params, pre .constant { 13 | color: #e78c45; 14 | } 15 | 16 | .tomorrow-yellow, pre .class, pre .ruby .class .title, pre .css .rules .attribute { 17 | color: #e7c547; 18 | } 19 | 20 | .tomorrow-green, pre .string, pre .value, pre .inheritance, pre .header, pre .ruby .symbol, pre .xml .cdata { 21 | color: #b9ca4a; 22 | } 23 | 24 | .tomorrow-aqua, pre .css .hexcolor { 25 | color: #70c0b1; 26 | } 27 | 28 | .tomorrow-blue, pre .function, pre .python .decorator, pre .python .title, pre .ruby .function .title, pre .ruby .title .keyword, pre .perl .sub, pre .javascript .title, pre .coffeescript .title { 29 | color: #7aa6da; 30 | } 31 | 32 | .tomorrow-purple, pre .keyword, pre .javascript .function { 33 | color: #c397d8; 34 | } 35 | 36 | pre code { 37 | display: block; 38 | background: black; 39 | color: #eaeaea; 40 | padding: 0.5em; 41 | } 42 | 43 | pre .coffeescript .javascript, 44 | pre .javascript .xml, 45 | pre .tex .formula, 46 | pre .xml .javascript, 47 | pre .xml .vbscript, 48 | pre .xml .css, 49 | pre .xml .cdata { 50 | opacity: 0.5; 51 | } 52 | -------------------------------------------------------------------------------- /Deep Learning/html/highlighting/styles/tomorrow-night-eighties.css: -------------------------------------------------------------------------------- 1 | /* Tomorrow Night Eighties Theme */ 2 | /* Original theme - https://github.com/chriskempson/tomorrow-theme */ 3 | /* http://jmblog.github.com/color-themes-for-google-code-highlightjs */ 4 | .tomorrow-comment, pre .comment, pre .title { 5 | color: #999999; 6 | } 7 | 8 | .tomorrow-red, pre .variable, pre .attribute, pre .tag, pre .regexp, pre .ruby .constant, pre .xml .tag .title, pre .xml .pi, pre .xml .doctype, pre .html .doctype, pre .css .id, pre .css .class, pre .css .pseudo { 9 | color: #f2777a; 10 | } 11 | 12 | .tomorrow-orange, pre .number, pre .preprocessor, pre .built_in, pre .literal, pre .params, pre .constant { 13 | color: #f99157; 14 | } 15 | 16 | .tomorrow-yellow, pre .class, pre .ruby .class .title, pre .css .rules .attribute { 17 | color: #ffcc66; 18 | } 19 | 20 | .tomorrow-green, pre .string, pre .value, pre .inheritance, pre .header, pre .ruby .symbol, pre .xml .cdata { 21 | color: #99cc99; 22 | } 23 | 24 | .tomorrow-aqua, pre .css .hexcolor { 25 | color: #66cccc; 26 | } 27 | 28 | .tomorrow-blue, pre .function, pre .python .decorator, pre .python .title, pre .ruby .function .title, pre .ruby .title .keyword, pre .perl .sub, pre .javascript .title, pre .coffeescript .title { 29 | color: #6699cc; 30 | } 31 | 32 | .tomorrow-purple, pre .keyword, pre .javascript .function { 33 | color: #cc99cc; 34 | } 35 | 36 | pre code { 37 | display: block; 38 | background: #2d2d2d; 39 | color: #cccccc; 40 | padding: 0.5em; 41 | } 42 | 43 | pre .coffeescript .javascript, 44 | pre .javascript .xml, 45 | pre .tex .formula, 46 | pre .xml .javascript, 47 | pre .xml .vbscript, 48 | pre .xml .css, 49 | pre .xml .cdata { 50 | opacity: 0.5; 51 | } 52 | -------------------------------------------------------------------------------- /Deep Learning/html/highlighting/styles/tomorrow-night.css: -------------------------------------------------------------------------------- 1 | /* Tomorrow Night Theme */ 2 | /* http://jmblog.github.com/color-themes-for-google-code-highlightjs */ 3 | /* Original theme - https://github.com/chriskempson/tomorrow-theme */ 4 | /* http://jmblog.github.com/color-themes-for-google-code-highlightjs */ 5 | .tomorrow-comment, pre .comment, pre .title { 6 | color: #969896; 7 | } 8 | 9 | .tomorrow-red, pre .variable, pre .attribute, pre .tag, pre .regexp, pre .ruby .constant, pre .xml .tag .title, pre .xml .pi, pre .xml .doctype, pre .html .doctype, pre .css .id, pre .css .class, pre .css .pseudo { 10 | color: #cc6666; 11 | } 12 | 13 | .tomorrow-orange, pre .number, pre .preprocessor, pre .built_in, pre .literal, pre .params, pre .constant { 14 | color: #de935f; 15 | } 16 | 17 | .tomorrow-yellow, pre .class, pre .ruby .class .title, pre .css .rules .attribute { 18 | color: #f0c674; 19 | } 20 | 21 | .tomorrow-green, pre .string, pre .value, pre .inheritance, pre .header, pre .ruby .symbol, pre .xml .cdata { 22 | color: #b5bd68; 23 | } 24 | 25 | .tomorrow-aqua, pre .css .hexcolor { 26 | color: #8abeb7; 27 | } 28 | 29 | .tomorrow-blue, pre .function, pre .python .decorator, pre .python .title, pre .ruby .function .title, pre .ruby .title .keyword, pre .perl .sub, pre .javascript .title, pre .coffeescript .title { 30 | color: #81a2be; 31 | } 32 | 33 | .tomorrow-purple, pre .keyword, pre .javascript .function { 34 | color: #b294bb; 35 | } 36 | 37 | pre code { 38 | display: block; 39 | background: #1d1f21; 40 | color: #c5c8c6; 41 | padding: 0.5em; 42 | } 43 | 44 | pre .coffeescript .javascript, 45 | pre .javascript .xml, 46 | pre .tex .formula, 47 | pre .xml .javascript, 48 | pre .xml .vbscript, 49 | pre .xml .css, 50 | pre .xml .cdata { 51 | opacity: 0.5; 52 | } 53 | -------------------------------------------------------------------------------- /Deep Learning/html/highlighting/styles/tomorrow.css: -------------------------------------------------------------------------------- 1 | /* http://jmblog.github.com/color-themes-for-google-code-highlightjs */ 2 | .tomorrow-comment, pre .comment, pre .title { 3 | color: #8e908c; 4 | } 5 | 6 | .tomorrow-red, pre .variable, pre .attribute, pre .tag, pre .regexp, pre .ruby .constant, pre .xml .tag .title, pre .xml .pi, pre .xml .doctype, pre .html .doctype, pre .css .id, pre .css .class, pre .css .pseudo { 7 | color: #c82829; 8 | } 9 | 10 | .tomorrow-orange, pre .number, pre .preprocessor, pre .built_in, pre .literal, pre .params, pre .constant { 11 | color: #f5871f; 12 | } 13 | 14 | .tomorrow-yellow, pre .class, pre .ruby .class .title, pre .css .rules .attribute { 15 | color: #eab700; 16 | } 17 | 18 | .tomorrow-green, pre .string, pre .value, pre .inheritance, pre .header, pre .ruby .symbol, pre .xml .cdata { 19 | color: #718c00; 20 | } 21 | 22 | .tomorrow-aqua, pre .css .hexcolor { 23 | color: #3e999f; 24 | } 25 | 26 | .tomorrow-blue, pre .function, pre .python .decorator, pre .python .title, pre .ruby .function .title, pre .ruby .title .keyword, pre .perl .sub, pre .javascript .title, pre .coffeescript .title { 27 | color: #4271ae; 28 | } 29 | 30 | .tomorrow-purple, pre .keyword, pre .javascript .function { 31 | color: #8959a8; 32 | } 33 | 34 | pre code { 35 | display: block; 36 | background: white; 37 | color: #4d4d4c; 38 | padding: 0.5em; 39 | } 40 | 41 | pre .coffeescript .javascript, 42 | pre .javascript .xml, 43 | pre .tex .formula, 44 | pre .xml .javascript, 45 | pre .xml .vbscript, 46 | pre .xml .css, 47 | pre .xml .cdata { 48 | opacity: 0.5; 49 | } 50 | -------------------------------------------------------------------------------- /Deep Learning/html/highlighting/styles/vs.css: -------------------------------------------------------------------------------- 1 | /* 2 | 3 | Visual Studio-like style based on original C# coloring by Jason Diamond 4 | 5 | */ 6 | pre code { 7 | display: block; padding: 0.5em; 8 | } 9 | 10 | pre .comment, 11 | pre .annotation, 12 | pre .template_comment, 13 | pre .diff .header, 14 | pre .chunk, 15 | pre .apache .cbracket { 16 | color: rgb(0, 128, 0); 17 | } 18 | 19 | pre .keyword, 20 | pre .id, 21 | pre .built_in, 22 | pre .smalltalk .class, 23 | pre .winutils, 24 | pre .bash .variable, 25 | pre .tex .command, 26 | pre .request, 27 | pre .status, 28 | pre .nginx .title, 29 | pre .xml .tag, 30 | pre .xml .tag .value { 31 | color: rgb(0, 0, 255); 32 | } 33 | 34 | pre .string, 35 | pre .title, 36 | pre .parent, 37 | pre .tag .value, 38 | pre .rules .value, 39 | pre .rules .value .number, 40 | pre .ruby .symbol, 41 | pre .ruby .symbol .string, 42 | pre .aggregate, 43 | pre .template_tag, 44 | pre .django .variable, 45 | pre .addition, 46 | pre .flow, 47 | pre .stream, 48 | pre .apache .tag, 49 | pre .date, 50 | pre .tex .formula { 51 | color: rgb(163, 21, 21); 52 | } 53 | 54 | pre .ruby .string, 55 | pre .decorator, 56 | pre .filter .argument, 57 | pre .localvars, 58 | pre .array, 59 | pre .attr_selector, 60 | pre .pseudo, 61 | pre .pi, 62 | pre .doctype, 63 | pre .deletion, 64 | pre .envvar, 65 | pre .shebang, 66 | pre .preprocessor, 67 | pre .userType, 68 | pre .apache .sqbracket, 69 | pre .nginx .built_in, 70 | pre .tex .special, 71 | pre .prompt { 72 | color: rgb(43, 145, 175); 73 | } 74 | 75 | pre .phpdoc, 76 | pre .javadoc, 77 | pre .xmlDocTag { 78 | color: rgb(128, 128, 128); 79 | } 80 | 81 | pre .vhdl .typename { font-weight: bold; } 82 | pre .vhdl .string { color: #666666; } 83 | pre .vhdl .literal { color: rgb(163, 21, 21); } 84 | pre .vhdl .attribute { color: #00B0E8; } 85 | 86 | pre .xml .attribute { color: rgb(255, 0, 0); } 87 | -------------------------------------------------------------------------------- /Project1 Image Filtering and Hybrid Images/READMe.md: -------------------------------------------------------------------------------- 1 | Project1 Image Filtering and Hybrid Images 2 | 3 | In this project, I implemented different image filtering algorithms and created Hybrid images through simple add operations in two images. 4 | -------------------------------------------------------------------------------- /Project1 Image Filtering and Hybrid Images/code/__pycache__/student_code.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project1 Image Filtering and Hybrid Images/code/__pycache__/student_code.cpython-35.pyc -------------------------------------------------------------------------------- /Project1 Image Filtering and Hybrid Images/code/__pycache__/utils.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project1 Image Filtering and Hybrid Images/code/__pycache__/utils.cpython-35.pyc -------------------------------------------------------------------------------- /Project1 Image Filtering and Hybrid Images/code/utils.py: -------------------------------------------------------------------------------- 1 | import cv2 2 | import numpy as np 3 | 4 | def vis_hybrid_image(hybrid_image): 5 | scales = 5 6 | scale_factor = 0.5 7 | padding = 5 8 | original_height = hybrid_image.shape[0] 9 | num_colors = 1 if hybrid_image.ndim == 2 else 3 10 | 11 | output = np.copy(hybrid_image) 12 | cur_image = np.copy(hybrid_image) 13 | for scale in range(2, scales+1): 14 | # add padding 15 | output = np.hstack((output, np.ones((original_height, padding, num_colors), 16 | dtype=np.float32))) 17 | 18 | # downsample image 19 | cur_image = cv2.resize(cur_image, (0, 0), fx=scale_factor, fy=scale_factor) 20 | 21 | # pad the top to append to the output 22 | pad = np.ones((original_height-cur_image.shape[0], cur_image.shape[1], 23 | num_colors), dtype=np.float32) 24 | tmp = np.vstack((pad, cur_image)) 25 | output = np.hstack((output, tmp)) 26 | 27 | return output 28 | 29 | def im2single(im): 30 | im = im.astype(np.float32) / 255 31 | return im 32 | 33 | def single2im(im): 34 | im *= 255 35 | im = im.astype(np.uint8) 36 | return im 37 | 38 | def load_image(path): 39 | return im2single(cv2.imread(path))[:, :, ::-1] 40 | 41 | def save_image(path, im): 42 | return cv2.imwrite(path, single2im(im.copy())[:, :, ::-1]) 43 | -------------------------------------------------------------------------------- /Project1 Image Filtering and Hybrid Images/html/cut-offs/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project1 Image Filtering and Hybrid Images/html/cut-offs/1.jpg -------------------------------------------------------------------------------- /Project1 Image Filtering and Hybrid Images/html/cut-offs/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project1 Image Filtering and Hybrid Images/html/cut-offs/2.jpg -------------------------------------------------------------------------------- /Project1 Image Filtering and Hybrid Images/html/cut-offs/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project1 Image Filtering and Hybrid Images/html/cut-offs/3.jpg -------------------------------------------------------------------------------- /Project1 Image Filtering and Hybrid Images/html/highlighting/LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (c) 2006, Ivan Sagalaev 2 | All rights reserved. 3 | Redistribution and use in source and binary forms, with or without 4 | modification, are permitted provided that the following conditions are met: 5 | 6 | * Redistributions of source code must retain the above copyright 7 | notice, this list of conditions and the following disclaimer. 8 | * Redistributions in binary form must reproduce the above copyright 9 | notice, this list of conditions and the following disclaimer in the 10 | documentation and/or other materials provided with the distribution. 11 | * Neither the name of highlight.js nor the names of its contributors 12 | may be used to endorse or promote products derived from this software 13 | without specific prior written permission. 14 | 15 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND ANY 16 | EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED 17 | WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE 18 | DISCLAIMED. IN NO EVENT SHALL THE REGENTS AND CONTRIBUTORS BE LIABLE FOR ANY 19 | DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES 20 | (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; 21 | LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND 22 | ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 23 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS 24 | SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 25 | -------------------------------------------------------------------------------- /Project1 Image Filtering and Hybrid Images/html/highlighting/styles/ascetic.css: -------------------------------------------------------------------------------- 1 | /* 2 | 3 | Original style from softwaremaniacs.org (c) Ivan Sagalaev 4 | 5 | */ 6 | 7 | pre code { 8 | display: block; padding: 0.5em; 9 | background: white; color: black; 10 | } 11 | 12 | pre .string, 13 | pre .tag .value, 14 | pre .filter .argument, 15 | pre .addition, 16 | pre .change, 17 | pre .apache .tag, 18 | pre .apache .cbracket, 19 | pre .nginx .built_in, 20 | pre .tex .formula { 21 | color: #888; 22 | } 23 | 24 | pre .comment, 25 | pre .template_comment, 26 | pre .shebang, 27 | pre .doctype, 28 | pre .pi, 29 | pre .javadoc, 30 | pre .deletion, 31 | pre .apache .sqbracket { 32 | color: #CCC; 33 | } 34 | 35 | pre .keyword, 36 | pre .tag .title, 37 | pre .ini .title, 38 | pre .lisp .title, 39 | pre .clojure .title, 40 | pre .http .title, 41 | pre .nginx .title, 42 | pre .css .tag, 43 | pre .winutils, 44 | pre .flow, 45 | pre .apache .tag, 46 | pre .tex .command, 47 | pre .request, 48 | pre .status { 49 | font-weight: bold; 50 | } 51 | -------------------------------------------------------------------------------- /Project1 Image Filtering and Hybrid Images/html/highlighting/styles/brown_papersq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project1 Image Filtering and Hybrid Images/html/highlighting/styles/brown_papersq.png -------------------------------------------------------------------------------- /Project1 Image Filtering and Hybrid Images/html/highlighting/styles/ir_black.css: -------------------------------------------------------------------------------- 1 | /* 2 | IR_Black style (c) Vasily Mikhailitchenko 3 | */ 4 | 5 | pre code { 6 | display: block; padding: 0.5em; 7 | background: #000; color: #f8f8f8; 8 | } 9 | 10 | pre .shebang, 11 | pre .comment, 12 | pre .template_comment, 13 | pre .javadoc { 14 | color: #7c7c7c; 15 | } 16 | 17 | pre .keyword, 18 | pre .tag, 19 | pre .tex .command, 20 | pre .request, 21 | pre .status, 22 | pre .clojure .attribute { 23 | color: #96CBFE; 24 | } 25 | 26 | pre .sub .keyword, 27 | pre .method, 28 | pre .list .title, 29 | pre .nginx .title { 30 | color: #FFFFB6; 31 | } 32 | 33 | pre .string, 34 | pre .tag .value, 35 | pre .cdata, 36 | pre .filter .argument, 37 | pre .attr_selector, 38 | pre .apache .cbracket, 39 | pre .date { 40 | color: #A8FF60; 41 | } 42 | 43 | pre .subst { 44 | color: #DAEFA3; 45 | } 46 | 47 | pre .regexp { 48 | color: #E9C062; 49 | } 50 | 51 | pre .title, 52 | pre .sub .identifier, 53 | pre .pi, 54 | pre .decorator, 55 | pre .tex .special, 56 | pre .haskell .type, 57 | pre .constant, 58 | pre .smalltalk .class, 59 | pre .javadoctag, 60 | pre .yardoctag, 61 | pre .phpdoc, 62 | pre .nginx .built_in { 63 | color: #FFFFB6; 64 | } 65 | 66 | pre .symbol, 67 | pre .ruby .symbol .string, 68 | pre .number, 69 | pre .variable, 70 | pre .vbscript, 71 | pre .literal { 72 | color: #C6C5FE; 73 | } 74 | 75 | pre .css .tag { 76 | color: #96CBFE; 77 | } 78 | 79 | pre .css .rules .property, 80 | pre .css .id { 81 | color: #FFFFB6; 82 | } 83 | 84 | pre .css .class { 85 | color: #FFF; 86 | } 87 | 88 | pre .hexcolor { 89 | color: #C6C5FE; 90 | } 91 | 92 | pre .number { 93 | color:#FF73FD; 94 | } 95 | 96 | pre .coffeescript .javascript, 97 | pre .javascript .xml, 98 | pre .tex .formula, 99 | pre .xml .javascript, 100 | pre .xml .vbscript, 101 | pre .xml .css, 102 | pre .xml .cdata { 103 | opacity: 0.7; 104 | } 105 | -------------------------------------------------------------------------------- /Project1 Image Filtering and Hybrid Images/html/highlighting/styles/pojoaque.css: -------------------------------------------------------------------------------- 1 | /* 2 | 3 | Pojoaque Style by Jason Tate 4 | http://web-cms-designs.com/ftopict-10-pojoaque-style-for-highlight-js-code-highlighter.html 5 | Based on Solarized Style from http://ethanschoonover.com/solarized 6 | 7 | */ 8 | 9 | pre code { 10 | display: block; padding: 0.5em; 11 | color: #DCCF8F; 12 | background: url(./pojoaque.jpg) repeat scroll left top #181914; 13 | } 14 | 15 | pre .comment, 16 | pre .template_comment, 17 | pre .diff .header, 18 | pre .doctype, 19 | pre .lisp .string, 20 | pre .javadoc { 21 | color: #586e75; 22 | font-style: italic; 23 | } 24 | 25 | pre .keyword, 26 | pre .css .rule .keyword, 27 | pre .winutils, 28 | pre .javascript .title, 29 | pre .method, 30 | pre .addition, 31 | pre .css .tag, 32 | pre .clojure .title, 33 | pre .nginx .title { 34 | color: #B64926; 35 | } 36 | 37 | pre .number, 38 | pre .command, 39 | pre .string, 40 | pre .tag .value, 41 | pre .phpdoc, 42 | pre .tex .formula, 43 | pre .regexp, 44 | pre .hexcolor { 45 | color: #468966; 46 | } 47 | 48 | pre .title, 49 | pre .localvars, 50 | pre .function .title, 51 | pre .chunk, 52 | pre .decorator, 53 | pre .built_in, 54 | pre .lisp .title, 55 | pre .clojure .built_in, 56 | pre .identifier, 57 | pre .id { 58 | color: #FFB03B; 59 | } 60 | 61 | pre .attribute, 62 | pre .variable, 63 | pre .lisp .body, 64 | pre .smalltalk .number, 65 | pre .constant, 66 | pre .class .title, 67 | pre .parent, 68 | pre .haskell .type { 69 | color: #b58900; 70 | } 71 | 72 | pre .css .attribute { 73 | color: #b89859; 74 | } 75 | 76 | pre .css .number,pre .css .hexcolor{ 77 | color: #DCCF8F; 78 | } 79 | 80 | pre .css .class { 81 | color: #d3a60c; 82 | } 83 | 84 | pre .preprocessor, 85 | pre .pi, 86 | pre .shebang, 87 | pre .symbol, 88 | pre .symbol .string, 89 | pre .diff .change, 90 | pre .special, 91 | pre .attr_selector, 92 | pre .important, 93 | pre .subst, 94 | pre .cdata { 95 | color: #cb4b16; 96 | } 97 | 98 | pre .deletion { 99 | color: #dc322f; 100 | } 101 | 102 | pre .tex .formula { 103 | background: #073642; 104 | } 105 | -------------------------------------------------------------------------------- /Project1 Image Filtering and Hybrid Images/html/highlighting/styles/pojoaque.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project1 Image Filtering and Hybrid Images/html/highlighting/styles/pojoaque.jpg -------------------------------------------------------------------------------- /Project1 Image Filtering and Hybrid Images/html/highlighting/styles/school_book.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project1 Image Filtering and Hybrid Images/html/highlighting/styles/school_book.png -------------------------------------------------------------------------------- /Project1 Image Filtering and Hybrid Images/html/highlighting/styles/solarized_dark.css: -------------------------------------------------------------------------------- 1 | /* 2 | 3 | Orginal Style from ethanschoonover.com/solarized (c) Jeremy Hull 4 | 5 | */ 6 | 7 | pre code { 8 | display: block; padding: 0.5em; 9 | background: #002b36; color: #839496; 10 | } 11 | 12 | pre .comment, 13 | pre .template_comment, 14 | pre .diff .header, 15 | pre .doctype, 16 | pre .pi, 17 | pre .lisp .string, 18 | pre .javadoc { 19 | color: #586e75; 20 | font-style: italic; 21 | } 22 | 23 | pre .keyword, 24 | pre .winutils, 25 | pre .method, 26 | pre .addition, 27 | pre .css .tag, 28 | pre .request, 29 | pre .status, 30 | pre .nginx .title { 31 | color: #859900; 32 | } 33 | 34 | pre .number, 35 | pre .command, 36 | pre .string, 37 | pre .tag .value, 38 | pre .phpdoc, 39 | pre .tex .formula, 40 | pre .regexp, 41 | pre .hexcolor { 42 | color: #2aa198; 43 | } 44 | 45 | pre .title, 46 | pre .localvars, 47 | pre .chunk, 48 | pre .decorator, 49 | pre .built_in, 50 | pre .identifier, 51 | pre .vhdl .literal, 52 | pre .id { 53 | color: #268bd2; 54 | } 55 | 56 | pre .attribute, 57 | pre .variable, 58 | pre .lisp .body, 59 | pre .smalltalk .number, 60 | pre .constant, 61 | pre .class .title, 62 | pre .parent, 63 | pre .haskell .type { 64 | color: #b58900; 65 | } 66 | 67 | pre .preprocessor, 68 | pre .preprocessor .keyword, 69 | pre .shebang, 70 | pre .symbol, 71 | pre .symbol .string, 72 | pre .diff .change, 73 | pre .special, 74 | pre .attr_selector, 75 | pre .important, 76 | pre .subst, 77 | pre .cdata, 78 | pre .clojure .title { 79 | color: #cb4b16; 80 | } 81 | 82 | pre .deletion { 83 | color: #dc322f; 84 | } 85 | 86 | pre .tex .formula { 87 | background: #073642; 88 | } 89 | -------------------------------------------------------------------------------- /Project1 Image Filtering and Hybrid Images/html/highlighting/styles/solarized_light.css: -------------------------------------------------------------------------------- 1 | /* 2 | 3 | Orginal Style from ethanschoonover.com/solarized (c) Jeremy Hull 4 | 5 | */ 6 | 7 | pre code { 8 | display: block; padding: 0.5em; 9 | background: #fdf6e3; color: #657b83; 10 | } 11 | 12 | pre .comment, 13 | pre .template_comment, 14 | pre .diff .header, 15 | pre .doctype, 16 | pre .pi, 17 | pre .lisp .string, 18 | pre .javadoc { 19 | color: #93a1a1; 20 | font-style: italic; 21 | } 22 | 23 | pre .keyword, 24 | pre .winutils, 25 | pre .method, 26 | pre .addition, 27 | pre .css .tag, 28 | pre .request, 29 | pre .status, 30 | pre .nginx .title { 31 | color: #859900; 32 | } 33 | 34 | pre .number, 35 | pre .command, 36 | pre .string, 37 | pre .tag .value, 38 | pre .phpdoc, 39 | pre .tex .formula, 40 | pre .regexp, 41 | pre .hexcolor { 42 | color: #2aa198; 43 | } 44 | 45 | pre .title, 46 | pre .localvars, 47 | pre .chunk, 48 | pre .decorator, 49 | pre .built_in, 50 | pre .identifier, 51 | pre .vhdl .literal, 52 | pre .id { 53 | color: #268bd2; 54 | } 55 | 56 | pre .attribute, 57 | pre .variable, 58 | pre .lisp .body, 59 | pre .smalltalk .number, 60 | pre .constant, 61 | pre .class .title, 62 | pre .parent, 63 | pre .haskell .type { 64 | color: #b58900; 65 | } 66 | 67 | pre .preprocessor, 68 | pre .preprocessor .keyword, 69 | pre .shebang, 70 | pre .symbol, 71 | pre .symbol .string, 72 | pre .diff .change, 73 | pre .special, 74 | pre .attr_selector, 75 | pre .important, 76 | pre .subst, 77 | pre .cdata, 78 | pre .clojure .title { 79 | color: #cb4b16; 80 | } 81 | 82 | pre .deletion { 83 | color: #dc322f; 84 | } 85 | 86 | pre .tex .formula { 87 | background: #eee8d5; 88 | } 89 | -------------------------------------------------------------------------------- /Project1 Image Filtering and Hybrid Images/html/highlighting/styles/tomorrow-night-blue.css: -------------------------------------------------------------------------------- 1 | /* Tomorrow Night Blue Theme */ 2 | /* http://jmblog.github.com/color-themes-for-google-code-highlightjs */ 3 | /* Original theme - https://github.com/chriskempson/tomorrow-theme */ 4 | /* http://jmblog.github.com/color-themes-for-google-code-highlightjs */ 5 | .tomorrow-comment, pre .comment, pre .title { 6 | color: #7285b7; 7 | } 8 | 9 | .tomorrow-red, pre .variable, pre .attribute, pre .tag, pre .regexp, pre .ruby .constant, pre .xml .tag .title, pre .xml .pi, pre .xml .doctype, pre .html .doctype, pre .css .id, pre .css .class, pre .css .pseudo { 10 | color: #ff9da4; 11 | } 12 | 13 | .tomorrow-orange, pre .number, pre .preprocessor, pre .built_in, pre .literal, pre .params, pre .constant { 14 | color: #ffc58f; 15 | } 16 | 17 | .tomorrow-yellow, pre .class, pre .ruby .class .title, pre .css .rules .attribute { 18 | color: #ffeead; 19 | } 20 | 21 | .tomorrow-green, pre .string, pre .value, pre .inheritance, pre .header, pre .ruby .symbol, pre .xml .cdata { 22 | color: #d1f1a9; 23 | } 24 | 25 | .tomorrow-aqua, pre .css .hexcolor { 26 | color: #99ffff; 27 | } 28 | 29 | .tomorrow-blue, pre .function, pre .python .decorator, pre .python .title, pre .ruby .function .title, pre .ruby .title .keyword, pre .perl .sub, pre .javascript .title, pre .coffeescript .title { 30 | color: #bbdaff; 31 | } 32 | 33 | .tomorrow-purple, pre .keyword, pre .javascript .function { 34 | color: #ebbbff; 35 | } 36 | 37 | pre code { 38 | display: block; 39 | background: #002451; 40 | color: white; 41 | padding: 0.5em; 42 | } 43 | 44 | pre .coffeescript .javascript, 45 | pre .javascript .xml, 46 | pre .tex .formula, 47 | pre .xml .javascript, 48 | pre .xml .vbscript, 49 | pre .xml .css, 50 | pre .xml .cdata { 51 | opacity: 0.5; 52 | } 53 | -------------------------------------------------------------------------------- /Project1 Image Filtering and Hybrid Images/html/highlighting/styles/tomorrow-night-bright.css: -------------------------------------------------------------------------------- 1 | /* Tomorrow Night Bright Theme */ 2 | /* Original theme - https://github.com/chriskempson/tomorrow-theme */ 3 | /* http://jmblog.github.com/color-themes-for-google-code-highlightjs */ 4 | .tomorrow-comment, pre .comment, pre .title { 5 | color: #969896; 6 | } 7 | 8 | .tomorrow-red, pre .variable, pre .attribute, pre .tag, pre .regexp, pre .ruby .constant, pre .xml .tag .title, pre .xml .pi, pre .xml .doctype, pre .html .doctype, pre .css .id, pre .css .class, pre .css .pseudo { 9 | color: #d54e53; 10 | } 11 | 12 | .tomorrow-orange, pre .number, pre .preprocessor, pre .built_in, pre .literal, pre .params, pre .constant { 13 | color: #e78c45; 14 | } 15 | 16 | .tomorrow-yellow, pre .class, pre .ruby .class .title, pre .css .rules .attribute { 17 | color: #e7c547; 18 | } 19 | 20 | .tomorrow-green, pre .string, pre .value, pre .inheritance, pre .header, pre .ruby .symbol, pre .xml .cdata { 21 | color: #b9ca4a; 22 | } 23 | 24 | .tomorrow-aqua, pre .css .hexcolor { 25 | color: #70c0b1; 26 | } 27 | 28 | .tomorrow-blue, pre .function, pre .python .decorator, pre .python .title, pre .ruby .function .title, pre .ruby .title .keyword, pre .perl .sub, pre .javascript .title, pre .coffeescript .title { 29 | color: #7aa6da; 30 | } 31 | 32 | .tomorrow-purple, pre .keyword, pre .javascript .function { 33 | color: #c397d8; 34 | } 35 | 36 | pre code { 37 | display: block; 38 | background: black; 39 | color: #eaeaea; 40 | padding: 0.5em; 41 | } 42 | 43 | pre .coffeescript .javascript, 44 | pre .javascript .xml, 45 | pre .tex .formula, 46 | pre .xml .javascript, 47 | pre .xml .vbscript, 48 | pre .xml .css, 49 | pre .xml .cdata { 50 | opacity: 0.5; 51 | } 52 | -------------------------------------------------------------------------------- /Project1 Image Filtering and Hybrid Images/html/highlighting/styles/tomorrow-night-eighties.css: -------------------------------------------------------------------------------- 1 | /* Tomorrow Night Eighties Theme */ 2 | /* Original theme - https://github.com/chriskempson/tomorrow-theme */ 3 | /* http://jmblog.github.com/color-themes-for-google-code-highlightjs */ 4 | .tomorrow-comment, pre .comment, pre .title { 5 | color: #999999; 6 | } 7 | 8 | .tomorrow-red, pre .variable, pre .attribute, pre .tag, pre .regexp, pre .ruby .constant, pre .xml .tag .title, pre .xml .pi, pre .xml .doctype, pre .html .doctype, pre .css .id, pre .css .class, pre .css .pseudo { 9 | color: #f2777a; 10 | } 11 | 12 | .tomorrow-orange, pre .number, pre .preprocessor, pre .built_in, pre .literal, pre .params, pre .constant { 13 | color: #f99157; 14 | } 15 | 16 | .tomorrow-yellow, pre .class, pre .ruby .class .title, pre .css .rules .attribute { 17 | color: #ffcc66; 18 | } 19 | 20 | .tomorrow-green, pre .string, pre .value, pre .inheritance, pre .header, pre .ruby .symbol, pre .xml .cdata { 21 | color: #99cc99; 22 | } 23 | 24 | .tomorrow-aqua, pre .css .hexcolor { 25 | color: #66cccc; 26 | } 27 | 28 | .tomorrow-blue, pre .function, pre .python .decorator, pre .python .title, pre .ruby .function .title, pre .ruby .title .keyword, pre .perl .sub, pre .javascript .title, pre .coffeescript .title { 29 | color: #6699cc; 30 | } 31 | 32 | .tomorrow-purple, pre .keyword, pre .javascript .function { 33 | color: #cc99cc; 34 | } 35 | 36 | pre code { 37 | display: block; 38 | background: #2d2d2d; 39 | color: #cccccc; 40 | padding: 0.5em; 41 | } 42 | 43 | pre .coffeescript .javascript, 44 | pre .javascript .xml, 45 | pre .tex .formula, 46 | pre .xml .javascript, 47 | pre .xml .vbscript, 48 | pre .xml .css, 49 | pre .xml .cdata { 50 | opacity: 0.5; 51 | } 52 | -------------------------------------------------------------------------------- /Project1 Image Filtering and Hybrid Images/html/highlighting/styles/tomorrow-night.css: -------------------------------------------------------------------------------- 1 | /* Tomorrow Night Theme */ 2 | /* http://jmblog.github.com/color-themes-for-google-code-highlightjs */ 3 | /* Original theme - https://github.com/chriskempson/tomorrow-theme */ 4 | /* http://jmblog.github.com/color-themes-for-google-code-highlightjs */ 5 | .tomorrow-comment, pre .comment, pre .title { 6 | color: #969896; 7 | } 8 | 9 | .tomorrow-red, pre .variable, pre .attribute, pre .tag, pre .regexp, pre .ruby .constant, pre .xml .tag .title, pre .xml .pi, pre .xml .doctype, pre .html .doctype, pre .css .id, pre .css .class, pre .css .pseudo { 10 | color: #cc6666; 11 | } 12 | 13 | .tomorrow-orange, pre .number, pre .preprocessor, pre .built_in, pre .literal, pre .params, pre .constant { 14 | color: #de935f; 15 | } 16 | 17 | .tomorrow-yellow, pre .class, pre .ruby .class .title, pre .css .rules .attribute { 18 | color: #f0c674; 19 | } 20 | 21 | .tomorrow-green, pre .string, pre .value, pre .inheritance, pre .header, pre .ruby .symbol, pre .xml .cdata { 22 | color: #b5bd68; 23 | } 24 | 25 | .tomorrow-aqua, pre .css .hexcolor { 26 | color: #8abeb7; 27 | } 28 | 29 | .tomorrow-blue, pre .function, pre .python .decorator, pre .python .title, pre .ruby .function .title, pre .ruby .title .keyword, pre .perl .sub, pre .javascript .title, pre .coffeescript .title { 30 | color: #81a2be; 31 | } 32 | 33 | .tomorrow-purple, pre .keyword, pre .javascript .function { 34 | color: #b294bb; 35 | } 36 | 37 | pre code { 38 | display: block; 39 | background: #1d1f21; 40 | color: #c5c8c6; 41 | padding: 0.5em; 42 | } 43 | 44 | pre .coffeescript .javascript, 45 | pre .javascript .xml, 46 | pre .tex .formula, 47 | pre .xml .javascript, 48 | pre .xml .vbscript, 49 | pre .xml .css, 50 | pre .xml .cdata { 51 | opacity: 0.5; 52 | } 53 | -------------------------------------------------------------------------------- /Project1 Image Filtering and Hybrid Images/html/highlighting/styles/tomorrow.css: -------------------------------------------------------------------------------- 1 | /* http://jmblog.github.com/color-themes-for-google-code-highlightjs */ 2 | .tomorrow-comment, pre .comment, pre .title { 3 | color: #8e908c; 4 | } 5 | 6 | .tomorrow-red, pre .variable, pre .attribute, pre .tag, pre .regexp, pre .ruby .constant, pre .xml .tag .title, pre .xml .pi, pre .xml .doctype, pre .html .doctype, pre .css .id, pre .css .class, pre .css .pseudo { 7 | color: #c82829; 8 | } 9 | 10 | .tomorrow-orange, pre .number, pre .preprocessor, pre .built_in, pre .literal, pre .params, pre .constant { 11 | color: #f5871f; 12 | } 13 | 14 | .tomorrow-yellow, pre .class, pre .ruby .class .title, pre .css .rules .attribute { 15 | color: #eab700; 16 | } 17 | 18 | .tomorrow-green, pre .string, pre .value, pre .inheritance, pre .header, pre .ruby .symbol, pre .xml .cdata { 19 | color: #718c00; 20 | } 21 | 22 | .tomorrow-aqua, pre .css .hexcolor { 23 | color: #3e999f; 24 | } 25 | 26 | .tomorrow-blue, pre .function, pre .python .decorator, pre .python .title, pre .ruby .function .title, pre .ruby .title .keyword, pre .perl .sub, pre .javascript .title, pre .coffeescript .title { 27 | color: #4271ae; 28 | } 29 | 30 | .tomorrow-purple, pre .keyword, pre .javascript .function { 31 | color: #8959a8; 32 | } 33 | 34 | pre code { 35 | display: block; 36 | background: white; 37 | color: #4d4d4c; 38 | padding: 0.5em; 39 | } 40 | 41 | pre .coffeescript .javascript, 42 | pre .javascript .xml, 43 | pre .tex .formula, 44 | pre .xml .javascript, 45 | pre .xml .vbscript, 46 | pre .xml .css, 47 | pre .xml .cdata { 48 | opacity: 0.5; 49 | } 50 | -------------------------------------------------------------------------------- /Project1 Image Filtering and Hybrid Images/html/highlighting/styles/vs.css: -------------------------------------------------------------------------------- 1 | /* 2 | 3 | Visual Studio-like style based on original C# coloring by Jason Diamond 4 | 5 | */ 6 | pre code { 7 | display: block; padding: 0.5em; 8 | } 9 | 10 | pre .comment, 11 | pre .annotation, 12 | pre .template_comment, 13 | pre .diff .header, 14 | pre .chunk, 15 | pre .apache .cbracket { 16 | color: rgb(0, 128, 0); 17 | } 18 | 19 | pre .keyword, 20 | pre .id, 21 | pre .built_in, 22 | pre .smalltalk .class, 23 | pre .winutils, 24 | pre .bash .variable, 25 | pre .tex .command, 26 | pre .request, 27 | pre .status, 28 | pre .nginx .title, 29 | pre .xml .tag, 30 | pre .xml .tag .value { 31 | color: rgb(0, 0, 255); 32 | } 33 | 34 | pre .string, 35 | pre .title, 36 | pre .parent, 37 | pre .tag .value, 38 | pre .rules .value, 39 | pre .rules .value .number, 40 | pre .ruby .symbol, 41 | pre .ruby .symbol .string, 42 | pre .aggregate, 43 | pre .template_tag, 44 | pre .django .variable, 45 | pre .addition, 46 | pre .flow, 47 | pre .stream, 48 | pre .apache .tag, 49 | pre .date, 50 | pre .tex .formula { 51 | color: rgb(163, 21, 21); 52 | } 53 | 54 | pre .ruby .string, 55 | pre .decorator, 56 | pre .filter .argument, 57 | pre .localvars, 58 | pre .array, 59 | pre .attr_selector, 60 | pre .pseudo, 61 | pre .pi, 62 | pre .doctype, 63 | pre .deletion, 64 | pre .envvar, 65 | pre .shebang, 66 | pre .preprocessor, 67 | pre .userType, 68 | pre .apache .sqbracket, 69 | pre .nginx .built_in, 70 | pre .tex .special, 71 | pre .prompt { 72 | color: rgb(43, 145, 175); 73 | } 74 | 75 | pre .phpdoc, 76 | pre .javadoc, 77 | pre .xmlDocTag { 78 | color: rgb(128, 128, 128); 79 | } 80 | 81 | pre .vhdl .typename { font-weight: bold; } 82 | pre .vhdl .string { color: #666666; } 83 | pre .vhdl .literal { color: rgb(163, 21, 21); } 84 | pre .vhdl .attribute { color: #00B0E8; } 85 | 86 | pre .xml .attribute { color: rgb(255, 0, 0); } 87 | -------------------------------------------------------------------------------- /Project1 Image Filtering and Hybrid Images/html/hybrid_images/high1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project1 Image Filtering and Hybrid Images/html/hybrid_images/high1.jpg -------------------------------------------------------------------------------- /Project1 Image Filtering and Hybrid Images/html/hybrid_images/high2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project1 Image Filtering and Hybrid Images/html/hybrid_images/high2.jpg -------------------------------------------------------------------------------- /Project1 Image Filtering and Hybrid Images/html/hybrid_images/high3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project1 Image Filtering and Hybrid Images/html/hybrid_images/high3.jpg -------------------------------------------------------------------------------- /Project1 Image Filtering and Hybrid Images/html/hybrid_images/high4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project1 Image Filtering and Hybrid Images/html/hybrid_images/high4.jpg -------------------------------------------------------------------------------- /Project1 Image Filtering and Hybrid Images/html/hybrid_images/high5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project1 Image Filtering and Hybrid Images/html/hybrid_images/high5.jpg -------------------------------------------------------------------------------- /Project1 Image Filtering and Hybrid Images/html/hybrid_images/hybrid1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project1 Image Filtering and Hybrid Images/html/hybrid_images/hybrid1.jpg -------------------------------------------------------------------------------- /Project1 Image Filtering and Hybrid Images/html/hybrid_images/hybrid2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project1 Image Filtering and Hybrid Images/html/hybrid_images/hybrid2.jpg -------------------------------------------------------------------------------- /Project1 Image Filtering and Hybrid Images/html/hybrid_images/hybrid3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project1 Image Filtering and Hybrid Images/html/hybrid_images/hybrid3.jpg -------------------------------------------------------------------------------- /Project1 Image Filtering and Hybrid Images/html/hybrid_images/hybrid4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project1 Image Filtering and Hybrid Images/html/hybrid_images/hybrid4.jpg -------------------------------------------------------------------------------- /Project1 Image Filtering and Hybrid Images/html/hybrid_images/hybrid5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project1 Image Filtering and Hybrid Images/html/hybrid_images/hybrid5.jpg -------------------------------------------------------------------------------- /Project1 Image Filtering and Hybrid Images/html/hybrid_images/low1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project1 Image Filtering and Hybrid Images/html/hybrid_images/low1.jpg -------------------------------------------------------------------------------- /Project1 Image Filtering and Hybrid Images/html/hybrid_images/low2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project1 Image Filtering and Hybrid Images/html/hybrid_images/low2.jpg -------------------------------------------------------------------------------- /Project1 Image Filtering and Hybrid Images/html/hybrid_images/low3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project1 Image Filtering and Hybrid Images/html/hybrid_images/low3.jpg -------------------------------------------------------------------------------- /Project1 Image Filtering and Hybrid Images/html/hybrid_images/low4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project1 Image Filtering and Hybrid Images/html/hybrid_images/low4.jpg -------------------------------------------------------------------------------- /Project1 Image Filtering and Hybrid Images/html/hybrid_images/low5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project1 Image Filtering and Hybrid Images/html/hybrid_images/low5.jpg -------------------------------------------------------------------------------- /Project1 Image Filtering and Hybrid Images/html/image_filter/blur_image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project1 Image Filtering and Hybrid Images/html/image_filter/blur_image.jpg -------------------------------------------------------------------------------- /Project1 Image Filtering and Hybrid Images/html/image_filter/high_pass_image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project1 Image Filtering and Hybrid Images/html/image_filter/high_pass_image.jpg -------------------------------------------------------------------------------- /Project1 Image Filtering and Hybrid Images/html/image_filter/identity_image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project1 Image Filtering and Hybrid Images/html/image_filter/identity_image.jpg -------------------------------------------------------------------------------- /Project1 Image Filtering and Hybrid Images/html/image_filter/laplacian_image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project1 Image Filtering and Hybrid Images/html/image_filter/laplacian_image.jpg -------------------------------------------------------------------------------- /Project1 Image Filtering and Hybrid Images/html/image_filter/large_blur_image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project1 Image Filtering and Hybrid Images/html/image_filter/large_blur_image.jpg -------------------------------------------------------------------------------- /Project1 Image Filtering and Hybrid Images/html/image_filter/sobel_image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project1 Image Filtering and Hybrid Images/html/image_filter/sobel_image.jpg -------------------------------------------------------------------------------- /Project1 Image Filtering and Hybrid Images/html/interchange/interchange_cat.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project1 Image Filtering and Hybrid Images/html/interchange/interchange_cat.jpg -------------------------------------------------------------------------------- /Project1 Image Filtering and Hybrid Images/html/interchange/interchange_dog.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project1 Image Filtering and Hybrid Images/html/interchange/interchange_dog.jpg -------------------------------------------------------------------------------- /Project1 Image Filtering and Hybrid Images/html/interchange/interchange_hy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project1 Image Filtering and Hybrid Images/html/interchange/interchange_hy.jpg -------------------------------------------------------------------------------- /Project1 Image Filtering and Hybrid Images/html/paddings/1/blur_image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project1 Image Filtering and Hybrid Images/html/paddings/1/blur_image.jpg -------------------------------------------------------------------------------- /Project1 Image Filtering and Hybrid Images/html/paddings/1/high_pass_image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project1 Image Filtering and Hybrid Images/html/paddings/1/high_pass_image.jpg -------------------------------------------------------------------------------- /Project1 Image Filtering and Hybrid Images/html/paddings/1/identity_image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project1 Image Filtering and Hybrid Images/html/paddings/1/identity_image.jpg -------------------------------------------------------------------------------- /Project1 Image Filtering and Hybrid Images/html/paddings/1/laplacian_image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project1 Image Filtering and Hybrid Images/html/paddings/1/laplacian_image.jpg -------------------------------------------------------------------------------- /Project1 Image Filtering and Hybrid Images/html/paddings/1/large_blur_image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project1 Image Filtering and Hybrid Images/html/paddings/1/large_blur_image.jpg -------------------------------------------------------------------------------- /Project1 Image Filtering and Hybrid Images/html/paddings/1/sobel_image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project1 Image Filtering and Hybrid Images/html/paddings/1/sobel_image.jpg -------------------------------------------------------------------------------- /Project1 Image Filtering and Hybrid Images/html/paddings/2/blur_image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project1 Image Filtering and Hybrid Images/html/paddings/2/blur_image.jpg -------------------------------------------------------------------------------- /Project1 Image Filtering and Hybrid Images/html/paddings/2/high_pass_image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project1 Image Filtering and Hybrid Images/html/paddings/2/high_pass_image.jpg -------------------------------------------------------------------------------- /Project1 Image Filtering and Hybrid Images/html/paddings/2/identity_image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project1 Image Filtering and Hybrid Images/html/paddings/2/identity_image.jpg -------------------------------------------------------------------------------- /Project1 Image Filtering and Hybrid Images/html/paddings/2/laplacian_image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project1 Image Filtering and Hybrid Images/html/paddings/2/laplacian_image.jpg -------------------------------------------------------------------------------- /Project1 Image Filtering and Hybrid Images/html/paddings/2/large_blur_image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project1 Image Filtering and Hybrid Images/html/paddings/2/large_blur_image.jpg -------------------------------------------------------------------------------- /Project1 Image Filtering and Hybrid Images/html/paddings/2/sobel_image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project1 Image Filtering and Hybrid Images/html/paddings/2/sobel_image.jpg -------------------------------------------------------------------------------- /Project1 Image Filtering and Hybrid Images/results/Bird_Plane/high_frequencies.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project1 Image Filtering and Hybrid Images/results/Bird_Plane/high_frequencies.jpg -------------------------------------------------------------------------------- /Project1 Image Filtering and Hybrid Images/results/Bird_Plane/hybrid_image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project1 Image Filtering and Hybrid Images/results/Bird_Plane/hybrid_image.jpg -------------------------------------------------------------------------------- /Project1 Image Filtering and Hybrid Images/results/Bird_Plane/hybrid_image_scales.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project1 Image Filtering and Hybrid Images/results/Bird_Plane/hybrid_image_scales.jpg -------------------------------------------------------------------------------- /Project1 Image Filtering and Hybrid Images/results/Bird_Plane/low_frequencies.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project1 Image Filtering and Hybrid Images/results/Bird_Plane/low_frequencies.jpg -------------------------------------------------------------------------------- /Project1 Image Filtering and Hybrid Images/results/Cat_Dog/high_frequencies.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project1 Image Filtering and Hybrid Images/results/Cat_Dog/high_frequencies.jpg -------------------------------------------------------------------------------- /Project1 Image Filtering and Hybrid Images/results/Cat_Dog/hybrid_image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project1 Image Filtering and Hybrid Images/results/Cat_Dog/hybrid_image.jpg -------------------------------------------------------------------------------- /Project1 Image Filtering and Hybrid Images/results/Cat_Dog/hybrid_image_scales.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project1 Image Filtering and Hybrid Images/results/Cat_Dog/hybrid_image_scales.jpg -------------------------------------------------------------------------------- /Project1 Image Filtering and Hybrid Images/results/Cat_Dog/low_frequencies.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project1 Image Filtering and Hybrid Images/results/Cat_Dog/low_frequencies.jpg -------------------------------------------------------------------------------- /Project1 Image Filtering and Hybrid Images/results/Einstein_Marilyn/high_frequencies.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project1 Image Filtering and Hybrid Images/results/Einstein_Marilyn/high_frequencies.jpg -------------------------------------------------------------------------------- /Project1 Image Filtering and Hybrid Images/results/Einstein_Marilyn/hybrid_image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project1 Image Filtering and Hybrid Images/results/Einstein_Marilyn/hybrid_image.jpg -------------------------------------------------------------------------------- /Project1 Image Filtering and Hybrid Images/results/Einstein_Marilyn/hybrid_image_scales.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project1 Image Filtering and Hybrid Images/results/Einstein_Marilyn/hybrid_image_scales.jpg -------------------------------------------------------------------------------- /Project1 Image Filtering and Hybrid Images/results/Einstein_Marilyn/low_frequencies.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project1 Image Filtering and Hybrid Images/results/Einstein_Marilyn/low_frequencies.jpg -------------------------------------------------------------------------------- /Project1 Image Filtering and Hybrid Images/results/Fish_Submarine/high_frequencies.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project1 Image Filtering and Hybrid Images/results/Fish_Submarine/high_frequencies.jpg -------------------------------------------------------------------------------- /Project1 Image Filtering and Hybrid Images/results/Fish_Submarine/hybrid_image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project1 Image Filtering and Hybrid Images/results/Fish_Submarine/hybrid_image.jpg -------------------------------------------------------------------------------- /Project1 Image Filtering and Hybrid Images/results/Fish_Submarine/hybrid_image_scales.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project1 Image Filtering and Hybrid Images/results/Fish_Submarine/hybrid_image_scales.jpg -------------------------------------------------------------------------------- /Project1 Image Filtering and Hybrid Images/results/Fish_Submarine/low_frequencies.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project1 Image Filtering and Hybrid Images/results/Fish_Submarine/low_frequencies.jpg -------------------------------------------------------------------------------- /Project1 Image Filtering and Hybrid Images/results/Motor_Bicycle/high_frequencies.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project1 Image Filtering and Hybrid Images/results/Motor_Bicycle/high_frequencies.jpg -------------------------------------------------------------------------------- /Project1 Image Filtering and Hybrid Images/results/Motor_Bicycle/hybrid_image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project1 Image Filtering and Hybrid Images/results/Motor_Bicycle/hybrid_image.jpg -------------------------------------------------------------------------------- /Project1 Image Filtering and Hybrid Images/results/Motor_Bicycle/hybrid_image_scales.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project1 Image Filtering and Hybrid Images/results/Motor_Bicycle/hybrid_image_scales.jpg -------------------------------------------------------------------------------- /Project1 Image Filtering and Hybrid Images/results/Motor_Bicycle/low_frequencies.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project1 Image Filtering and Hybrid Images/results/Motor_Bicycle/low_frequencies.jpg -------------------------------------------------------------------------------- /Project1 Image Filtering and Hybrid Images/results/filtered_image_cat/blur_image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project1 Image Filtering and Hybrid Images/results/filtered_image_cat/blur_image.jpg -------------------------------------------------------------------------------- /Project1 Image Filtering and Hybrid Images/results/filtered_image_cat/high_pass_image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project1 Image Filtering and Hybrid Images/results/filtered_image_cat/high_pass_image.jpg -------------------------------------------------------------------------------- /Project1 Image Filtering and Hybrid Images/results/filtered_image_cat/identity_image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project1 Image Filtering and Hybrid Images/results/filtered_image_cat/identity_image.jpg -------------------------------------------------------------------------------- /Project1 Image Filtering and Hybrid Images/results/filtered_image_cat/laplacian_image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project1 Image Filtering and Hybrid Images/results/filtered_image_cat/laplacian_image.jpg -------------------------------------------------------------------------------- /Project1 Image Filtering and Hybrid Images/results/filtered_image_cat/large_blur_image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project1 Image Filtering and Hybrid Images/results/filtered_image_cat/large_blur_image.jpg -------------------------------------------------------------------------------- /Project1 Image Filtering and Hybrid Images/results/filtered_image_cat/sobel_image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project1 Image Filtering and Hybrid Images/results/filtered_image_cat/sobel_image.jpg -------------------------------------------------------------------------------- /Project2 Local Feature Matching/READMe.md: -------------------------------------------------------------------------------- 1 | # CS 6476 project 2: [Local Feature Matching](https://www.cc.gatech.edu/~hays/compvision/proj2/) 2 | 3 | 4 | # Setup 5 | - Install Miniconda. It doesn't matter whether you use 2.7 or 3.6 because we will create our own environment anyways. 6 | - Create a conda environment, using the appropriate command. On Windows, open the installed "Conda prompt" to run this command. On MacOS and Linux, you can just use a terminal window to run the command. Modify the command based on your OS ('linux', 'mac', or 'win'): `conda env create -f environment_.yml` 7 | - This should create an environment named `cs6476`. Activate it using the following Windows command: `activate cs6476` or the following MacOS / Linux command: `source activate cs6476`. 8 | - Run the notebook using: `jupyter notebook ./code/proj2.ipynb` 9 | - Generate the submission once you're finished using `python zip_submission.py` 10 | 11 | In this project, I submitted lately due to recent career fairs. So I will use 1 split day in this project. 12 | Basically I didn't implement any bells & whistles functions for extra credits. Just simply run my program, thanks. 13 | -------------------------------------------------------------------------------- /Project2 Local Feature Matching/code/__pycache__/student_feature_matching.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project2 Local Feature Matching/code/__pycache__/student_feature_matching.cpython-35.pyc -------------------------------------------------------------------------------- /Project2 Local Feature Matching/code/__pycache__/student_harris.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project2 Local Feature Matching/code/__pycache__/student_harris.cpython-35.pyc -------------------------------------------------------------------------------- /Project2 Local Feature Matching/code/__pycache__/student_sift.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project2 Local Feature Matching/code/__pycache__/student_sift.cpython-35.pyc -------------------------------------------------------------------------------- /Project2 Local Feature Matching/code/__pycache__/utils.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project2 Local Feature Matching/code/__pycache__/utils.cpython-35.pyc -------------------------------------------------------------------------------- /Project2 Local Feature Matching/html/1/cheat/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project2 Local Feature Matching/html/1/cheat/1.png -------------------------------------------------------------------------------- /Project2 Local Feature Matching/html/1/cheat/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project2 Local Feature Matching/html/1/cheat/2.png -------------------------------------------------------------------------------- /Project2 Local Feature Matching/html/1/cheat/eval.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project2 Local Feature Matching/html/1/cheat/eval.jpg -------------------------------------------------------------------------------- /Project2 Local Feature Matching/html/1/cheat/vis_circles.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project2 Local Feature Matching/html/1/cheat/vis_circles.jpg -------------------------------------------------------------------------------- /Project2 Local Feature Matching/html/1/cheat/vis_lines.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project2 Local Feature Matching/html/1/cheat/vis_lines.jpg -------------------------------------------------------------------------------- /Project2 Local Feature Matching/html/1/real/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project2 Local Feature Matching/html/1/real/1.png -------------------------------------------------------------------------------- /Project2 Local Feature Matching/html/1/real/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project2 Local Feature Matching/html/1/real/2.png -------------------------------------------------------------------------------- /Project2 Local Feature Matching/html/1/real/eval.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project2 Local Feature Matching/html/1/real/eval.jpg -------------------------------------------------------------------------------- /Project2 Local Feature Matching/html/1/real/vis_circles.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project2 Local Feature Matching/html/1/real/vis_circles.jpg -------------------------------------------------------------------------------- /Project2 Local Feature Matching/html/1/real/vis_lines.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project2 Local Feature Matching/html/1/real/vis_lines.jpg -------------------------------------------------------------------------------- /Project2 Local Feature Matching/html/2/real/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project2 Local Feature Matching/html/2/real/1.png -------------------------------------------------------------------------------- /Project2 Local Feature Matching/html/2/real/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project2 Local Feature Matching/html/2/real/2.png -------------------------------------------------------------------------------- /Project2 Local Feature Matching/html/2/real/eval.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project2 Local Feature Matching/html/2/real/eval.png -------------------------------------------------------------------------------- /Project2 Local Feature Matching/html/2/real/vis_circles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project2 Local Feature Matching/html/2/real/vis_circles.png -------------------------------------------------------------------------------- /Project2 Local Feature Matching/html/2/real/vis_lines.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project2 Local Feature Matching/html/2/real/vis_lines.png -------------------------------------------------------------------------------- /Project2 Local Feature Matching/html/3/real/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project2 Local Feature Matching/html/3/real/1.png -------------------------------------------------------------------------------- /Project2 Local Feature Matching/html/3/real/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project2 Local Feature Matching/html/3/real/2.png -------------------------------------------------------------------------------- /Project2 Local Feature Matching/html/3/real/eval.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project2 Local Feature Matching/html/3/real/eval.jpg -------------------------------------------------------------------------------- /Project2 Local Feature Matching/html/3/real/vis_circles.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project2 Local Feature Matching/html/3/real/vis_circles.jpg -------------------------------------------------------------------------------- /Project2 Local Feature Matching/html/3/real/vis_lines.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project2 Local Feature Matching/html/3/real/vis_lines.jpg -------------------------------------------------------------------------------- /Project2 Local Feature Matching/html/4/vis_circles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project2 Local Feature Matching/html/4/vis_circles.png -------------------------------------------------------------------------------- /Project2 Local Feature Matching/html/4/vis_lines.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project2 Local Feature Matching/html/4/vis_lines.png -------------------------------------------------------------------------------- /Project2 Local Feature Matching/html/5/vis_circles.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project2 Local Feature Matching/html/5/vis_circles.jpg -------------------------------------------------------------------------------- /Project2 Local Feature Matching/html/5/vis_lines.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project2 Local Feature Matching/html/5/vis_lines.jpg -------------------------------------------------------------------------------- /Project2 Local Feature Matching/html/6/vis_circles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project2 Local Feature Matching/html/6/vis_circles.png -------------------------------------------------------------------------------- /Project2 Local Feature Matching/html/6/vis_lines.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project2 Local Feature Matching/html/6/vis_lines.png -------------------------------------------------------------------------------- /Project2 Local Feature Matching/html/highlighting/LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (c) 2006, Ivan Sagalaev 2 | All rights reserved. 3 | Redistribution and use in source and binary forms, with or without 4 | modification, are permitted provided that the following conditions are met: 5 | 6 | * Redistributions of source code must retain the above copyright 7 | notice, this list of conditions and the following disclaimer. 8 | * Redistributions in binary form must reproduce the above copyright 9 | notice, this list of conditions and the following disclaimer in the 10 | documentation and/or other materials provided with the distribution. 11 | * Neither the name of highlight.js nor the names of its contributors 12 | may be used to endorse or promote products derived from this software 13 | without specific prior written permission. 14 | 15 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND ANY 16 | EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED 17 | WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE 18 | DISCLAIMED. IN NO EVENT SHALL THE REGENTS AND CONTRIBUTORS BE LIABLE FOR ANY 19 | DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES 20 | (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; 21 | LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND 22 | ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 23 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS 24 | SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 25 | -------------------------------------------------------------------------------- /Project2 Local Feature Matching/html/highlighting/styles/ascetic.css: -------------------------------------------------------------------------------- 1 | /* 2 | 3 | Original style from softwaremaniacs.org (c) Ivan Sagalaev 4 | 5 | */ 6 | 7 | pre code { 8 | display: block; padding: 0.5em; 9 | background: white; color: black; 10 | } 11 | 12 | pre .string, 13 | pre .tag .value, 14 | pre .filter .argument, 15 | pre .addition, 16 | pre .change, 17 | pre .apache .tag, 18 | pre .apache .cbracket, 19 | pre .nginx .built_in, 20 | pre .tex .formula { 21 | color: #888; 22 | } 23 | 24 | pre .comment, 25 | pre .template_comment, 26 | pre .shebang, 27 | pre .doctype, 28 | pre .pi, 29 | pre .javadoc, 30 | pre .deletion, 31 | pre .apache .sqbracket { 32 | color: #CCC; 33 | } 34 | 35 | pre .keyword, 36 | pre .tag .title, 37 | pre .ini .title, 38 | pre .lisp .title, 39 | pre .clojure .title, 40 | pre .http .title, 41 | pre .nginx .title, 42 | pre .css .tag, 43 | pre .winutils, 44 | pre .flow, 45 | pre .apache .tag, 46 | pre .tex .command, 47 | pre .request, 48 | pre .status { 49 | font-weight: bold; 50 | } 51 | -------------------------------------------------------------------------------- /Project2 Local Feature Matching/html/highlighting/styles/brown_papersq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project2 Local Feature Matching/html/highlighting/styles/brown_papersq.png -------------------------------------------------------------------------------- /Project2 Local Feature Matching/html/highlighting/styles/dark.css: -------------------------------------------------------------------------------- 1 | /* 2 | 3 | Dark style from softwaremaniacs.org (c) Ivan Sagalaev 4 | 5 | */ 6 | 7 | pre code { 8 | display: block; padding: 0.5em; 9 | background: #444; 10 | } 11 | 12 | pre .keyword, 13 | pre .literal, 14 | pre .change, 15 | pre .winutils, 16 | pre .flow, 17 | pre .lisp .title, 18 | pre .clojure .built_in, 19 | pre .nginx .title, 20 | pre .tex .special { 21 | color: white; 22 | } 23 | 24 | pre code, 25 | pre .subst { 26 | color: #DDD; 27 | } 28 | 29 | pre .string, 30 | pre .title, 31 | pre .haskell .type, 32 | pre .ini .title, 33 | pre .tag .value, 34 | pre .css .rules .value, 35 | pre .preprocessor, 36 | pre .ruby .symbol, 37 | pre .ruby .symbol .string, 38 | pre .ruby .class .parent, 39 | pre .built_in, 40 | pre .sql .aggregate, 41 | pre .django .template_tag, 42 | pre .django .variable, 43 | pre .smalltalk .class, 44 | pre .javadoc, 45 | pre .ruby .string, 46 | pre .django .filter .argument, 47 | pre .smalltalk .localvars, 48 | pre .smalltalk .array, 49 | pre .attr_selector, 50 | pre .pseudo, 51 | pre .addition, 52 | pre .stream, 53 | pre .envvar, 54 | pre .apache .tag, 55 | pre .apache .cbracket, 56 | pre .tex .command, 57 | pre .prompt { 58 | color: #D88; 59 | } 60 | 61 | pre .comment, 62 | pre .java .annotation, 63 | pre .python .decorator, 64 | pre .template_comment, 65 | pre .pi, 66 | pre .doctype, 67 | pre .deletion, 68 | pre .shebang, 69 | pre .apache .sqbracket, 70 | pre .tex .formula { 71 | color: #777; 72 | } 73 | 74 | pre .keyword, 75 | pre .literal, 76 | pre .title, 77 | pre .css .id, 78 | pre .phpdoc, 79 | pre .haskell .type, 80 | pre .vbscript .built_in, 81 | pre .sql .aggregate, 82 | pre .rsl .built_in, 83 | pre .smalltalk .class, 84 | pre .diff .header, 85 | pre .chunk, 86 | pre .winutils, 87 | pre .bash .variable, 88 | pre .apache .tag, 89 | pre .tex .special, 90 | pre .request, 91 | pre .status { 92 | font-weight: bold; 93 | } 94 | 95 | pre .coffeescript .javascript, 96 | pre .javascript .xml, 97 | pre .tex .formula, 98 | pre .xml .javascript, 99 | pre .xml .vbscript, 100 | pre .xml .css, 101 | pre .xml .cdata { 102 | opacity: 0.5; 103 | } 104 | -------------------------------------------------------------------------------- /Project2 Local Feature Matching/html/highlighting/styles/ir_black.css: -------------------------------------------------------------------------------- 1 | /* 2 | IR_Black style (c) Vasily Mikhailitchenko 3 | */ 4 | 5 | pre code { 6 | display: block; padding: 0.5em; 7 | background: #000; color: #f8f8f8; 8 | } 9 | 10 | pre .shebang, 11 | pre .comment, 12 | pre .template_comment, 13 | pre .javadoc { 14 | color: #7c7c7c; 15 | } 16 | 17 | pre .keyword, 18 | pre .tag, 19 | pre .tex .command, 20 | pre .request, 21 | pre .status, 22 | pre .clojure .attribute { 23 | color: #96CBFE; 24 | } 25 | 26 | pre .sub .keyword, 27 | pre .method, 28 | pre .list .title, 29 | pre .nginx .title { 30 | color: #FFFFB6; 31 | } 32 | 33 | pre .string, 34 | pre .tag .value, 35 | pre .cdata, 36 | pre .filter .argument, 37 | pre .attr_selector, 38 | pre .apache .cbracket, 39 | pre .date { 40 | color: #A8FF60; 41 | } 42 | 43 | pre .subst { 44 | color: #DAEFA3; 45 | } 46 | 47 | pre .regexp { 48 | color: #E9C062; 49 | } 50 | 51 | pre .title, 52 | pre .sub .identifier, 53 | pre .pi, 54 | pre .decorator, 55 | pre .tex .special, 56 | pre .haskell .type, 57 | pre .constant, 58 | pre .smalltalk .class, 59 | pre .javadoctag, 60 | pre .yardoctag, 61 | pre .phpdoc, 62 | pre .nginx .built_in { 63 | color: #FFFFB6; 64 | } 65 | 66 | pre .symbol, 67 | pre .ruby .symbol .string, 68 | pre .number, 69 | pre .variable, 70 | pre .vbscript, 71 | pre .literal { 72 | color: #C6C5FE; 73 | } 74 | 75 | pre .css .tag { 76 | color: #96CBFE; 77 | } 78 | 79 | pre .css .rules .property, 80 | pre .css .id { 81 | color: #FFFFB6; 82 | } 83 | 84 | pre .css .class { 85 | color: #FFF; 86 | } 87 | 88 | pre .hexcolor { 89 | color: #C6C5FE; 90 | } 91 | 92 | pre .number { 93 | color:#FF73FD; 94 | } 95 | 96 | pre .coffeescript .javascript, 97 | pre .javascript .xml, 98 | pre .tex .formula, 99 | pre .xml .javascript, 100 | pre .xml .vbscript, 101 | pre .xml .css, 102 | pre .xml .cdata { 103 | opacity: 0.7; 104 | } 105 | -------------------------------------------------------------------------------- /Project2 Local Feature Matching/html/highlighting/styles/pojoaque.css: -------------------------------------------------------------------------------- 1 | /* 2 | 3 | Pojoaque Style by Jason Tate 4 | http://web-cms-designs.com/ftopict-10-pojoaque-style-for-highlight-js-code-highlighter.html 5 | Based on Solarized Style from http://ethanschoonover.com/solarized 6 | 7 | */ 8 | 9 | pre code { 10 | display: block; padding: 0.5em; 11 | color: #DCCF8F; 12 | background: url(./pojoaque.jpg) repeat scroll left top #181914; 13 | } 14 | 15 | pre .comment, 16 | pre .template_comment, 17 | pre .diff .header, 18 | pre .doctype, 19 | pre .lisp .string, 20 | pre .javadoc { 21 | color: #586e75; 22 | font-style: italic; 23 | } 24 | 25 | pre .keyword, 26 | pre .css .rule .keyword, 27 | pre .winutils, 28 | pre .javascript .title, 29 | pre .method, 30 | pre .addition, 31 | pre .css .tag, 32 | pre .clojure .title, 33 | pre .nginx .title { 34 | color: #B64926; 35 | } 36 | 37 | pre .number, 38 | pre .command, 39 | pre .string, 40 | pre .tag .value, 41 | pre .phpdoc, 42 | pre .tex .formula, 43 | pre .regexp, 44 | pre .hexcolor { 45 | color: #468966; 46 | } 47 | 48 | pre .title, 49 | pre .localvars, 50 | pre .function .title, 51 | pre .chunk, 52 | pre .decorator, 53 | pre .built_in, 54 | pre .lisp .title, 55 | pre .clojure .built_in, 56 | pre .identifier, 57 | pre .id { 58 | color: #FFB03B; 59 | } 60 | 61 | pre .attribute, 62 | pre .variable, 63 | pre .lisp .body, 64 | pre .smalltalk .number, 65 | pre .constant, 66 | pre .class .title, 67 | pre .parent, 68 | pre .haskell .type { 69 | color: #b58900; 70 | } 71 | 72 | pre .css .attribute { 73 | color: #b89859; 74 | } 75 | 76 | pre .css .number,pre .css .hexcolor{ 77 | color: #DCCF8F; 78 | } 79 | 80 | pre .css .class { 81 | color: #d3a60c; 82 | } 83 | 84 | pre .preprocessor, 85 | pre .pi, 86 | pre .shebang, 87 | pre .symbol, 88 | pre .symbol .string, 89 | pre .diff .change, 90 | pre .special, 91 | pre .attr_selector, 92 | pre .important, 93 | pre .subst, 94 | pre .cdata { 95 | color: #cb4b16; 96 | } 97 | 98 | pre .deletion { 99 | color: #dc322f; 100 | } 101 | 102 | pre .tex .formula { 103 | background: #073642; 104 | } 105 | -------------------------------------------------------------------------------- /Project2 Local Feature Matching/html/highlighting/styles/pojoaque.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project2 Local Feature Matching/html/highlighting/styles/pojoaque.jpg -------------------------------------------------------------------------------- /Project2 Local Feature Matching/html/highlighting/styles/school_book.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project2 Local Feature Matching/html/highlighting/styles/school_book.png -------------------------------------------------------------------------------- /Project2 Local Feature Matching/html/highlighting/styles/solarized_dark.css: -------------------------------------------------------------------------------- 1 | /* 2 | 3 | Orginal Style from ethanschoonover.com/solarized (c) Jeremy Hull 4 | 5 | */ 6 | 7 | pre code { 8 | display: block; padding: 0.5em; 9 | background: #002b36; color: #839496; 10 | } 11 | 12 | pre .comment, 13 | pre .template_comment, 14 | pre .diff .header, 15 | pre .doctype, 16 | pre .pi, 17 | pre .lisp .string, 18 | pre .javadoc { 19 | color: #586e75; 20 | font-style: italic; 21 | } 22 | 23 | pre .keyword, 24 | pre .winutils, 25 | pre .method, 26 | pre .addition, 27 | pre .css .tag, 28 | pre .request, 29 | pre .status, 30 | pre .nginx .title { 31 | color: #859900; 32 | } 33 | 34 | pre .number, 35 | pre .command, 36 | pre .string, 37 | pre .tag .value, 38 | pre .phpdoc, 39 | pre .tex .formula, 40 | pre .regexp, 41 | pre .hexcolor { 42 | color: #2aa198; 43 | } 44 | 45 | pre .title, 46 | pre .localvars, 47 | pre .chunk, 48 | pre .decorator, 49 | pre .built_in, 50 | pre .identifier, 51 | pre .vhdl .literal, 52 | pre .id { 53 | color: #268bd2; 54 | } 55 | 56 | pre .attribute, 57 | pre .variable, 58 | pre .lisp .body, 59 | pre .smalltalk .number, 60 | pre .constant, 61 | pre .class .title, 62 | pre .parent, 63 | pre .haskell .type { 64 | color: #b58900; 65 | } 66 | 67 | pre .preprocessor, 68 | pre .preprocessor .keyword, 69 | pre .shebang, 70 | pre .symbol, 71 | pre .symbol .string, 72 | pre .diff .change, 73 | pre .special, 74 | pre .attr_selector, 75 | pre .important, 76 | pre .subst, 77 | pre .cdata, 78 | pre .clojure .title { 79 | color: #cb4b16; 80 | } 81 | 82 | pre .deletion { 83 | color: #dc322f; 84 | } 85 | 86 | pre .tex .formula { 87 | background: #073642; 88 | } 89 | -------------------------------------------------------------------------------- /Project2 Local Feature Matching/html/highlighting/styles/solarized_light.css: -------------------------------------------------------------------------------- 1 | /* 2 | 3 | Orginal Style from ethanschoonover.com/solarized (c) Jeremy Hull 4 | 5 | */ 6 | 7 | pre code { 8 | display: block; padding: 0.5em; 9 | background: #fdf6e3; color: #657b83; 10 | } 11 | 12 | pre .comment, 13 | pre .template_comment, 14 | pre .diff .header, 15 | pre .doctype, 16 | pre .pi, 17 | pre .lisp .string, 18 | pre .javadoc { 19 | color: #93a1a1; 20 | font-style: italic; 21 | } 22 | 23 | pre .keyword, 24 | pre .winutils, 25 | pre .method, 26 | pre .addition, 27 | pre .css .tag, 28 | pre .request, 29 | pre .status, 30 | pre .nginx .title { 31 | color: #859900; 32 | } 33 | 34 | pre .number, 35 | pre .command, 36 | pre .string, 37 | pre .tag .value, 38 | pre .phpdoc, 39 | pre .tex .formula, 40 | pre .regexp, 41 | pre .hexcolor { 42 | color: #2aa198; 43 | } 44 | 45 | pre .title, 46 | pre .localvars, 47 | pre .chunk, 48 | pre .decorator, 49 | pre .built_in, 50 | pre .identifier, 51 | pre .vhdl .literal, 52 | pre .id { 53 | color: #268bd2; 54 | } 55 | 56 | pre .attribute, 57 | pre .variable, 58 | pre .lisp .body, 59 | pre .smalltalk .number, 60 | pre .constant, 61 | pre .class .title, 62 | pre .parent, 63 | pre .haskell .type { 64 | color: #b58900; 65 | } 66 | 67 | pre .preprocessor, 68 | pre .preprocessor .keyword, 69 | pre .shebang, 70 | pre .symbol, 71 | pre .symbol .string, 72 | pre .diff .change, 73 | pre .special, 74 | pre .attr_selector, 75 | pre .important, 76 | pre .subst, 77 | pre .cdata, 78 | pre .clojure .title { 79 | color: #cb4b16; 80 | } 81 | 82 | pre .deletion { 83 | color: #dc322f; 84 | } 85 | 86 | pre .tex .formula { 87 | background: #eee8d5; 88 | } 89 | -------------------------------------------------------------------------------- /Project2 Local Feature Matching/html/highlighting/styles/tomorrow-night-blue.css: -------------------------------------------------------------------------------- 1 | /* Tomorrow Night Blue Theme */ 2 | /* http://jmblog.github.com/color-themes-for-google-code-highlightjs */ 3 | /* Original theme - https://github.com/chriskempson/tomorrow-theme */ 4 | /* http://jmblog.github.com/color-themes-for-google-code-highlightjs */ 5 | .tomorrow-comment, pre .comment, pre .title { 6 | color: #7285b7; 7 | } 8 | 9 | .tomorrow-red, pre .variable, pre .attribute, pre .tag, pre .regexp, pre .ruby .constant, pre .xml .tag .title, pre .xml .pi, pre .xml .doctype, pre .html .doctype, pre .css .id, pre .css .class, pre .css .pseudo { 10 | color: #ff9da4; 11 | } 12 | 13 | .tomorrow-orange, pre .number, pre .preprocessor, pre .built_in, pre .literal, pre .params, pre .constant { 14 | color: #ffc58f; 15 | } 16 | 17 | .tomorrow-yellow, pre .class, pre .ruby .class .title, pre .css .rules .attribute { 18 | color: #ffeead; 19 | } 20 | 21 | .tomorrow-green, pre .string, pre .value, pre .inheritance, pre .header, pre .ruby .symbol, pre .xml .cdata { 22 | color: #d1f1a9; 23 | } 24 | 25 | .tomorrow-aqua, pre .css .hexcolor { 26 | color: #99ffff; 27 | } 28 | 29 | .tomorrow-blue, pre .function, pre .python .decorator, pre .python .title, pre .ruby .function .title, pre .ruby .title .keyword, pre .perl .sub, pre .javascript .title, pre .coffeescript .title { 30 | color: #bbdaff; 31 | } 32 | 33 | .tomorrow-purple, pre .keyword, pre .javascript .function { 34 | color: #ebbbff; 35 | } 36 | 37 | pre code { 38 | display: block; 39 | background: #002451; 40 | color: white; 41 | padding: 0.5em; 42 | } 43 | 44 | pre .coffeescript .javascript, 45 | pre .javascript .xml, 46 | pre .tex .formula, 47 | pre .xml .javascript, 48 | pre .xml .vbscript, 49 | pre .xml .css, 50 | pre .xml .cdata { 51 | opacity: 0.5; 52 | } 53 | -------------------------------------------------------------------------------- /Project2 Local Feature Matching/html/highlighting/styles/tomorrow-night-bright.css: -------------------------------------------------------------------------------- 1 | /* Tomorrow Night Bright Theme */ 2 | /* Original theme - https://github.com/chriskempson/tomorrow-theme */ 3 | /* http://jmblog.github.com/color-themes-for-google-code-highlightjs */ 4 | .tomorrow-comment, pre .comment, pre .title { 5 | color: #969896; 6 | } 7 | 8 | .tomorrow-red, pre .variable, pre .attribute, pre .tag, pre .regexp, pre .ruby .constant, pre .xml .tag .title, pre .xml .pi, pre .xml .doctype, pre .html .doctype, pre .css .id, pre .css .class, pre .css .pseudo { 9 | color: #d54e53; 10 | } 11 | 12 | .tomorrow-orange, pre .number, pre .preprocessor, pre .built_in, pre .literal, pre .params, pre .constant { 13 | color: #e78c45; 14 | } 15 | 16 | .tomorrow-yellow, pre .class, pre .ruby .class .title, pre .css .rules .attribute { 17 | color: #e7c547; 18 | } 19 | 20 | .tomorrow-green, pre .string, pre .value, pre .inheritance, pre .header, pre .ruby .symbol, pre .xml .cdata { 21 | color: #b9ca4a; 22 | } 23 | 24 | .tomorrow-aqua, pre .css .hexcolor { 25 | color: #70c0b1; 26 | } 27 | 28 | .tomorrow-blue, pre .function, pre .python .decorator, pre .python .title, pre .ruby .function .title, pre .ruby .title .keyword, pre .perl .sub, pre .javascript .title, pre .coffeescript .title { 29 | color: #7aa6da; 30 | } 31 | 32 | .tomorrow-purple, pre .keyword, pre .javascript .function { 33 | color: #c397d8; 34 | } 35 | 36 | pre code { 37 | display: block; 38 | background: black; 39 | color: #eaeaea; 40 | padding: 0.5em; 41 | } 42 | 43 | pre .coffeescript .javascript, 44 | pre .javascript .xml, 45 | pre .tex .formula, 46 | pre .xml .javascript, 47 | pre .xml .vbscript, 48 | pre .xml .css, 49 | pre .xml .cdata { 50 | opacity: 0.5; 51 | } 52 | -------------------------------------------------------------------------------- /Project2 Local Feature Matching/html/highlighting/styles/tomorrow-night-eighties.css: -------------------------------------------------------------------------------- 1 | /* Tomorrow Night Eighties Theme */ 2 | /* Original theme - https://github.com/chriskempson/tomorrow-theme */ 3 | /* http://jmblog.github.com/color-themes-for-google-code-highlightjs */ 4 | .tomorrow-comment, pre .comment, pre .title { 5 | color: #999999; 6 | } 7 | 8 | .tomorrow-red, pre .variable, pre .attribute, pre .tag, pre .regexp, pre .ruby .constant, pre .xml .tag .title, pre .xml .pi, pre .xml .doctype, pre .html .doctype, pre .css .id, pre .css .class, pre .css .pseudo { 9 | color: #f2777a; 10 | } 11 | 12 | .tomorrow-orange, pre .number, pre .preprocessor, pre .built_in, pre .literal, pre .params, pre .constant { 13 | color: #f99157; 14 | } 15 | 16 | .tomorrow-yellow, pre .class, pre .ruby .class .title, pre .css .rules .attribute { 17 | color: #ffcc66; 18 | } 19 | 20 | .tomorrow-green, pre .string, pre .value, pre .inheritance, pre .header, pre .ruby .symbol, pre .xml .cdata { 21 | color: #99cc99; 22 | } 23 | 24 | .tomorrow-aqua, pre .css .hexcolor { 25 | color: #66cccc; 26 | } 27 | 28 | .tomorrow-blue, pre .function, pre .python .decorator, pre .python .title, pre .ruby .function .title, pre .ruby .title .keyword, pre .perl .sub, pre .javascript .title, pre .coffeescript .title { 29 | color: #6699cc; 30 | } 31 | 32 | .tomorrow-purple, pre .keyword, pre .javascript .function { 33 | color: #cc99cc; 34 | } 35 | 36 | pre code { 37 | display: block; 38 | background: #2d2d2d; 39 | color: #cccccc; 40 | padding: 0.5em; 41 | } 42 | 43 | pre .coffeescript .javascript, 44 | pre .javascript .xml, 45 | pre .tex .formula, 46 | pre .xml .javascript, 47 | pre .xml .vbscript, 48 | pre .xml .css, 49 | pre .xml .cdata { 50 | opacity: 0.5; 51 | } 52 | -------------------------------------------------------------------------------- /Project2 Local Feature Matching/html/highlighting/styles/tomorrow-night.css: -------------------------------------------------------------------------------- 1 | /* Tomorrow Night Theme */ 2 | /* http://jmblog.github.com/color-themes-for-google-code-highlightjs */ 3 | /* Original theme - https://github.com/chriskempson/tomorrow-theme */ 4 | /* http://jmblog.github.com/color-themes-for-google-code-highlightjs */ 5 | .tomorrow-comment, pre .comment, pre .title { 6 | color: #969896; 7 | } 8 | 9 | .tomorrow-red, pre .variable, pre .attribute, pre .tag, pre .regexp, pre .ruby .constant, pre .xml .tag .title, pre .xml .pi, pre .xml .doctype, pre .html .doctype, pre .css .id, pre .css .class, pre .css .pseudo { 10 | color: #cc6666; 11 | } 12 | 13 | .tomorrow-orange, pre .number, pre .preprocessor, pre .built_in, pre .literal, pre .params, pre .constant { 14 | color: #de935f; 15 | } 16 | 17 | .tomorrow-yellow, pre .class, pre .ruby .class .title, pre .css .rules .attribute { 18 | color: #f0c674; 19 | } 20 | 21 | .tomorrow-green, pre .string, pre .value, pre .inheritance, pre .header, pre .ruby .symbol, pre .xml .cdata { 22 | color: #b5bd68; 23 | } 24 | 25 | .tomorrow-aqua, pre .css .hexcolor { 26 | color: #8abeb7; 27 | } 28 | 29 | .tomorrow-blue, pre .function, pre .python .decorator, pre .python .title, pre .ruby .function .title, pre .ruby .title .keyword, pre .perl .sub, pre .javascript .title, pre .coffeescript .title { 30 | color: #81a2be; 31 | } 32 | 33 | .tomorrow-purple, pre .keyword, pre .javascript .function { 34 | color: #b294bb; 35 | } 36 | 37 | pre code { 38 | display: block; 39 | background: #1d1f21; 40 | color: #c5c8c6; 41 | padding: 0.5em; 42 | } 43 | 44 | pre .coffeescript .javascript, 45 | pre .javascript .xml, 46 | pre .tex .formula, 47 | pre .xml .javascript, 48 | pre .xml .vbscript, 49 | pre .xml .css, 50 | pre .xml .cdata { 51 | opacity: 0.5; 52 | } 53 | -------------------------------------------------------------------------------- /Project2 Local Feature Matching/html/highlighting/styles/tomorrow.css: -------------------------------------------------------------------------------- 1 | /* http://jmblog.github.com/color-themes-for-google-code-highlightjs */ 2 | .tomorrow-comment, pre .comment, pre .title { 3 | color: #8e908c; 4 | } 5 | 6 | .tomorrow-red, pre .variable, pre .attribute, pre .tag, pre .regexp, pre .ruby .constant, pre .xml .tag .title, pre .xml .pi, pre .xml .doctype, pre .html .doctype, pre .css .id, pre .css .class, pre .css .pseudo { 7 | color: #c82829; 8 | } 9 | 10 | .tomorrow-orange, pre .number, pre .preprocessor, pre .built_in, pre .literal, pre .params, pre .constant { 11 | color: #f5871f; 12 | } 13 | 14 | .tomorrow-yellow, pre .class, pre .ruby .class .title, pre .css .rules .attribute { 15 | color: #eab700; 16 | } 17 | 18 | .tomorrow-green, pre .string, pre .value, pre .inheritance, pre .header, pre .ruby .symbol, pre .xml .cdata { 19 | color: #718c00; 20 | } 21 | 22 | .tomorrow-aqua, pre .css .hexcolor { 23 | color: #3e999f; 24 | } 25 | 26 | .tomorrow-blue, pre .function, pre .python .decorator, pre .python .title, pre .ruby .function .title, pre .ruby .title .keyword, pre .perl .sub, pre .javascript .title, pre .coffeescript .title { 27 | color: #4271ae; 28 | } 29 | 30 | .tomorrow-purple, pre .keyword, pre .javascript .function { 31 | color: #8959a8; 32 | } 33 | 34 | pre code { 35 | display: block; 36 | background: white; 37 | color: #4d4d4c; 38 | padding: 0.5em; 39 | } 40 | 41 | pre .coffeescript .javascript, 42 | pre .javascript .xml, 43 | pre .tex .formula, 44 | pre .xml .javascript, 45 | pre .xml .vbscript, 46 | pre .xml .css, 47 | pre .xml .cdata { 48 | opacity: 0.5; 49 | } 50 | -------------------------------------------------------------------------------- /Project2 Local Feature Matching/html/highlighting/styles/vs.css: -------------------------------------------------------------------------------- 1 | /* 2 | 3 | Visual Studio-like style based on original C# coloring by Jason Diamond 4 | 5 | */ 6 | pre code { 7 | display: block; padding: 0.5em; 8 | } 9 | 10 | pre .comment, 11 | pre .annotation, 12 | pre .template_comment, 13 | pre .diff .header, 14 | pre .chunk, 15 | pre .apache .cbracket { 16 | color: rgb(0, 128, 0); 17 | } 18 | 19 | pre .keyword, 20 | pre .id, 21 | pre .built_in, 22 | pre .smalltalk .class, 23 | pre .winutils, 24 | pre .bash .variable, 25 | pre .tex .command, 26 | pre .request, 27 | pre .status, 28 | pre .nginx .title, 29 | pre .xml .tag, 30 | pre .xml .tag .value { 31 | color: rgb(0, 0, 255); 32 | } 33 | 34 | pre .string, 35 | pre .title, 36 | pre .parent, 37 | pre .tag .value, 38 | pre .rules .value, 39 | pre .rules .value .number, 40 | pre .ruby .symbol, 41 | pre .ruby .symbol .string, 42 | pre .aggregate, 43 | pre .template_tag, 44 | pre .django .variable, 45 | pre .addition, 46 | pre .flow, 47 | pre .stream, 48 | pre .apache .tag, 49 | pre .date, 50 | pre .tex .formula { 51 | color: rgb(163, 21, 21); 52 | } 53 | 54 | pre .ruby .string, 55 | pre .decorator, 56 | pre .filter .argument, 57 | pre .localvars, 58 | pre .array, 59 | pre .attr_selector, 60 | pre .pseudo, 61 | pre .pi, 62 | pre .doctype, 63 | pre .deletion, 64 | pre .envvar, 65 | pre .shebang, 66 | pre .preprocessor, 67 | pre .userType, 68 | pre .apache .sqbracket, 69 | pre .nginx .built_in, 70 | pre .tex .special, 71 | pre .prompt { 72 | color: rgb(43, 145, 175); 73 | } 74 | 75 | pre .phpdoc, 76 | pre .javadoc, 77 | pre .xmlDocTag { 78 | color: rgb(128, 128, 128); 79 | } 80 | 81 | pre .vhdl .typename { font-weight: bold; } 82 | pre .vhdl .string { color: #666666; } 83 | pre .vhdl .literal { color: rgb(163, 21, 21); } 84 | pre .vhdl .attribute { color: #00B0E8; } 85 | 86 | pre .xml .attribute { color: rgb(255, 0, 0); } 87 | -------------------------------------------------------------------------------- /Project3 Camera Calibration and Fundamental Matrix Estimation with RANSAC/READMe.md: -------------------------------------------------------------------------------- 1 | # CS 6476 project 3: [Camera Calibration and Fundamental Matrix Estimation with RANSAC](https://www.cc.gatech.edu/~hays/compvision/proj3/) 2 | 3 | # Setup 4 | - Install [Miniconda](https://conda.io/miniconda). It doesn't matter whether you use 2.7 or 3.6 because we will create our own environment anyways. 5 | - Create a conda environment using the given file by modifying the following command based on your OS (`linux`, `mac`, or `win`): `conda env create -f environment_.yml` 6 | - This should create an environment named `cs6476`. Activate it using the following Windows command: `activate cs6476` or the following MacOS / Linux command: `source activate cs6476`. 7 | - Run the notebook using: `jupyter notebook ./code/proj3.ipynb` 8 | - Generate the submission once you're finished using `python zip_submission.py` 9 | 10 | In the code i provided, I set the iteration time in RANSAC as 500, and the threshold as 0.06. But actually I tested different iteration time and threshold in different datasets. And I also tested the non-normalized data in calculating projection matrix and camera center. And I only randomly output 50 epipolars in my index.html. Basically if you just need to verify the correctness of my program, you can just run it without any input rectification. 11 | -------------------------------------------------------------------------------- /Project3 Camera Calibration and Fundamental Matrix Estimation with RANSAC/code/__pycache__/student_code.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project3 Camera Calibration and Fundamental Matrix Estimation with RANSAC/code/__pycache__/student_code.cpython-35.pyc -------------------------------------------------------------------------------- /Project3 Camera Calibration and Fundamental Matrix Estimation with RANSAC/code/__pycache__/utils.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project3 Camera Calibration and Fundamental Matrix Estimation with RANSAC/code/__pycache__/utils.cpython-35.pyc -------------------------------------------------------------------------------- /Project3 Camera Calibration and Fundamental Matrix Estimation with RANSAC/html/1.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project3 Camera Calibration and Fundamental Matrix Estimation with RANSAC/html/1.1.png -------------------------------------------------------------------------------- /Project3 Camera Calibration and Fundamental Matrix Estimation with RANSAC/html/1.2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project3 Camera Calibration and Fundamental Matrix Estimation with RANSAC/html/1.2.png -------------------------------------------------------------------------------- /Project3 Camera Calibration and Fundamental Matrix Estimation with RANSAC/html/1.3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project3 Camera Calibration and Fundamental Matrix Estimation with RANSAC/html/1.3.png -------------------------------------------------------------------------------- /Project3 Camera Calibration and Fundamental Matrix Estimation with RANSAC/html/1_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project3 Camera Calibration and Fundamental Matrix Estimation with RANSAC/html/1_1.png -------------------------------------------------------------------------------- /Project3 Camera Calibration and Fundamental Matrix Estimation with RANSAC/html/1_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project3 Camera Calibration and Fundamental Matrix Estimation with RANSAC/html/1_2.png -------------------------------------------------------------------------------- /Project3 Camera Calibration and Fundamental Matrix Estimation with RANSAC/html/1_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project3 Camera Calibration and Fundamental Matrix Estimation with RANSAC/html/1_3.png -------------------------------------------------------------------------------- /Project3 Camera Calibration and Fundamental Matrix Estimation with RANSAC/html/2.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project3 Camera Calibration and Fundamental Matrix Estimation with RANSAC/html/2.1.png -------------------------------------------------------------------------------- /Project3 Camera Calibration and Fundamental Matrix Estimation with RANSAC/html/2.2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project3 Camera Calibration and Fundamental Matrix Estimation with RANSAC/html/2.2.png -------------------------------------------------------------------------------- /Project3 Camera Calibration and Fundamental Matrix Estimation with RANSAC/html/2.3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project3 Camera Calibration and Fundamental Matrix Estimation with RANSAC/html/2.3.png -------------------------------------------------------------------------------- /Project3 Camera Calibration and Fundamental Matrix Estimation with RANSAC/html/2_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project3 Camera Calibration and Fundamental Matrix Estimation with RANSAC/html/2_1.png -------------------------------------------------------------------------------- /Project3 Camera Calibration and Fundamental Matrix Estimation with RANSAC/html/2_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project3 Camera Calibration and Fundamental Matrix Estimation with RANSAC/html/2_2.png -------------------------------------------------------------------------------- /Project3 Camera Calibration and Fundamental Matrix Estimation with RANSAC/html/2_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project3 Camera Calibration and Fundamental Matrix Estimation with RANSAC/html/2_3.png -------------------------------------------------------------------------------- /Project3 Camera Calibration and Fundamental Matrix Estimation with RANSAC/html/3.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project3 Camera Calibration and Fundamental Matrix Estimation with RANSAC/html/3.1.png -------------------------------------------------------------------------------- /Project3 Camera Calibration and Fundamental Matrix Estimation with RANSAC/html/3.2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project3 Camera Calibration and Fundamental Matrix Estimation with RANSAC/html/3.2.png -------------------------------------------------------------------------------- /Project3 Camera Calibration and Fundamental Matrix Estimation with RANSAC/html/3.3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project3 Camera Calibration and Fundamental Matrix Estimation with RANSAC/html/3.3.png -------------------------------------------------------------------------------- /Project3 Camera Calibration and Fundamental Matrix Estimation with RANSAC/html/3_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project3 Camera Calibration and Fundamental Matrix Estimation with RANSAC/html/3_1.png -------------------------------------------------------------------------------- /Project3 Camera Calibration and Fundamental Matrix Estimation with RANSAC/html/3_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project3 Camera Calibration and Fundamental Matrix Estimation with RANSAC/html/3_2.png -------------------------------------------------------------------------------- /Project3 Camera Calibration and Fundamental Matrix Estimation with RANSAC/html/3_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project3 Camera Calibration and Fundamental Matrix Estimation with RANSAC/html/3_3.png -------------------------------------------------------------------------------- /Project3 Camera Calibration and Fundamental Matrix Estimation with RANSAC/html/4.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project3 Camera Calibration and Fundamental Matrix Estimation with RANSAC/html/4.1.png -------------------------------------------------------------------------------- /Project3 Camera Calibration and Fundamental Matrix Estimation with RANSAC/html/4.2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project3 Camera Calibration and Fundamental Matrix Estimation with RANSAC/html/4.2.png -------------------------------------------------------------------------------- /Project3 Camera Calibration and Fundamental Matrix Estimation with RANSAC/html/4.3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project3 Camera Calibration and Fundamental Matrix Estimation with RANSAC/html/4.3.png -------------------------------------------------------------------------------- /Project3 Camera Calibration and Fundamental Matrix Estimation with RANSAC/html/4_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project3 Camera Calibration and Fundamental Matrix Estimation with RANSAC/html/4_1.png -------------------------------------------------------------------------------- /Project3 Camera Calibration and Fundamental Matrix Estimation with RANSAC/html/4_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project3 Camera Calibration and Fundamental Matrix Estimation with RANSAC/html/4_2.png -------------------------------------------------------------------------------- /Project3 Camera Calibration and Fundamental Matrix Estimation with RANSAC/html/4_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project3 Camera Calibration and Fundamental Matrix Estimation with RANSAC/html/4_3.png -------------------------------------------------------------------------------- /Project3 Camera Calibration and Fundamental Matrix Estimation with RANSAC/html/F1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project3 Camera Calibration and Fundamental Matrix Estimation with RANSAC/html/F1.png -------------------------------------------------------------------------------- /Project3 Camera Calibration and Fundamental Matrix Estimation with RANSAC/html/F2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project3 Camera Calibration and Fundamental Matrix Estimation with RANSAC/html/F2.png -------------------------------------------------------------------------------- /Project3 Camera Calibration and Fundamental Matrix Estimation with RANSAC/html/F_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project3 Camera Calibration and Fundamental Matrix Estimation with RANSAC/html/F_1.png -------------------------------------------------------------------------------- /Project3 Camera Calibration and Fundamental Matrix Estimation with RANSAC/html/F_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project3 Camera Calibration and Fundamental Matrix Estimation with RANSAC/html/F_2.png -------------------------------------------------------------------------------- /Project3 Camera Calibration and Fundamental Matrix Estimation with RANSAC/html/cc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project3 Camera Calibration and Fundamental Matrix Estimation with RANSAC/html/cc.png -------------------------------------------------------------------------------- /Project3 Camera Calibration and Fundamental Matrix Estimation with RANSAC/html/cc2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project3 Camera Calibration and Fundamental Matrix Estimation with RANSAC/html/cc2.png -------------------------------------------------------------------------------- /Project3 Camera Calibration and Fundamental Matrix Estimation with RANSAC/html/highlighting/LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (c) 2006, Ivan Sagalaev 2 | All rights reserved. 3 | Redistribution and use in source and binary forms, with or without 4 | modification, are permitted provided that the following conditions are met: 5 | 6 | * Redistributions of source code must retain the above copyright 7 | notice, this list of conditions and the following disclaimer. 8 | * Redistributions in binary form must reproduce the above copyright 9 | notice, this list of conditions and the following disclaimer in the 10 | documentation and/or other materials provided with the distribution. 11 | * Neither the name of highlight.js nor the names of its contributors 12 | may be used to endorse or promote products derived from this software 13 | without specific prior written permission. 14 | 15 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND ANY 16 | EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED 17 | WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE 18 | DISCLAIMED. IN NO EVENT SHALL THE REGENTS AND CONTRIBUTORS BE LIABLE FOR ANY 19 | DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES 20 | (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; 21 | LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND 22 | ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 23 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS 24 | SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 25 | -------------------------------------------------------------------------------- /Project3 Camera Calibration and Fundamental Matrix Estimation with RANSAC/html/highlighting/styles/ascetic.css: -------------------------------------------------------------------------------- 1 | /* 2 | 3 | Original style from softwaremaniacs.org (c) Ivan Sagalaev 4 | 5 | */ 6 | 7 | pre code { 8 | display: block; padding: 0.5em; 9 | background: white; color: black; 10 | } 11 | 12 | pre .string, 13 | pre .tag .value, 14 | pre .filter .argument, 15 | pre .addition, 16 | pre .change, 17 | pre .apache .tag, 18 | pre .apache .cbracket, 19 | pre .nginx .built_in, 20 | pre .tex .formula { 21 | color: #888; 22 | } 23 | 24 | pre .comment, 25 | pre .template_comment, 26 | pre .shebang, 27 | pre .doctype, 28 | pre .pi, 29 | pre .javadoc, 30 | pre .deletion, 31 | pre .apache .sqbracket { 32 | color: #CCC; 33 | } 34 | 35 | pre .keyword, 36 | pre .tag .title, 37 | pre .ini .title, 38 | pre .lisp .title, 39 | pre .clojure .title, 40 | pre .http .title, 41 | pre .nginx .title, 42 | pre .css .tag, 43 | pre .winutils, 44 | pre .flow, 45 | pre .apache .tag, 46 | pre .tex .command, 47 | pre .request, 48 | pre .status { 49 | font-weight: bold; 50 | } 51 | -------------------------------------------------------------------------------- /Project3 Camera Calibration and Fundamental Matrix Estimation with RANSAC/html/highlighting/styles/brown_papersq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project3 Camera Calibration and Fundamental Matrix Estimation with RANSAC/html/highlighting/styles/brown_papersq.png -------------------------------------------------------------------------------- /Project3 Camera Calibration and Fundamental Matrix Estimation with RANSAC/html/highlighting/styles/ir_black.css: -------------------------------------------------------------------------------- 1 | /* 2 | IR_Black style (c) Vasily Mikhailitchenko 3 | */ 4 | 5 | pre code { 6 | display: block; padding: 0.5em; 7 | background: #000; color: #f8f8f8; 8 | } 9 | 10 | pre .shebang, 11 | pre .comment, 12 | pre .template_comment, 13 | pre .javadoc { 14 | color: #7c7c7c; 15 | } 16 | 17 | pre .keyword, 18 | pre .tag, 19 | pre .tex .command, 20 | pre .request, 21 | pre .status, 22 | pre .clojure .attribute { 23 | color: #96CBFE; 24 | } 25 | 26 | pre .sub .keyword, 27 | pre .method, 28 | pre .list .title, 29 | pre .nginx .title { 30 | color: #FFFFB6; 31 | } 32 | 33 | pre .string, 34 | pre .tag .value, 35 | pre .cdata, 36 | pre .filter .argument, 37 | pre .attr_selector, 38 | pre .apache .cbracket, 39 | pre .date { 40 | color: #A8FF60; 41 | } 42 | 43 | pre .subst { 44 | color: #DAEFA3; 45 | } 46 | 47 | pre .regexp { 48 | color: #E9C062; 49 | } 50 | 51 | pre .title, 52 | pre .sub .identifier, 53 | pre .pi, 54 | pre .decorator, 55 | pre .tex .special, 56 | pre .haskell .type, 57 | pre .constant, 58 | pre .smalltalk .class, 59 | pre .javadoctag, 60 | pre .yardoctag, 61 | pre .phpdoc, 62 | pre .nginx .built_in { 63 | color: #FFFFB6; 64 | } 65 | 66 | pre .symbol, 67 | pre .ruby .symbol .string, 68 | pre .number, 69 | pre .variable, 70 | pre .vbscript, 71 | pre .literal { 72 | color: #C6C5FE; 73 | } 74 | 75 | pre .css .tag { 76 | color: #96CBFE; 77 | } 78 | 79 | pre .css .rules .property, 80 | pre .css .id { 81 | color: #FFFFB6; 82 | } 83 | 84 | pre .css .class { 85 | color: #FFF; 86 | } 87 | 88 | pre .hexcolor { 89 | color: #C6C5FE; 90 | } 91 | 92 | pre .number { 93 | color:#FF73FD; 94 | } 95 | 96 | pre .coffeescript .javascript, 97 | pre .javascript .xml, 98 | pre .tex .formula, 99 | pre .xml .javascript, 100 | pre .xml .vbscript, 101 | pre .xml .css, 102 | pre .xml .cdata { 103 | opacity: 0.7; 104 | } 105 | -------------------------------------------------------------------------------- /Project3 Camera Calibration and Fundamental Matrix Estimation with RANSAC/html/highlighting/styles/pojoaque.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project3 Camera Calibration and Fundamental Matrix Estimation with RANSAC/html/highlighting/styles/pojoaque.jpg -------------------------------------------------------------------------------- /Project3 Camera Calibration and Fundamental Matrix Estimation with RANSAC/html/highlighting/styles/school_book.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project3 Camera Calibration and Fundamental Matrix Estimation with RANSAC/html/highlighting/styles/school_book.png -------------------------------------------------------------------------------- /Project3 Camera Calibration and Fundamental Matrix Estimation with RANSAC/html/highlighting/styles/solarized_dark.css: -------------------------------------------------------------------------------- 1 | /* 2 | 3 | Orginal Style from ethanschoonover.com/solarized (c) Jeremy Hull 4 | 5 | */ 6 | 7 | pre code { 8 | display: block; padding: 0.5em; 9 | background: #002b36; color: #839496; 10 | } 11 | 12 | pre .comment, 13 | pre .template_comment, 14 | pre .diff .header, 15 | pre .doctype, 16 | pre .pi, 17 | pre .lisp .string, 18 | pre .javadoc { 19 | color: #586e75; 20 | font-style: italic; 21 | } 22 | 23 | pre .keyword, 24 | pre .winutils, 25 | pre .method, 26 | pre .addition, 27 | pre .css .tag, 28 | pre .request, 29 | pre .status, 30 | pre .nginx .title { 31 | color: #859900; 32 | } 33 | 34 | pre .number, 35 | pre .command, 36 | pre .string, 37 | pre .tag .value, 38 | pre .phpdoc, 39 | pre .tex .formula, 40 | pre .regexp, 41 | pre .hexcolor { 42 | color: #2aa198; 43 | } 44 | 45 | pre .title, 46 | pre .localvars, 47 | pre .chunk, 48 | pre .decorator, 49 | pre .built_in, 50 | pre .identifier, 51 | pre .vhdl .literal, 52 | pre .id { 53 | color: #268bd2; 54 | } 55 | 56 | pre .attribute, 57 | pre .variable, 58 | pre .lisp .body, 59 | pre .smalltalk .number, 60 | pre .constant, 61 | pre .class .title, 62 | pre .parent, 63 | pre .haskell .type { 64 | color: #b58900; 65 | } 66 | 67 | pre .preprocessor, 68 | pre .preprocessor .keyword, 69 | pre .shebang, 70 | pre .symbol, 71 | pre .symbol .string, 72 | pre .diff .change, 73 | pre .special, 74 | pre .attr_selector, 75 | pre .important, 76 | pre .subst, 77 | pre .cdata, 78 | pre .clojure .title { 79 | color: #cb4b16; 80 | } 81 | 82 | pre .deletion { 83 | color: #dc322f; 84 | } 85 | 86 | pre .tex .formula { 87 | background: #073642; 88 | } 89 | -------------------------------------------------------------------------------- /Project3 Camera Calibration and Fundamental Matrix Estimation with RANSAC/html/highlighting/styles/solarized_light.css: -------------------------------------------------------------------------------- 1 | /* 2 | 3 | Orginal Style from ethanschoonover.com/solarized (c) Jeremy Hull 4 | 5 | */ 6 | 7 | pre code { 8 | display: block; padding: 0.5em; 9 | background: #fdf6e3; color: #657b83; 10 | } 11 | 12 | pre .comment, 13 | pre .template_comment, 14 | pre .diff .header, 15 | pre .doctype, 16 | pre .pi, 17 | pre .lisp .string, 18 | pre .javadoc { 19 | color: #93a1a1; 20 | font-style: italic; 21 | } 22 | 23 | pre .keyword, 24 | pre .winutils, 25 | pre .method, 26 | pre .addition, 27 | pre .css .tag, 28 | pre .request, 29 | pre .status, 30 | pre .nginx .title { 31 | color: #859900; 32 | } 33 | 34 | pre .number, 35 | pre .command, 36 | pre .string, 37 | pre .tag .value, 38 | pre .phpdoc, 39 | pre .tex .formula, 40 | pre .regexp, 41 | pre .hexcolor { 42 | color: #2aa198; 43 | } 44 | 45 | pre .title, 46 | pre .localvars, 47 | pre .chunk, 48 | pre .decorator, 49 | pre .built_in, 50 | pre .identifier, 51 | pre .vhdl .literal, 52 | pre .id { 53 | color: #268bd2; 54 | } 55 | 56 | pre .attribute, 57 | pre .variable, 58 | pre .lisp .body, 59 | pre .smalltalk .number, 60 | pre .constant, 61 | pre .class .title, 62 | pre .parent, 63 | pre .haskell .type { 64 | color: #b58900; 65 | } 66 | 67 | pre .preprocessor, 68 | pre .preprocessor .keyword, 69 | pre .shebang, 70 | pre .symbol, 71 | pre .symbol .string, 72 | pre .diff .change, 73 | pre .special, 74 | pre .attr_selector, 75 | pre .important, 76 | pre .subst, 77 | pre .cdata, 78 | pre .clojure .title { 79 | color: #cb4b16; 80 | } 81 | 82 | pre .deletion { 83 | color: #dc322f; 84 | } 85 | 86 | pre .tex .formula { 87 | background: #eee8d5; 88 | } 89 | -------------------------------------------------------------------------------- /Project3 Camera Calibration and Fundamental Matrix Estimation with RANSAC/html/highlighting/styles/tomorrow-night-blue.css: -------------------------------------------------------------------------------- 1 | /* Tomorrow Night Blue Theme */ 2 | /* http://jmblog.github.com/color-themes-for-google-code-highlightjs */ 3 | /* Original theme - https://github.com/chriskempson/tomorrow-theme */ 4 | /* http://jmblog.github.com/color-themes-for-google-code-highlightjs */ 5 | .tomorrow-comment, pre .comment, pre .title { 6 | color: #7285b7; 7 | } 8 | 9 | .tomorrow-red, pre .variable, pre .attribute, pre .tag, pre .regexp, pre .ruby .constant, pre .xml .tag .title, pre .xml .pi, pre .xml .doctype, pre .html .doctype, pre .css .id, pre .css .class, pre .css .pseudo { 10 | color: #ff9da4; 11 | } 12 | 13 | .tomorrow-orange, pre .number, pre .preprocessor, pre .built_in, pre .literal, pre .params, pre .constant { 14 | color: #ffc58f; 15 | } 16 | 17 | .tomorrow-yellow, pre .class, pre .ruby .class .title, pre .css .rules .attribute { 18 | color: #ffeead; 19 | } 20 | 21 | .tomorrow-green, pre .string, pre .value, pre .inheritance, pre .header, pre .ruby .symbol, pre .xml .cdata { 22 | color: #d1f1a9; 23 | } 24 | 25 | .tomorrow-aqua, pre .css .hexcolor { 26 | color: #99ffff; 27 | } 28 | 29 | .tomorrow-blue, pre .function, pre .python .decorator, pre .python .title, pre .ruby .function .title, pre .ruby .title .keyword, pre .perl .sub, pre .javascript .title, pre .coffeescript .title { 30 | color: #bbdaff; 31 | } 32 | 33 | .tomorrow-purple, pre .keyword, pre .javascript .function { 34 | color: #ebbbff; 35 | } 36 | 37 | pre code { 38 | display: block; 39 | background: #002451; 40 | color: white; 41 | padding: 0.5em; 42 | } 43 | 44 | pre .coffeescript .javascript, 45 | pre .javascript .xml, 46 | pre .tex .formula, 47 | pre .xml .javascript, 48 | pre .xml .vbscript, 49 | pre .xml .css, 50 | pre .xml .cdata { 51 | opacity: 0.5; 52 | } 53 | -------------------------------------------------------------------------------- /Project3 Camera Calibration and Fundamental Matrix Estimation with RANSAC/html/highlighting/styles/tomorrow-night-bright.css: -------------------------------------------------------------------------------- 1 | /* Tomorrow Night Bright Theme */ 2 | /* Original theme - https://github.com/chriskempson/tomorrow-theme */ 3 | /* http://jmblog.github.com/color-themes-for-google-code-highlightjs */ 4 | .tomorrow-comment, pre .comment, pre .title { 5 | color: #969896; 6 | } 7 | 8 | .tomorrow-red, pre .variable, pre .attribute, pre .tag, pre .regexp, pre .ruby .constant, pre .xml .tag .title, pre .xml .pi, pre .xml .doctype, pre .html .doctype, pre .css .id, pre .css .class, pre .css .pseudo { 9 | color: #d54e53; 10 | } 11 | 12 | .tomorrow-orange, pre .number, pre .preprocessor, pre .built_in, pre .literal, pre .params, pre .constant { 13 | color: #e78c45; 14 | } 15 | 16 | .tomorrow-yellow, pre .class, pre .ruby .class .title, pre .css .rules .attribute { 17 | color: #e7c547; 18 | } 19 | 20 | .tomorrow-green, pre .string, pre .value, pre .inheritance, pre .header, pre .ruby .symbol, pre .xml .cdata { 21 | color: #b9ca4a; 22 | } 23 | 24 | .tomorrow-aqua, pre .css .hexcolor { 25 | color: #70c0b1; 26 | } 27 | 28 | .tomorrow-blue, pre .function, pre .python .decorator, pre .python .title, pre .ruby .function .title, pre .ruby .title .keyword, pre .perl .sub, pre .javascript .title, pre .coffeescript .title { 29 | color: #7aa6da; 30 | } 31 | 32 | .tomorrow-purple, pre .keyword, pre .javascript .function { 33 | color: #c397d8; 34 | } 35 | 36 | pre code { 37 | display: block; 38 | background: black; 39 | color: #eaeaea; 40 | padding: 0.5em; 41 | } 42 | 43 | pre .coffeescript .javascript, 44 | pre .javascript .xml, 45 | pre .tex .formula, 46 | pre .xml .javascript, 47 | pre .xml .vbscript, 48 | pre .xml .css, 49 | pre .xml .cdata { 50 | opacity: 0.5; 51 | } 52 | -------------------------------------------------------------------------------- /Project3 Camera Calibration and Fundamental Matrix Estimation with RANSAC/html/highlighting/styles/tomorrow-night-eighties.css: -------------------------------------------------------------------------------- 1 | /* Tomorrow Night Eighties Theme */ 2 | /* Original theme - https://github.com/chriskempson/tomorrow-theme */ 3 | /* http://jmblog.github.com/color-themes-for-google-code-highlightjs */ 4 | .tomorrow-comment, pre .comment, pre .title { 5 | color: #999999; 6 | } 7 | 8 | .tomorrow-red, pre .variable, pre .attribute, pre .tag, pre .regexp, pre .ruby .constant, pre .xml .tag .title, pre .xml .pi, pre .xml .doctype, pre .html .doctype, pre .css .id, pre .css .class, pre .css .pseudo { 9 | color: #f2777a; 10 | } 11 | 12 | .tomorrow-orange, pre .number, pre .preprocessor, pre .built_in, pre .literal, pre .params, pre .constant { 13 | color: #f99157; 14 | } 15 | 16 | .tomorrow-yellow, pre .class, pre .ruby .class .title, pre .css .rules .attribute { 17 | color: #ffcc66; 18 | } 19 | 20 | .tomorrow-green, pre .string, pre .value, pre .inheritance, pre .header, pre .ruby .symbol, pre .xml .cdata { 21 | color: #99cc99; 22 | } 23 | 24 | .tomorrow-aqua, pre .css .hexcolor { 25 | color: #66cccc; 26 | } 27 | 28 | .tomorrow-blue, pre .function, pre .python .decorator, pre .python .title, pre .ruby .function .title, pre .ruby .title .keyword, pre .perl .sub, pre .javascript .title, pre .coffeescript .title { 29 | color: #6699cc; 30 | } 31 | 32 | .tomorrow-purple, pre .keyword, pre .javascript .function { 33 | color: #cc99cc; 34 | } 35 | 36 | pre code { 37 | display: block; 38 | background: #2d2d2d; 39 | color: #cccccc; 40 | padding: 0.5em; 41 | } 42 | 43 | pre .coffeescript .javascript, 44 | pre .javascript .xml, 45 | pre .tex .formula, 46 | pre .xml .javascript, 47 | pre .xml .vbscript, 48 | pre .xml .css, 49 | pre .xml .cdata { 50 | opacity: 0.5; 51 | } 52 | -------------------------------------------------------------------------------- /Project3 Camera Calibration and Fundamental Matrix Estimation with RANSAC/html/highlighting/styles/tomorrow-night.css: -------------------------------------------------------------------------------- 1 | /* Tomorrow Night Theme */ 2 | /* http://jmblog.github.com/color-themes-for-google-code-highlightjs */ 3 | /* Original theme - https://github.com/chriskempson/tomorrow-theme */ 4 | /* http://jmblog.github.com/color-themes-for-google-code-highlightjs */ 5 | .tomorrow-comment, pre .comment, pre .title { 6 | color: #969896; 7 | } 8 | 9 | .tomorrow-red, pre .variable, pre .attribute, pre .tag, pre .regexp, pre .ruby .constant, pre .xml .tag .title, pre .xml .pi, pre .xml .doctype, pre .html .doctype, pre .css .id, pre .css .class, pre .css .pseudo { 10 | color: #cc6666; 11 | } 12 | 13 | .tomorrow-orange, pre .number, pre .preprocessor, pre .built_in, pre .literal, pre .params, pre .constant { 14 | color: #de935f; 15 | } 16 | 17 | .tomorrow-yellow, pre .class, pre .ruby .class .title, pre .css .rules .attribute { 18 | color: #f0c674; 19 | } 20 | 21 | .tomorrow-green, pre .string, pre .value, pre .inheritance, pre .header, pre .ruby .symbol, pre .xml .cdata { 22 | color: #b5bd68; 23 | } 24 | 25 | .tomorrow-aqua, pre .css .hexcolor { 26 | color: #8abeb7; 27 | } 28 | 29 | .tomorrow-blue, pre .function, pre .python .decorator, pre .python .title, pre .ruby .function .title, pre .ruby .title .keyword, pre .perl .sub, pre .javascript .title, pre .coffeescript .title { 30 | color: #81a2be; 31 | } 32 | 33 | .tomorrow-purple, pre .keyword, pre .javascript .function { 34 | color: #b294bb; 35 | } 36 | 37 | pre code { 38 | display: block; 39 | background: #1d1f21; 40 | color: #c5c8c6; 41 | padding: 0.5em; 42 | } 43 | 44 | pre .coffeescript .javascript, 45 | pre .javascript .xml, 46 | pre .tex .formula, 47 | pre .xml .javascript, 48 | pre .xml .vbscript, 49 | pre .xml .css, 50 | pre .xml .cdata { 51 | opacity: 0.5; 52 | } 53 | -------------------------------------------------------------------------------- /Project3 Camera Calibration and Fundamental Matrix Estimation with RANSAC/html/highlighting/styles/tomorrow.css: -------------------------------------------------------------------------------- 1 | /* http://jmblog.github.com/color-themes-for-google-code-highlightjs */ 2 | .tomorrow-comment, pre .comment, pre .title { 3 | color: #8e908c; 4 | } 5 | 6 | .tomorrow-red, pre .variable, pre .attribute, pre .tag, pre .regexp, pre .ruby .constant, pre .xml .tag .title, pre .xml .pi, pre .xml .doctype, pre .html .doctype, pre .css .id, pre .css .class, pre .css .pseudo { 7 | color: #c82829; 8 | } 9 | 10 | .tomorrow-orange, pre .number, pre .preprocessor, pre .built_in, pre .literal, pre .params, pre .constant { 11 | color: #f5871f; 12 | } 13 | 14 | .tomorrow-yellow, pre .class, pre .ruby .class .title, pre .css .rules .attribute { 15 | color: #eab700; 16 | } 17 | 18 | .tomorrow-green, pre .string, pre .value, pre .inheritance, pre .header, pre .ruby .symbol, pre .xml .cdata { 19 | color: #718c00; 20 | } 21 | 22 | .tomorrow-aqua, pre .css .hexcolor { 23 | color: #3e999f; 24 | } 25 | 26 | .tomorrow-blue, pre .function, pre .python .decorator, pre .python .title, pre .ruby .function .title, pre .ruby .title .keyword, pre .perl .sub, pre .javascript .title, pre .coffeescript .title { 27 | color: #4271ae; 28 | } 29 | 30 | .tomorrow-purple, pre .keyword, pre .javascript .function { 31 | color: #8959a8; 32 | } 33 | 34 | pre code { 35 | display: block; 36 | background: white; 37 | color: #4d4d4c; 38 | padding: 0.5em; 39 | } 40 | 41 | pre .coffeescript .javascript, 42 | pre .javascript .xml, 43 | pre .tex .formula, 44 | pre .xml .javascript, 45 | pre .xml .vbscript, 46 | pre .xml .css, 47 | pre .xml .cdata { 48 | opacity: 0.5; 49 | } 50 | -------------------------------------------------------------------------------- /Project3 Camera Calibration and Fundamental Matrix Estimation with RANSAC/html/highlighting/styles/vs.css: -------------------------------------------------------------------------------- 1 | /* 2 | 3 | Visual Studio-like style based on original C# coloring by Jason Diamond 4 | 5 | */ 6 | pre code { 7 | display: block; padding: 0.5em; 8 | } 9 | 10 | pre .comment, 11 | pre .annotation, 12 | pre .template_comment, 13 | pre .diff .header, 14 | pre .chunk, 15 | pre .apache .cbracket { 16 | color: rgb(0, 128, 0); 17 | } 18 | 19 | pre .keyword, 20 | pre .id, 21 | pre .built_in, 22 | pre .smalltalk .class, 23 | pre .winutils, 24 | pre .bash .variable, 25 | pre .tex .command, 26 | pre .request, 27 | pre .status, 28 | pre .nginx .title, 29 | pre .xml .tag, 30 | pre .xml .tag .value { 31 | color: rgb(0, 0, 255); 32 | } 33 | 34 | pre .string, 35 | pre .title, 36 | pre .parent, 37 | pre .tag .value, 38 | pre .rules .value, 39 | pre .rules .value .number, 40 | pre .ruby .symbol, 41 | pre .ruby .symbol .string, 42 | pre .aggregate, 43 | pre .template_tag, 44 | pre .django .variable, 45 | pre .addition, 46 | pre .flow, 47 | pre .stream, 48 | pre .apache .tag, 49 | pre .date, 50 | pre .tex .formula { 51 | color: rgb(163, 21, 21); 52 | } 53 | 54 | pre .ruby .string, 55 | pre .decorator, 56 | pre .filter .argument, 57 | pre .localvars, 58 | pre .array, 59 | pre .attr_selector, 60 | pre .pseudo, 61 | pre .pi, 62 | pre .doctype, 63 | pre .deletion, 64 | pre .envvar, 65 | pre .shebang, 66 | pre .preprocessor, 67 | pre .userType, 68 | pre .apache .sqbracket, 69 | pre .nginx .built_in, 70 | pre .tex .special, 71 | pre .prompt { 72 | color: rgb(43, 145, 175); 73 | } 74 | 75 | pre .phpdoc, 76 | pre .javadoc, 77 | pre .xmlDocTag { 78 | color: rgb(128, 128, 128); 79 | } 80 | 81 | pre .vhdl .typename { font-weight: bold; } 82 | pre .vhdl .string { color: #666666; } 83 | pre .vhdl .literal { color: rgb(163, 21, 21); } 84 | pre .vhdl .attribute { color: #00B0E8; } 85 | 86 | pre .xml .attribute { color: rgb(255, 0, 0); } 87 | -------------------------------------------------------------------------------- /Project3 Camera Calibration and Fundamental Matrix Estimation with RANSAC/html/placeholder.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project3 Camera Calibration and Fundamental Matrix Estimation with RANSAC/html/placeholder.jpg -------------------------------------------------------------------------------- /Project3 Camera Calibration and Fundamental Matrix Estimation with RANSAC/html/pm2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project3 Camera Calibration and Fundamental Matrix Estimation with RANSAC/html/pm2.png -------------------------------------------------------------------------------- /Project3 Camera Calibration and Fundamental Matrix Estimation with RANSAC/html/pm3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project3 Camera Calibration and Fundamental Matrix Estimation with RANSAC/html/pm3.png -------------------------------------------------------------------------------- /Project3 Camera Calibration and Fundamental Matrix Estimation with RANSAC/html/projection_matrix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project3 Camera Calibration and Fundamental Matrix Estimation with RANSAC/html/projection_matrix.png -------------------------------------------------------------------------------- /Project4 Scene recognition with bag of words/READMe.md: -------------------------------------------------------------------------------- 1 | # CS 6476 project 4: [Scene Recognition with Bag-of-Words](https://www.cc.gatech.edu/~hays/compvision/proj4/) 2 | 3 | # Setup 4 | - Install Anaconda / Miniconda 5 | - Create a conda environment using the given file: `conda env create -f environment_.yml` 6 | - This should create an environment named `cs6476p4`. Activate it using `activate cs6476p4` 7 | 8 | 9 | I didn't succeed in implementing any extra credit code. Simply run the code in starter code and you will check the results of Tiny images and Nearest Neighbor, Bag of SIFT and Nearest Neighbor and Bag of SIFT and Linear SVM classifier. 10 | -------------------------------------------------------------------------------- /Project4 Scene recognition with bag of words/code/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Project4 Scene recognition with bag of words/code/__pycache__/student_code.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project4 Scene recognition with bag of words/code/__pycache__/student_code.cpython-35.pyc -------------------------------------------------------------------------------- /Project4 Scene recognition with bag of words/code/__pycache__/utils.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project4 Scene recognition with bag of words/code/__pycache__/utils.cpython-35.pyc -------------------------------------------------------------------------------- /Project4 Scene recognition with bag of words/code/vocab.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project4 Scene recognition with bag of words/code/vocab.pkl -------------------------------------------------------------------------------- /Project4 Scene recognition with bag of words/html/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project4 Scene recognition with bag of words/html/1.png -------------------------------------------------------------------------------- /Project4 Scene recognition with bag of words/html/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project4 Scene recognition with bag of words/html/10.png -------------------------------------------------------------------------------- /Project4 Scene recognition with bag of words/html/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project4 Scene recognition with bag of words/html/11.png -------------------------------------------------------------------------------- /Project4 Scene recognition with bag of words/html/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project4 Scene recognition with bag of words/html/12.png -------------------------------------------------------------------------------- /Project4 Scene recognition with bag of words/html/13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project4 Scene recognition with bag of words/html/13.png -------------------------------------------------------------------------------- /Project4 Scene recognition with bag of words/html/14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project4 Scene recognition with bag of words/html/14.png -------------------------------------------------------------------------------- /Project4 Scene recognition with bag of words/html/15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project4 Scene recognition with bag of words/html/15.png -------------------------------------------------------------------------------- /Project4 Scene recognition with bag of words/html/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project4 Scene recognition with bag of words/html/16.png -------------------------------------------------------------------------------- /Project4 Scene recognition with bag of words/html/17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project4 Scene recognition with bag of words/html/17.png -------------------------------------------------------------------------------- /Project4 Scene recognition with bag of words/html/18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project4 Scene recognition with bag of words/html/18.png -------------------------------------------------------------------------------- /Project4 Scene recognition with bag of words/html/19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project4 Scene recognition with bag of words/html/19.png -------------------------------------------------------------------------------- /Project4 Scene recognition with bag of words/html/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project4 Scene recognition with bag of words/html/2.png -------------------------------------------------------------------------------- /Project4 Scene recognition with bag of words/html/21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project4 Scene recognition with bag of words/html/21.png -------------------------------------------------------------------------------- /Project4 Scene recognition with bag of words/html/22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project4 Scene recognition with bag of words/html/22.png -------------------------------------------------------------------------------- /Project4 Scene recognition with bag of words/html/23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project4 Scene recognition with bag of words/html/23.png -------------------------------------------------------------------------------- /Project4 Scene recognition with bag of words/html/24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project4 Scene recognition with bag of words/html/24.png -------------------------------------------------------------------------------- /Project4 Scene recognition with bag of words/html/25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project4 Scene recognition with bag of words/html/25.png -------------------------------------------------------------------------------- /Project4 Scene recognition with bag of words/html/26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project4 Scene recognition with bag of words/html/26.png -------------------------------------------------------------------------------- /Project4 Scene recognition with bag of words/html/27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project4 Scene recognition with bag of words/html/27.png -------------------------------------------------------------------------------- /Project4 Scene recognition with bag of words/html/28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project4 Scene recognition with bag of words/html/28.png -------------------------------------------------------------------------------- /Project4 Scene recognition with bag of words/html/29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project4 Scene recognition with bag of words/html/29.png -------------------------------------------------------------------------------- /Project4 Scene recognition with bag of words/html/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project4 Scene recognition with bag of words/html/3.png -------------------------------------------------------------------------------- /Project4 Scene recognition with bag of words/html/30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project4 Scene recognition with bag of words/html/30.png -------------------------------------------------------------------------------- /Project4 Scene recognition with bag of words/html/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project4 Scene recognition with bag of words/html/4.png -------------------------------------------------------------------------------- /Project4 Scene recognition with bag of words/html/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project4 Scene recognition with bag of words/html/5.png -------------------------------------------------------------------------------- /Project4 Scene recognition with bag of words/html/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project4 Scene recognition with bag of words/html/6.png -------------------------------------------------------------------------------- /Project4 Scene recognition with bag of words/html/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project4 Scene recognition with bag of words/html/7.png -------------------------------------------------------------------------------- /Project4 Scene recognition with bag of words/html/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project4 Scene recognition with bag of words/html/8.png -------------------------------------------------------------------------------- /Project4 Scene recognition with bag of words/html/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project4 Scene recognition with bag of words/html/9.png -------------------------------------------------------------------------------- /Project4 Scene recognition with bag of words/html/C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project4 Scene recognition with bag of words/html/C.png -------------------------------------------------------------------------------- /Project4 Scene recognition with bag of words/html/confusion_mt1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project4 Scene recognition with bag of words/html/confusion_mt1.png -------------------------------------------------------------------------------- /Project4 Scene recognition with bag of words/html/confusion_mt2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project4 Scene recognition with bag of words/html/confusion_mt2.png -------------------------------------------------------------------------------- /Project4 Scene recognition with bag of words/html/confusion_mt3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project4 Scene recognition with bag of words/html/confusion_mt3.png -------------------------------------------------------------------------------- /Project4 Scene recognition with bag of words/html/highlighting/LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (c) 2006, Ivan Sagalaev 2 | All rights reserved. 3 | Redistribution and use in source and binary forms, with or without 4 | modification, are permitted provided that the following conditions are met: 5 | 6 | * Redistributions of source code must retain the above copyright 7 | notice, this list of conditions and the following disclaimer. 8 | * Redistributions in binary form must reproduce the above copyright 9 | notice, this list of conditions and the following disclaimer in the 10 | documentation and/or other materials provided with the distribution. 11 | * Neither the name of highlight.js nor the names of its contributors 12 | may be used to endorse or promote products derived from this software 13 | without specific prior written permission. 14 | 15 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND ANY 16 | EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED 17 | WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE 18 | DISCLAIMED. IN NO EVENT SHALL THE REGENTS AND CONTRIBUTORS BE LIABLE FOR ANY 19 | DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES 20 | (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; 21 | LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND 22 | ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 23 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS 24 | SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 25 | -------------------------------------------------------------------------------- /Project4 Scene recognition with bag of words/html/highlighting/styles/ascetic.css: -------------------------------------------------------------------------------- 1 | /* 2 | 3 | Original style from softwaremaniacs.org (c) Ivan Sagalaev 4 | 5 | */ 6 | 7 | pre code { 8 | display: block; padding: 0.5em; 9 | background: white; color: black; 10 | } 11 | 12 | pre .string, 13 | pre .tag .value, 14 | pre .filter .argument, 15 | pre .addition, 16 | pre .change, 17 | pre .apache .tag, 18 | pre .apache .cbracket, 19 | pre .nginx .built_in, 20 | pre .tex .formula { 21 | color: #888; 22 | } 23 | 24 | pre .comment, 25 | pre .template_comment, 26 | pre .shebang, 27 | pre .doctype, 28 | pre .pi, 29 | pre .javadoc, 30 | pre .deletion, 31 | pre .apache .sqbracket { 32 | color: #CCC; 33 | } 34 | 35 | pre .keyword, 36 | pre .tag .title, 37 | pre .ini .title, 38 | pre .lisp .title, 39 | pre .clojure .title, 40 | pre .http .title, 41 | pre .nginx .title, 42 | pre .css .tag, 43 | pre .winutils, 44 | pre .flow, 45 | pre .apache .tag, 46 | pre .tex .command, 47 | pre .request, 48 | pre .status { 49 | font-weight: bold; 50 | } 51 | -------------------------------------------------------------------------------- /Project4 Scene recognition with bag of words/html/highlighting/styles/brown_papersq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project4 Scene recognition with bag of words/html/highlighting/styles/brown_papersq.png -------------------------------------------------------------------------------- /Project4 Scene recognition with bag of words/html/highlighting/styles/ir_black.css: -------------------------------------------------------------------------------- 1 | /* 2 | IR_Black style (c) Vasily Mikhailitchenko 3 | */ 4 | 5 | pre code { 6 | display: block; padding: 0.5em; 7 | background: #000; color: #f8f8f8; 8 | } 9 | 10 | pre .shebang, 11 | pre .comment, 12 | pre .template_comment, 13 | pre .javadoc { 14 | color: #7c7c7c; 15 | } 16 | 17 | pre .keyword, 18 | pre .tag, 19 | pre .tex .command, 20 | pre .request, 21 | pre .status, 22 | pre .clojure .attribute { 23 | color: #96CBFE; 24 | } 25 | 26 | pre .sub .keyword, 27 | pre .method, 28 | pre .list .title, 29 | pre .nginx .title { 30 | color: #FFFFB6; 31 | } 32 | 33 | pre .string, 34 | pre .tag .value, 35 | pre .cdata, 36 | pre .filter .argument, 37 | pre .attr_selector, 38 | pre .apache .cbracket, 39 | pre .date { 40 | color: #A8FF60; 41 | } 42 | 43 | pre .subst { 44 | color: #DAEFA3; 45 | } 46 | 47 | pre .regexp { 48 | color: #E9C062; 49 | } 50 | 51 | pre .title, 52 | pre .sub .identifier, 53 | pre .pi, 54 | pre .decorator, 55 | pre .tex .special, 56 | pre .haskell .type, 57 | pre .constant, 58 | pre .smalltalk .class, 59 | pre .javadoctag, 60 | pre .yardoctag, 61 | pre .phpdoc, 62 | pre .nginx .built_in { 63 | color: #FFFFB6; 64 | } 65 | 66 | pre .symbol, 67 | pre .ruby .symbol .string, 68 | pre .number, 69 | pre .variable, 70 | pre .vbscript, 71 | pre .literal { 72 | color: #C6C5FE; 73 | } 74 | 75 | pre .css .tag { 76 | color: #96CBFE; 77 | } 78 | 79 | pre .css .rules .property, 80 | pre .css .id { 81 | color: #FFFFB6; 82 | } 83 | 84 | pre .css .class { 85 | color: #FFF; 86 | } 87 | 88 | pre .hexcolor { 89 | color: #C6C5FE; 90 | } 91 | 92 | pre .number { 93 | color:#FF73FD; 94 | } 95 | 96 | pre .coffeescript .javascript, 97 | pre .javascript .xml, 98 | pre .tex .formula, 99 | pre .xml .javascript, 100 | pre .xml .vbscript, 101 | pre .xml .css, 102 | pre .xml .cdata { 103 | opacity: 0.7; 104 | } 105 | -------------------------------------------------------------------------------- /Project4 Scene recognition with bag of words/html/highlighting/styles/pojoaque.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project4 Scene recognition with bag of words/html/highlighting/styles/pojoaque.jpg -------------------------------------------------------------------------------- /Project4 Scene recognition with bag of words/html/highlighting/styles/school_book.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project4 Scene recognition with bag of words/html/highlighting/styles/school_book.png -------------------------------------------------------------------------------- /Project4 Scene recognition with bag of words/html/highlighting/styles/solarized_dark.css: -------------------------------------------------------------------------------- 1 | /* 2 | 3 | Orginal Style from ethanschoonover.com/solarized (c) Jeremy Hull 4 | 5 | */ 6 | 7 | pre code { 8 | display: block; padding: 0.5em; 9 | background: #002b36; color: #839496; 10 | } 11 | 12 | pre .comment, 13 | pre .template_comment, 14 | pre .diff .header, 15 | pre .doctype, 16 | pre .pi, 17 | pre .lisp .string, 18 | pre .javadoc { 19 | color: #586e75; 20 | font-style: italic; 21 | } 22 | 23 | pre .keyword, 24 | pre .winutils, 25 | pre .method, 26 | pre .addition, 27 | pre .css .tag, 28 | pre .request, 29 | pre .status, 30 | pre .nginx .title { 31 | color: #859900; 32 | } 33 | 34 | pre .number, 35 | pre .command, 36 | pre .string, 37 | pre .tag .value, 38 | pre .phpdoc, 39 | pre .tex .formula, 40 | pre .regexp, 41 | pre .hexcolor { 42 | color: #2aa198; 43 | } 44 | 45 | pre .title, 46 | pre .localvars, 47 | pre .chunk, 48 | pre .decorator, 49 | pre .built_in, 50 | pre .identifier, 51 | pre .vhdl .literal, 52 | pre .id { 53 | color: #268bd2; 54 | } 55 | 56 | pre .attribute, 57 | pre .variable, 58 | pre .lisp .body, 59 | pre .smalltalk .number, 60 | pre .constant, 61 | pre .class .title, 62 | pre .parent, 63 | pre .haskell .type { 64 | color: #b58900; 65 | } 66 | 67 | pre .preprocessor, 68 | pre .preprocessor .keyword, 69 | pre .shebang, 70 | pre .symbol, 71 | pre .symbol .string, 72 | pre .diff .change, 73 | pre .special, 74 | pre .attr_selector, 75 | pre .important, 76 | pre .subst, 77 | pre .cdata, 78 | pre .clojure .title { 79 | color: #cb4b16; 80 | } 81 | 82 | pre .deletion { 83 | color: #dc322f; 84 | } 85 | 86 | pre .tex .formula { 87 | background: #073642; 88 | } 89 | -------------------------------------------------------------------------------- /Project4 Scene recognition with bag of words/html/highlighting/styles/solarized_light.css: -------------------------------------------------------------------------------- 1 | /* 2 | 3 | Orginal Style from ethanschoonover.com/solarized (c) Jeremy Hull 4 | 5 | */ 6 | 7 | pre code { 8 | display: block; padding: 0.5em; 9 | background: #fdf6e3; color: #657b83; 10 | } 11 | 12 | pre .comment, 13 | pre .template_comment, 14 | pre .diff .header, 15 | pre .doctype, 16 | pre .pi, 17 | pre .lisp .string, 18 | pre .javadoc { 19 | color: #93a1a1; 20 | font-style: italic; 21 | } 22 | 23 | pre .keyword, 24 | pre .winutils, 25 | pre .method, 26 | pre .addition, 27 | pre .css .tag, 28 | pre .request, 29 | pre .status, 30 | pre .nginx .title { 31 | color: #859900; 32 | } 33 | 34 | pre .number, 35 | pre .command, 36 | pre .string, 37 | pre .tag .value, 38 | pre .phpdoc, 39 | pre .tex .formula, 40 | pre .regexp, 41 | pre .hexcolor { 42 | color: #2aa198; 43 | } 44 | 45 | pre .title, 46 | pre .localvars, 47 | pre .chunk, 48 | pre .decorator, 49 | pre .built_in, 50 | pre .identifier, 51 | pre .vhdl .literal, 52 | pre .id { 53 | color: #268bd2; 54 | } 55 | 56 | pre .attribute, 57 | pre .variable, 58 | pre .lisp .body, 59 | pre .smalltalk .number, 60 | pre .constant, 61 | pre .class .title, 62 | pre .parent, 63 | pre .haskell .type { 64 | color: #b58900; 65 | } 66 | 67 | pre .preprocessor, 68 | pre .preprocessor .keyword, 69 | pre .shebang, 70 | pre .symbol, 71 | pre .symbol .string, 72 | pre .diff .change, 73 | pre .special, 74 | pre .attr_selector, 75 | pre .important, 76 | pre .subst, 77 | pre .cdata, 78 | pre .clojure .title { 79 | color: #cb4b16; 80 | } 81 | 82 | pre .deletion { 83 | color: #dc322f; 84 | } 85 | 86 | pre .tex .formula { 87 | background: #eee8d5; 88 | } 89 | -------------------------------------------------------------------------------- /Project4 Scene recognition with bag of words/html/highlighting/styles/tomorrow-night-blue.css: -------------------------------------------------------------------------------- 1 | /* Tomorrow Night Blue Theme */ 2 | /* http://jmblog.github.com/color-themes-for-google-code-highlightjs */ 3 | /* Original theme - https://github.com/chriskempson/tomorrow-theme */ 4 | /* http://jmblog.github.com/color-themes-for-google-code-highlightjs */ 5 | .tomorrow-comment, pre .comment, pre .title { 6 | color: #7285b7; 7 | } 8 | 9 | .tomorrow-red, pre .variable, pre .attribute, pre .tag, pre .regexp, pre .ruby .constant, pre .xml .tag .title, pre .xml .pi, pre .xml .doctype, pre .html .doctype, pre .css .id, pre .css .class, pre .css .pseudo { 10 | color: #ff9da4; 11 | } 12 | 13 | .tomorrow-orange, pre .number, pre .preprocessor, pre .built_in, pre .literal, pre .params, pre .constant { 14 | color: #ffc58f; 15 | } 16 | 17 | .tomorrow-yellow, pre .class, pre .ruby .class .title, pre .css .rules .attribute { 18 | color: #ffeead; 19 | } 20 | 21 | .tomorrow-green, pre .string, pre .value, pre .inheritance, pre .header, pre .ruby .symbol, pre .xml .cdata { 22 | color: #d1f1a9; 23 | } 24 | 25 | .tomorrow-aqua, pre .css .hexcolor { 26 | color: #99ffff; 27 | } 28 | 29 | .tomorrow-blue, pre .function, pre .python .decorator, pre .python .title, pre .ruby .function .title, pre .ruby .title .keyword, pre .perl .sub, pre .javascript .title, pre .coffeescript .title { 30 | color: #bbdaff; 31 | } 32 | 33 | .tomorrow-purple, pre .keyword, pre .javascript .function { 34 | color: #ebbbff; 35 | } 36 | 37 | pre code { 38 | display: block; 39 | background: #002451; 40 | color: white; 41 | padding: 0.5em; 42 | } 43 | 44 | pre .coffeescript .javascript, 45 | pre .javascript .xml, 46 | pre .tex .formula, 47 | pre .xml .javascript, 48 | pre .xml .vbscript, 49 | pre .xml .css, 50 | pre .xml .cdata { 51 | opacity: 0.5; 52 | } 53 | -------------------------------------------------------------------------------- /Project4 Scene recognition with bag of words/html/highlighting/styles/tomorrow-night-bright.css: -------------------------------------------------------------------------------- 1 | /* Tomorrow Night Bright Theme */ 2 | /* Original theme - https://github.com/chriskempson/tomorrow-theme */ 3 | /* http://jmblog.github.com/color-themes-for-google-code-highlightjs */ 4 | .tomorrow-comment, pre .comment, pre .title { 5 | color: #969896; 6 | } 7 | 8 | .tomorrow-red, pre .variable, pre .attribute, pre .tag, pre .regexp, pre .ruby .constant, pre .xml .tag .title, pre .xml .pi, pre .xml .doctype, pre .html .doctype, pre .css .id, pre .css .class, pre .css .pseudo { 9 | color: #d54e53; 10 | } 11 | 12 | .tomorrow-orange, pre .number, pre .preprocessor, pre .built_in, pre .literal, pre .params, pre .constant { 13 | color: #e78c45; 14 | } 15 | 16 | .tomorrow-yellow, pre .class, pre .ruby .class .title, pre .css .rules .attribute { 17 | color: #e7c547; 18 | } 19 | 20 | .tomorrow-green, pre .string, pre .value, pre .inheritance, pre .header, pre .ruby .symbol, pre .xml .cdata { 21 | color: #b9ca4a; 22 | } 23 | 24 | .tomorrow-aqua, pre .css .hexcolor { 25 | color: #70c0b1; 26 | } 27 | 28 | .tomorrow-blue, pre .function, pre .python .decorator, pre .python .title, pre .ruby .function .title, pre .ruby .title .keyword, pre .perl .sub, pre .javascript .title, pre .coffeescript .title { 29 | color: #7aa6da; 30 | } 31 | 32 | .tomorrow-purple, pre .keyword, pre .javascript .function { 33 | color: #c397d8; 34 | } 35 | 36 | pre code { 37 | display: block; 38 | background: black; 39 | color: #eaeaea; 40 | padding: 0.5em; 41 | } 42 | 43 | pre .coffeescript .javascript, 44 | pre .javascript .xml, 45 | pre .tex .formula, 46 | pre .xml .javascript, 47 | pre .xml .vbscript, 48 | pre .xml .css, 49 | pre .xml .cdata { 50 | opacity: 0.5; 51 | } 52 | -------------------------------------------------------------------------------- /Project4 Scene recognition with bag of words/html/highlighting/styles/tomorrow-night-eighties.css: -------------------------------------------------------------------------------- 1 | /* Tomorrow Night Eighties Theme */ 2 | /* Original theme - https://github.com/chriskempson/tomorrow-theme */ 3 | /* http://jmblog.github.com/color-themes-for-google-code-highlightjs */ 4 | .tomorrow-comment, pre .comment, pre .title { 5 | color: #999999; 6 | } 7 | 8 | .tomorrow-red, pre .variable, pre .attribute, pre .tag, pre .regexp, pre .ruby .constant, pre .xml .tag .title, pre .xml .pi, pre .xml .doctype, pre .html .doctype, pre .css .id, pre .css .class, pre .css .pseudo { 9 | color: #f2777a; 10 | } 11 | 12 | .tomorrow-orange, pre .number, pre .preprocessor, pre .built_in, pre .literal, pre .params, pre .constant { 13 | color: #f99157; 14 | } 15 | 16 | .tomorrow-yellow, pre .class, pre .ruby .class .title, pre .css .rules .attribute { 17 | color: #ffcc66; 18 | } 19 | 20 | .tomorrow-green, pre .string, pre .value, pre .inheritance, pre .header, pre .ruby .symbol, pre .xml .cdata { 21 | color: #99cc99; 22 | } 23 | 24 | .tomorrow-aqua, pre .css .hexcolor { 25 | color: #66cccc; 26 | } 27 | 28 | .tomorrow-blue, pre .function, pre .python .decorator, pre .python .title, pre .ruby .function .title, pre .ruby .title .keyword, pre .perl .sub, pre .javascript .title, pre .coffeescript .title { 29 | color: #6699cc; 30 | } 31 | 32 | .tomorrow-purple, pre .keyword, pre .javascript .function { 33 | color: #cc99cc; 34 | } 35 | 36 | pre code { 37 | display: block; 38 | background: #2d2d2d; 39 | color: #cccccc; 40 | padding: 0.5em; 41 | } 42 | 43 | pre .coffeescript .javascript, 44 | pre .javascript .xml, 45 | pre .tex .formula, 46 | pre .xml .javascript, 47 | pre .xml .vbscript, 48 | pre .xml .css, 49 | pre .xml .cdata { 50 | opacity: 0.5; 51 | } 52 | -------------------------------------------------------------------------------- /Project4 Scene recognition with bag of words/html/highlighting/styles/tomorrow-night.css: -------------------------------------------------------------------------------- 1 | /* Tomorrow Night Theme */ 2 | /* http://jmblog.github.com/color-themes-for-google-code-highlightjs */ 3 | /* Original theme - https://github.com/chriskempson/tomorrow-theme */ 4 | /* http://jmblog.github.com/color-themes-for-google-code-highlightjs */ 5 | .tomorrow-comment, pre .comment, pre .title { 6 | color: #969896; 7 | } 8 | 9 | .tomorrow-red, pre .variable, pre .attribute, pre .tag, pre .regexp, pre .ruby .constant, pre .xml .tag .title, pre .xml .pi, pre .xml .doctype, pre .html .doctype, pre .css .id, pre .css .class, pre .css .pseudo { 10 | color: #cc6666; 11 | } 12 | 13 | .tomorrow-orange, pre .number, pre .preprocessor, pre .built_in, pre .literal, pre .params, pre .constant { 14 | color: #de935f; 15 | } 16 | 17 | .tomorrow-yellow, pre .class, pre .ruby .class .title, pre .css .rules .attribute { 18 | color: #f0c674; 19 | } 20 | 21 | .tomorrow-green, pre .string, pre .value, pre .inheritance, pre .header, pre .ruby .symbol, pre .xml .cdata { 22 | color: #b5bd68; 23 | } 24 | 25 | .tomorrow-aqua, pre .css .hexcolor { 26 | color: #8abeb7; 27 | } 28 | 29 | .tomorrow-blue, pre .function, pre .python .decorator, pre .python .title, pre .ruby .function .title, pre .ruby .title .keyword, pre .perl .sub, pre .javascript .title, pre .coffeescript .title { 30 | color: #81a2be; 31 | } 32 | 33 | .tomorrow-purple, pre .keyword, pre .javascript .function { 34 | color: #b294bb; 35 | } 36 | 37 | pre code { 38 | display: block; 39 | background: #1d1f21; 40 | color: #c5c8c6; 41 | padding: 0.5em; 42 | } 43 | 44 | pre .coffeescript .javascript, 45 | pre .javascript .xml, 46 | pre .tex .formula, 47 | pre .xml .javascript, 48 | pre .xml .vbscript, 49 | pre .xml .css, 50 | pre .xml .cdata { 51 | opacity: 0.5; 52 | } 53 | -------------------------------------------------------------------------------- /Project4 Scene recognition with bag of words/html/highlighting/styles/tomorrow.css: -------------------------------------------------------------------------------- 1 | /* http://jmblog.github.com/color-themes-for-google-code-highlightjs */ 2 | .tomorrow-comment, pre .comment, pre .title { 3 | color: #8e908c; 4 | } 5 | 6 | .tomorrow-red, pre .variable, pre .attribute, pre .tag, pre .regexp, pre .ruby .constant, pre .xml .tag .title, pre .xml .pi, pre .xml .doctype, pre .html .doctype, pre .css .id, pre .css .class, pre .css .pseudo { 7 | color: #c82829; 8 | } 9 | 10 | .tomorrow-orange, pre .number, pre .preprocessor, pre .built_in, pre .literal, pre .params, pre .constant { 11 | color: #f5871f; 12 | } 13 | 14 | .tomorrow-yellow, pre .class, pre .ruby .class .title, pre .css .rules .attribute { 15 | color: #eab700; 16 | } 17 | 18 | .tomorrow-green, pre .string, pre .value, pre .inheritance, pre .header, pre .ruby .symbol, pre .xml .cdata { 19 | color: #718c00; 20 | } 21 | 22 | .tomorrow-aqua, pre .css .hexcolor { 23 | color: #3e999f; 24 | } 25 | 26 | .tomorrow-blue, pre .function, pre .python .decorator, pre .python .title, pre .ruby .function .title, pre .ruby .title .keyword, pre .perl .sub, pre .javascript .title, pre .coffeescript .title { 27 | color: #4271ae; 28 | } 29 | 30 | .tomorrow-purple, pre .keyword, pre .javascript .function { 31 | color: #8959a8; 32 | } 33 | 34 | pre code { 35 | display: block; 36 | background: white; 37 | color: #4d4d4c; 38 | padding: 0.5em; 39 | } 40 | 41 | pre .coffeescript .javascript, 42 | pre .javascript .xml, 43 | pre .tex .formula, 44 | pre .xml .javascript, 45 | pre .xml .vbscript, 46 | pre .xml .css, 47 | pre .xml .cdata { 48 | opacity: 0.5; 49 | } 50 | -------------------------------------------------------------------------------- /Project4 Scene recognition with bag of words/html/highlighting/styles/vs.css: -------------------------------------------------------------------------------- 1 | /* 2 | 3 | Visual Studio-like style based on original C# coloring by Jason Diamond 4 | 5 | */ 6 | pre code { 7 | display: block; padding: 0.5em; 8 | } 9 | 10 | pre .comment, 11 | pre .annotation, 12 | pre .template_comment, 13 | pre .diff .header, 14 | pre .chunk, 15 | pre .apache .cbracket { 16 | color: rgb(0, 128, 0); 17 | } 18 | 19 | pre .keyword, 20 | pre .id, 21 | pre .built_in, 22 | pre .smalltalk .class, 23 | pre .winutils, 24 | pre .bash .variable, 25 | pre .tex .command, 26 | pre .request, 27 | pre .status, 28 | pre .nginx .title, 29 | pre .xml .tag, 30 | pre .xml .tag .value { 31 | color: rgb(0, 0, 255); 32 | } 33 | 34 | pre .string, 35 | pre .title, 36 | pre .parent, 37 | pre .tag .value, 38 | pre .rules .value, 39 | pre .rules .value .number, 40 | pre .ruby .symbol, 41 | pre .ruby .symbol .string, 42 | pre .aggregate, 43 | pre .template_tag, 44 | pre .django .variable, 45 | pre .addition, 46 | pre .flow, 47 | pre .stream, 48 | pre .apache .tag, 49 | pre .date, 50 | pre .tex .formula { 51 | color: rgb(163, 21, 21); 52 | } 53 | 54 | pre .ruby .string, 55 | pre .decorator, 56 | pre .filter .argument, 57 | pre .localvars, 58 | pre .array, 59 | pre .attr_selector, 60 | pre .pseudo, 61 | pre .pi, 62 | pre .doctype, 63 | pre .deletion, 64 | pre .envvar, 65 | pre .shebang, 66 | pre .preprocessor, 67 | pre .userType, 68 | pre .apache .sqbracket, 69 | pre .nginx .built_in, 70 | pre .tex .special, 71 | pre .prompt { 72 | color: rgb(43, 145, 175); 73 | } 74 | 75 | pre .phpdoc, 76 | pre .javadoc, 77 | pre .xmlDocTag { 78 | color: rgb(128, 128, 128); 79 | } 80 | 81 | pre .vhdl .typename { font-weight: bold; } 82 | pre .vhdl .string { color: #666666; } 83 | pre .vhdl .literal { color: rgb(163, 21, 21); } 84 | pre .vhdl .attribute { color: #00B0E8; } 85 | 86 | pre .xml .attribute { color: rgb(255, 0, 0); } 87 | -------------------------------------------------------------------------------- /Project4 Scene recognition with bag of words/html/tol.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project4 Scene recognition with bag of words/html/tol.png -------------------------------------------------------------------------------- /Project4 Scene recognition with bag of words/html/vocab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project4 Scene recognition with bag of words/html/vocab.png -------------------------------------------------------------------------------- /Project5 Face detection with a sliding window/READMe.md: -------------------------------------------------------------------------------- 1 | # CS 6476 project 5: [Face Detection with a Sliding Window](https://www.cc.gatech.edu/~hays/compvision/proj5/) 2 | 3 | # Setup 4 | - Install [Miniconda](https://conda.io/miniconda). It doesn't matter whether you use 2.7 or 3.6 because we will create our own environment anyways. 5 | - Create a conda environment, using the appropriate command. On Windows, open the installed "Conda prompt" to run this command. On MacOS and Linux, you can just use a terminal window to run the command. Modify the command based on your OS ('linux', 'mac', or 'win'): `conda env create -f environment_.yml` 6 | - This should create an environment named `cs6476p5`. Activate it using the following Windows command: `activate cs6476p5` or the following MacOS / Linux command: `source activate cs6476p5`. 7 | - Run the notebook using: `jupyter notebook ./code/proj5.ipynb` 8 | - Generate the submission once you're finished using `python zip_submission.py` 9 | 10 | For the extra credits, I implemented multiple scales in function mine_hard_negs() and get_random_negative_features() to improve the accuracy. You can just run the program using starter code. It takes some time to run run_detector() funtcion since I used multiple scales in it, and set the step size as 10 to abtain an accuracy above 0.8. 11 | -------------------------------------------------------------------------------- /Project5 Face detection with a sliding window/code/__pycache__/student_code.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project5 Face detection with a sliding window/code/__pycache__/student_code.cpython-35.pyc -------------------------------------------------------------------------------- /Project5 Face detection with a sliding window/code/__pycache__/utils.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project5 Face detection with a sliding window/code/__pycache__/utils.cpython-35.pyc -------------------------------------------------------------------------------- /Project5 Face detection with a sliding window/html/A1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project5 Face detection with a sliding window/html/A1.png -------------------------------------------------------------------------------- /Project5 Face detection with a sliding window/html/A10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project5 Face detection with a sliding window/html/A10.png -------------------------------------------------------------------------------- /Project5 Face detection with a sliding window/html/A11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project5 Face detection with a sliding window/html/A11.png -------------------------------------------------------------------------------- /Project5 Face detection with a sliding window/html/A12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project5 Face detection with a sliding window/html/A12.png -------------------------------------------------------------------------------- /Project5 Face detection with a sliding window/html/A13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project5 Face detection with a sliding window/html/A13.png -------------------------------------------------------------------------------- /Project5 Face detection with a sliding window/html/A14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project5 Face detection with a sliding window/html/A14.png -------------------------------------------------------------------------------- /Project5 Face detection with a sliding window/html/A15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project5 Face detection with a sliding window/html/A15.png -------------------------------------------------------------------------------- /Project5 Face detection with a sliding window/html/A16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project5 Face detection with a sliding window/html/A16.png -------------------------------------------------------------------------------- /Project5 Face detection with a sliding window/html/A17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project5 Face detection with a sliding window/html/A17.png -------------------------------------------------------------------------------- /Project5 Face detection with a sliding window/html/A18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project5 Face detection with a sliding window/html/A18.png -------------------------------------------------------------------------------- /Project5 Face detection with a sliding window/html/A19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project5 Face detection with a sliding window/html/A19.png -------------------------------------------------------------------------------- /Project5 Face detection with a sliding window/html/A2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project5 Face detection with a sliding window/html/A2.png -------------------------------------------------------------------------------- /Project5 Face detection with a sliding window/html/A20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project5 Face detection with a sliding window/html/A20.png -------------------------------------------------------------------------------- /Project5 Face detection with a sliding window/html/A21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project5 Face detection with a sliding window/html/A21.png -------------------------------------------------------------------------------- /Project5 Face detection with a sliding window/html/A22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project5 Face detection with a sliding window/html/A22.png -------------------------------------------------------------------------------- /Project5 Face detection with a sliding window/html/A23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project5 Face detection with a sliding window/html/A23.png -------------------------------------------------------------------------------- /Project5 Face detection with a sliding window/html/A3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project5 Face detection with a sliding window/html/A3.png -------------------------------------------------------------------------------- /Project5 Face detection with a sliding window/html/A4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project5 Face detection with a sliding window/html/A4.png -------------------------------------------------------------------------------- /Project5 Face detection with a sliding window/html/A5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project5 Face detection with a sliding window/html/A5.png -------------------------------------------------------------------------------- /Project5 Face detection with a sliding window/html/A6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project5 Face detection with a sliding window/html/A6.png -------------------------------------------------------------------------------- /Project5 Face detection with a sliding window/html/A7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project5 Face detection with a sliding window/html/A7.png -------------------------------------------------------------------------------- /Project5 Face detection with a sliding window/html/A8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project5 Face detection with a sliding window/html/A8.png -------------------------------------------------------------------------------- /Project5 Face detection with a sliding window/html/A9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project5 Face detection with a sliding window/html/A9.png -------------------------------------------------------------------------------- /Project5 Face detection with a sliding window/html/HOG1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project5 Face detection with a sliding window/html/HOG1.png -------------------------------------------------------------------------------- /Project5 Face detection with a sliding window/html/HOG2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project5 Face detection with a sliding window/html/HOG2.png -------------------------------------------------------------------------------- /Project5 Face detection with a sliding window/html/accuracies.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project5 Face detection with a sliding window/html/accuracies.png -------------------------------------------------------------------------------- /Project5 Face detection with a sliding window/html/class.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project5 Face detection with a sliding window/html/class.png -------------------------------------------------------------------------------- /Project5 Face detection with a sliding window/html/highlighting/LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (c) 2006, Ivan Sagalaev 2 | All rights reserved. 3 | Redistribution and use in source and binary forms, with or without 4 | modification, are permitted provided that the following conditions are met: 5 | 6 | * Redistributions of source code must retain the above copyright 7 | notice, this list of conditions and the following disclaimer. 8 | * Redistributions in binary form must reproduce the above copyright 9 | notice, this list of conditions and the following disclaimer in the 10 | documentation and/or other materials provided with the distribution. 11 | * Neither the name of highlight.js nor the names of its contributors 12 | may be used to endorse or promote products derived from this software 13 | without specific prior written permission. 14 | 15 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND ANY 16 | EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED 17 | WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE 18 | DISCLAIMED. IN NO EVENT SHALL THE REGENTS AND CONTRIBUTORS BE LIABLE FOR ANY 19 | DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES 20 | (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; 21 | LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND 22 | ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 23 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS 24 | SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 25 | -------------------------------------------------------------------------------- /Project5 Face detection with a sliding window/html/highlighting/styles/ascetic.css: -------------------------------------------------------------------------------- 1 | /* 2 | 3 | Original style from softwaremaniacs.org (c) Ivan Sagalaev 4 | 5 | */ 6 | 7 | pre code { 8 | display: block; padding: 0.5em; 9 | background: white; color: black; 10 | } 11 | 12 | pre .string, 13 | pre .tag .value, 14 | pre .filter .argument, 15 | pre .addition, 16 | pre .change, 17 | pre .apache .tag, 18 | pre .apache .cbracket, 19 | pre .nginx .built_in, 20 | pre .tex .formula { 21 | color: #888; 22 | } 23 | 24 | pre .comment, 25 | pre .template_comment, 26 | pre .shebang, 27 | pre .doctype, 28 | pre .pi, 29 | pre .javadoc, 30 | pre .deletion, 31 | pre .apache .sqbracket { 32 | color: #CCC; 33 | } 34 | 35 | pre .keyword, 36 | pre .tag .title, 37 | pre .ini .title, 38 | pre .lisp .title, 39 | pre .clojure .title, 40 | pre .http .title, 41 | pre .nginx .title, 42 | pre .css .tag, 43 | pre .winutils, 44 | pre .flow, 45 | pre .apache .tag, 46 | pre .tex .command, 47 | pre .request, 48 | pre .status { 49 | font-weight: bold; 50 | } 51 | -------------------------------------------------------------------------------- /Project5 Face detection with a sliding window/html/highlighting/styles/brown_papersq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project5 Face detection with a sliding window/html/highlighting/styles/brown_papersq.png -------------------------------------------------------------------------------- /Project5 Face detection with a sliding window/html/highlighting/styles/ir_black.css: -------------------------------------------------------------------------------- 1 | /* 2 | IR_Black style (c) Vasily Mikhailitchenko 3 | */ 4 | 5 | pre code { 6 | display: block; padding: 0.5em; 7 | background: #000; color: #f8f8f8; 8 | } 9 | 10 | pre .shebang, 11 | pre .comment, 12 | pre .template_comment, 13 | pre .javadoc { 14 | color: #7c7c7c; 15 | } 16 | 17 | pre .keyword, 18 | pre .tag, 19 | pre .tex .command, 20 | pre .request, 21 | pre .status, 22 | pre .clojure .attribute { 23 | color: #96CBFE; 24 | } 25 | 26 | pre .sub .keyword, 27 | pre .method, 28 | pre .list .title, 29 | pre .nginx .title { 30 | color: #FFFFB6; 31 | } 32 | 33 | pre .string, 34 | pre .tag .value, 35 | pre .cdata, 36 | pre .filter .argument, 37 | pre .attr_selector, 38 | pre .apache .cbracket, 39 | pre .date { 40 | color: #A8FF60; 41 | } 42 | 43 | pre .subst { 44 | color: #DAEFA3; 45 | } 46 | 47 | pre .regexp { 48 | color: #E9C062; 49 | } 50 | 51 | pre .title, 52 | pre .sub .identifier, 53 | pre .pi, 54 | pre .decorator, 55 | pre .tex .special, 56 | pre .haskell .type, 57 | pre .constant, 58 | pre .smalltalk .class, 59 | pre .javadoctag, 60 | pre .yardoctag, 61 | pre .phpdoc, 62 | pre .nginx .built_in { 63 | color: #FFFFB6; 64 | } 65 | 66 | pre .symbol, 67 | pre .ruby .symbol .string, 68 | pre .number, 69 | pre .variable, 70 | pre .vbscript, 71 | pre .literal { 72 | color: #C6C5FE; 73 | } 74 | 75 | pre .css .tag { 76 | color: #96CBFE; 77 | } 78 | 79 | pre .css .rules .property, 80 | pre .css .id { 81 | color: #FFFFB6; 82 | } 83 | 84 | pre .css .class { 85 | color: #FFF; 86 | } 87 | 88 | pre .hexcolor { 89 | color: #C6C5FE; 90 | } 91 | 92 | pre .number { 93 | color:#FF73FD; 94 | } 95 | 96 | pre .coffeescript .javascript, 97 | pre .javascript .xml, 98 | pre .tex .formula, 99 | pre .xml .javascript, 100 | pre .xml .vbscript, 101 | pre .xml .css, 102 | pre .xml .cdata { 103 | opacity: 0.7; 104 | } 105 | -------------------------------------------------------------------------------- /Project5 Face detection with a sliding window/html/highlighting/styles/pojoaque.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project5 Face detection with a sliding window/html/highlighting/styles/pojoaque.jpg -------------------------------------------------------------------------------- /Project5 Face detection with a sliding window/html/highlighting/styles/school_book.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Helusen/CS6476-Computer-Vision-Projects/bf40b20916b69678847e5fd41d809de6c40a0efb/Project5 Face detection with a sliding window/html/highlighting/styles/school_book.png -------------------------------------------------------------------------------- /Project5 Face detection with a sliding window/html/highlighting/styles/solarized_dark.css: -------------------------------------------------------------------------------- 1 | /* 2 | 3 | Orginal Style from ethanschoonover.com/solarized (c) Jeremy Hull 4 | 5 | */ 6 | 7 | pre code { 8 | display: block; padding: 0.5em; 9 | background: #002b36; color: #839496; 10 | } 11 | 12 | pre .comment, 13 | pre .template_comment, 14 | pre .diff .header, 15 | pre .doctype, 16 | pre .pi, 17 | pre .lisp .string, 18 | pre .javadoc { 19 | color: #586e75; 20 | font-style: italic; 21 | } 22 | 23 | pre .keyword, 24 | pre .winutils, 25 | pre .method, 26 | pre .addition, 27 | pre .css .tag, 28 | pre .request, 29 | pre .status, 30 | pre .nginx .title { 31 | color: #859900; 32 | } 33 | 34 | pre .number, 35 | pre .command, 36 | pre .string, 37 | pre .tag .value, 38 | pre .phpdoc, 39 | pre .tex .formula, 40 | pre .regexp, 41 | pre .hexcolor { 42 | color: #2aa198; 43 | } 44 | 45 | pre .title, 46 | pre .localvars, 47 | pre .chunk, 48 | pre .decorator, 49 | pre .built_in, 50 | pre .identifier, 51 | pre .vhdl .literal, 52 | pre .id { 53 | color: #268bd2; 54 | } 55 | 56 | pre .attribute, 57 | pre .variable, 58 | pre .lisp .body, 59 | pre .smalltalk .number, 60 | pre .constant, 61 | pre .class .title, 62 | pre .parent, 63 | pre .haskell .type { 64 | color: #b58900; 65 | } 66 | 67 | pre .preprocessor, 68 | pre .preprocessor .keyword, 69 | pre .shebang, 70 | pre .symbol, 71 | pre .symbol .string, 72 | pre .diff .change, 73 | pre .special, 74 | pre .attr_selector, 75 | pre .important, 76 | pre .subst, 77 | pre .cdata, 78 | pre .clojure .title { 79 | color: #cb4b16; 80 | } 81 | 82 | pre .deletion { 83 | color: #dc322f; 84 | } 85 | 86 | pre .tex .formula { 87 | background: #073642; 88 | } 89 | -------------------------------------------------------------------------------- /Project5 Face detection with a sliding window/html/highlighting/styles/solarized_light.css: -------------------------------------------------------------------------------- 1 | /* 2 | 3 | Orginal Style from ethanschoonover.com/solarized (c) Jeremy Hull 4 | 5 | */ 6 | 7 | pre code { 8 | display: block; padding: 0.5em; 9 | background: #fdf6e3; color: #657b83; 10 | } 11 | 12 | pre .comment, 13 | pre .template_comment, 14 | pre .diff .header, 15 | pre .doctype, 16 | pre .pi, 17 | pre .lisp .string, 18 | pre .javadoc { 19 | color: #93a1a1; 20 | font-style: italic; 21 | } 22 | 23 | pre .keyword, 24 | pre .winutils, 25 | pre .method, 26 | pre .addition, 27 | pre .css .tag, 28 | pre .request, 29 | pre .status, 30 | pre .nginx .title { 31 | color: #859900; 32 | } 33 | 34 | pre .number, 35 | pre .command, 36 | pre .string, 37 | pre .tag .value, 38 | pre .phpdoc, 39 | pre .tex .formula, 40 | pre .regexp, 41 | pre .hexcolor { 42 | color: #2aa198; 43 | } 44 | 45 | pre .title, 46 | pre .localvars, 47 | pre .chunk, 48 | pre .decorator, 49 | pre .built_in, 50 | pre .identifier, 51 | pre .vhdl .literal, 52 | pre .id { 53 | color: #268bd2; 54 | } 55 | 56 | pre .attribute, 57 | pre .variable, 58 | pre .lisp .body, 59 | pre .smalltalk .number, 60 | pre .constant, 61 | pre .class .title, 62 | pre .parent, 63 | pre .haskell .type { 64 | color: #b58900; 65 | } 66 | 67 | pre .preprocessor, 68 | pre .preprocessor .keyword, 69 | pre .shebang, 70 | pre .symbol, 71 | pre .symbol .string, 72 | pre .diff .change, 73 | pre .special, 74 | pre .attr_selector, 75 | pre .important, 76 | pre .subst, 77 | pre .cdata, 78 | pre .clojure .title { 79 | color: #cb4b16; 80 | } 81 | 82 | pre .deletion { 83 | color: #dc322f; 84 | } 85 | 86 | pre .tex .formula { 87 | background: #eee8d5; 88 | } 89 | -------------------------------------------------------------------------------- /Project5 Face detection with a sliding window/html/highlighting/styles/tomorrow-night-blue.css: -------------------------------------------------------------------------------- 1 | /* Tomorrow Night Blue Theme */ 2 | /* http://jmblog.github.com/color-themes-for-google-code-highlightjs */ 3 | /* Original theme - https://github.com/chriskempson/tomorrow-theme */ 4 | /* http://jmblog.github.com/color-themes-for-google-code-highlightjs */ 5 | .tomorrow-comment, pre .comment, pre .title { 6 | color: #7285b7; 7 | } 8 | 9 | .tomorrow-red, pre .variable, pre .attribute, pre .tag, pre .regexp, pre .ruby .constant, pre .xml .tag .title, pre .xml .pi, pre .xml .doctype, pre .html .doctype, pre .css .id, pre .css .class, pre .css .pseudo { 10 | color: #ff9da4; 11 | } 12 | 13 | .tomorrow-orange, pre .number, pre .preprocessor, pre .built_in, pre .literal, pre .params, pre .constant { 14 | color: #ffc58f; 15 | } 16 | 17 | .tomorrow-yellow, pre .class, pre .ruby .class .title, pre .css .rules .attribute { 18 | color: #ffeead; 19 | } 20 | 21 | .tomorrow-green, pre .string, pre .value, pre .inheritance, pre .header, pre .ruby .symbol, pre .xml .cdata { 22 | color: #d1f1a9; 23 | } 24 | 25 | .tomorrow-aqua, pre .css .hexcolor { 26 | color: #99ffff; 27 | } 28 | 29 | .tomorrow-blue, pre .function, pre .python .decorator, pre .python .title, pre .ruby .function .title, pre .ruby .title .keyword, pre .perl .sub, pre .javascript .title, pre .coffeescript .title { 30 | color: #bbdaff; 31 | } 32 | 33 | .tomorrow-purple, pre .keyword, pre .javascript .function { 34 | color: #ebbbff; 35 | } 36 | 37 | pre code { 38 | display: block; 39 | background: #002451; 40 | color: white; 41 | padding: 0.5em; 42 | } 43 | 44 | pre .coffeescript .javascript, 45 | pre .javascript .xml, 46 | pre .tex .formula, 47 | pre .xml .javascript, 48 | pre .xml .vbscript, 49 | pre .xml .css, 50 | pre .xml .cdata { 51 | opacity: 0.5; 52 | } 53 | -------------------------------------------------------------------------------- /Project5 Face detection with a sliding window/html/highlighting/styles/tomorrow-night-bright.css: -------------------------------------------------------------------------------- 1 | /* Tomorrow Night Bright Theme */ 2 | /* Original theme - https://github.com/chriskempson/tomorrow-theme */ 3 | /* http://jmblog.github.com/color-themes-for-google-code-highlightjs */ 4 | .tomorrow-comment, pre .comment, pre .title { 5 | color: #969896; 6 | } 7 | 8 | .tomorrow-red, pre .variable, pre .attribute, pre .tag, pre .regexp, pre .ruby .constant, pre .xml .tag .title, pre .xml .pi, pre .xml .doctype, pre .html .doctype, pre .css .id, pre .css .class, pre .css .pseudo { 9 | color: #d54e53; 10 | } 11 | 12 | .tomorrow-orange, pre .number, pre .preprocessor, pre .built_in, pre .literal, pre .params, pre .constant { 13 | color: #e78c45; 14 | } 15 | 16 | .tomorrow-yellow, pre .class, pre .ruby .class .title, pre .css .rules .attribute { 17 | color: #e7c547; 18 | } 19 | 20 | .tomorrow-green, pre .string, pre .value, pre .inheritance, pre .header, pre .ruby .symbol, pre .xml .cdata { 21 | color: #b9ca4a; 22 | } 23 | 24 | .tomorrow-aqua, pre .css .hexcolor { 25 | color: #70c0b1; 26 | } 27 | 28 | .tomorrow-blue, pre .function, pre .python .decorator, pre .python .title, pre .ruby .function .title, pre .ruby .title .keyword, pre .perl .sub, pre .javascript .title, pre .coffeescript .title { 29 | color: #7aa6da; 30 | } 31 | 32 | .tomorrow-purple, pre .keyword, pre .javascript .function { 33 | color: #c397d8; 34 | } 35 | 36 | pre code { 37 | display: block; 38 | background: black; 39 | color: #eaeaea; 40 | padding: 0.5em; 41 | } 42 | 43 | pre .coffeescript .javascript, 44 | pre .javascript .xml, 45 | pre .tex .formula, 46 | pre .xml .javascript, 47 | pre .xml .vbscript, 48 | pre .xml .css, 49 | pre .xml .cdata { 50 | opacity: 0.5; 51 | } 52 | -------------------------------------------------------------------------------- /Project5 Face detection with a sliding window/html/highlighting/styles/tomorrow-night-eighties.css: -------------------------------------------------------------------------------- 1 | /* Tomorrow Night Eighties Theme */ 2 | /* Original theme - https://github.com/chriskempson/tomorrow-theme */ 3 | /* http://jmblog.github.com/color-themes-for-google-code-highlightjs */ 4 | .tomorrow-comment, pre .comment, pre .title { 5 | color: #999999; 6 | } 7 | 8 | .tomorrow-red, pre .variable, pre .attribute, pre .tag, pre .regexp, pre .ruby .constant, pre .xml .tag .title, pre .xml .pi, pre .xml .doctype, pre .html .doctype, pre .css .id, pre .css .class, pre .css .pseudo { 9 | color: #f2777a; 10 | } 11 | 12 | .tomorrow-orange, pre .number, pre .preprocessor, pre .built_in, pre .literal, pre .params, pre .constant { 13 | color: #f99157; 14 | } 15 | 16 | .tomorrow-yellow, pre .class, pre .ruby .class .title, pre .css .rules .attribute { 17 | color: #ffcc66; 18 | } 19 | 20 | .tomorrow-green, pre .string, pre .value, pre .inheritance, pre .header, pre .ruby .symbol, pre .xml .cdata { 21 | color: #99cc99; 22 | } 23 | 24 | .tomorrow-aqua, pre .css .hexcolor { 25 | color: #66cccc; 26 | } 27 | 28 | .tomorrow-blue, pre .function, pre .python .decorator, pre .python .title, pre .ruby .function .title, pre .ruby .title .keyword, pre .perl .sub, pre .javascript .title, pre .coffeescript .title { 29 | color: #6699cc; 30 | } 31 | 32 | .tomorrow-purple, pre .keyword, pre .javascript .function { 33 | color: #cc99cc; 34 | } 35 | 36 | pre code { 37 | display: block; 38 | background: #2d2d2d; 39 | color: #cccccc; 40 | padding: 0.5em; 41 | } 42 | 43 | pre .coffeescript .javascript, 44 | pre .javascript .xml, 45 | pre .tex .formula, 46 | pre .xml .javascript, 47 | pre .xml .vbscript, 48 | pre .xml .css, 49 | pre .xml .cdata { 50 | opacity: 0.5; 51 | } 52 | -------------------------------------------------------------------------------- /Project5 Face detection with a sliding window/html/highlighting/styles/tomorrow-night.css: -------------------------------------------------------------------------------- 1 | /* Tomorrow Night Theme */ 2 | /* http://jmblog.github.com/color-themes-for-google-code-highlightjs */ 3 | /* Original theme - https://github.com/chriskempson/tomorrow-theme */ 4 | /* http://jmblog.github.com/color-themes-for-google-code-highlightjs */ 5 | .tomorrow-comment, pre .comment, pre .title { 6 | color: #969896; 7 | } 8 | 9 | .tomorrow-red, pre .variable, pre .attribute, pre .tag, pre .regexp, pre .ruby .constant, pre .xml .tag .title, pre .xml .pi, pre .xml .doctype, pre .html .doctype, pre .css .id, pre .css .class, pre .css .pseudo { 10 | color: #cc6666; 11 | } 12 | 13 | .tomorrow-orange, pre .number, pre .preprocessor, pre .built_in, pre .literal, pre .params, pre .constant { 14 | color: #de935f; 15 | } 16 | 17 | .tomorrow-yellow, pre .class, pre .ruby .class .title, pre .css .rules .attribute { 18 | color: #f0c674; 19 | } 20 | 21 | .tomorrow-green, pre .string, pre .value, pre .inheritance, pre .header, pre .ruby .symbol, pre .xml .cdata { 22 | color: #b5bd68; 23 | } 24 | 25 | .tomorrow-aqua, pre .css .hexcolor { 26 | color: #8abeb7; 27 | } 28 | 29 | .tomorrow-blue, pre .function, pre .python .decorator, pre .python .title, pre .ruby .function .title, pre .ruby .title .keyword, pre .perl .sub, pre .javascript .title, pre .coffeescript .title { 30 | color: #81a2be; 31 | } 32 | 33 | .tomorrow-purple, pre .keyword, pre .javascript .function { 34 | color: #b294bb; 35 | } 36 | 37 | pre code { 38 | display: block; 39 | background: #1d1f21; 40 | color: #c5c8c6; 41 | padding: 0.5em; 42 | } 43 | 44 | pre .coffeescript .javascript, 45 | pre .javascript .xml, 46 | pre .tex .formula, 47 | pre .xml .javascript, 48 | pre .xml .vbscript, 49 | pre .xml .css, 50 | pre .xml .cdata { 51 | opacity: 0.5; 52 | } 53 | -------------------------------------------------------------------------------- /Project5 Face detection with a sliding window/html/highlighting/styles/tomorrow.css: -------------------------------------------------------------------------------- 1 | /* http://jmblog.github.com/color-themes-for-google-code-highlightjs */ 2 | .tomorrow-comment, pre .comment, pre .title { 3 | color: #8e908c; 4 | } 5 | 6 | .tomorrow-red, pre .variable, pre .attribute, pre .tag, pre .regexp, pre .ruby .constant, pre .xml .tag .title, pre .xml .pi, pre .xml .doctype, pre .html .doctype, pre .css .id, pre .css .class, pre .css .pseudo { 7 | color: #c82829; 8 | } 9 | 10 | .tomorrow-orange, pre .number, pre .preprocessor, pre .built_in, pre .literal, pre .params, pre .constant { 11 | color: #f5871f; 12 | } 13 | 14 | .tomorrow-yellow, pre .class, pre .ruby .class .title, pre .css .rules .attribute { 15 | color: #eab700; 16 | } 17 | 18 | .tomorrow-green, pre .string, pre .value, pre .inheritance, pre .header, pre .ruby .symbol, pre .xml .cdata { 19 | color: #718c00; 20 | } 21 | 22 | .tomorrow-aqua, pre .css .hexcolor { 23 | color: #3e999f; 24 | } 25 | 26 | .tomorrow-blue, pre .function, pre .python .decorator, pre .python .title, pre .ruby .function .title, pre .ruby .title .keyword, pre .perl .sub, pre .javascript .title, pre .coffeescript .title { 27 | color: #4271ae; 28 | } 29 | 30 | .tomorrow-purple, pre .keyword, pre .javascript .function { 31 | color: #8959a8; 32 | } 33 | 34 | pre code { 35 | display: block; 36 | background: white; 37 | color: #4d4d4c; 38 | padding: 0.5em; 39 | } 40 | 41 | pre .coffeescript .javascript, 42 | pre .javascript .xml, 43 | pre .tex .formula, 44 | pre .xml .javascript, 45 | pre .xml .vbscript, 46 | pre .xml .css, 47 | pre .xml .cdata { 48 | opacity: 0.5; 49 | } 50 | -------------------------------------------------------------------------------- /Project5 Face detection with a sliding window/html/highlighting/styles/vs.css: -------------------------------------------------------------------------------- 1 | /* 2 | 3 | Visual Studio-like style based on original C# coloring by Jason Diamond 4 | 5 | */ 6 | pre code { 7 | display: block; padding: 0.5em; 8 | } 9 | 10 | pre .comment, 11 | pre .annotation, 12 | pre .template_comment, 13 | pre .diff .header, 14 | pre .chunk, 15 | pre .apache .cbracket { 16 | color: rgb(0, 128, 0); 17 | } 18 | 19 | pre .keyword, 20 | pre .id, 21 | pre .built_in, 22 | pre .smalltalk .class, 23 | pre .winutils, 24 | pre .bash .variable, 25 | pre .tex .command, 26 | pre .request, 27 | pre .status, 28 | pre .nginx .title, 29 | pre .xml .tag, 30 | pre .xml .tag .value { 31 | color: rgb(0, 0, 255); 32 | } 33 | 34 | pre .string, 35 | pre .title, 36 | pre .parent, 37 | pre .tag .value, 38 | pre .rules .value, 39 | pre .rules .value .number, 40 | pre .ruby .symbol, 41 | pre .ruby .symbol .string, 42 | pre .aggregate, 43 | pre .template_tag, 44 | pre .django .variable, 45 | pre .addition, 46 | pre .flow, 47 | pre .stream, 48 | pre .apache .tag, 49 | pre .date, 50 | pre .tex .formula { 51 | color: rgb(163, 21, 21); 52 | } 53 | 54 | pre .ruby .string, 55 | pre .decorator, 56 | pre .filter .argument, 57 | pre .localvars, 58 | pre .array, 59 | pre .attr_selector, 60 | pre .pseudo, 61 | pre .pi, 62 | pre .doctype, 63 | pre .deletion, 64 | pre .envvar, 65 | pre .shebang, 66 | pre .preprocessor, 67 | pre .userType, 68 | pre .apache .sqbracket, 69 | pre .nginx .built_in, 70 | pre .tex .special, 71 | pre .prompt { 72 | color: rgb(43, 145, 175); 73 | } 74 | 75 | pre .phpdoc, 76 | pre .javadoc, 77 | pre .xmlDocTag { 78 | color: rgb(128, 128, 128); 79 | } 80 | 81 | pre .vhdl .typename { font-weight: bold; } 82 | pre .vhdl .string { color: #666666; } 83 | pre .vhdl .literal { color: rgb(163, 21, 21); } 84 | pre .vhdl .attribute { color: #00B0E8; } 85 | 86 | pre .xml .attribute { color: rgb(255, 0, 0); } 87 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | Gatech CS6476 Computer Vision Course Projects 2 | 1. Image Filtering and Hybrid images 3 | 2. Local Feature Matching 4 | 3. Camera Calibration and Fundamental Matrix Estimation with RANSAC 5 | 4. Scene Recognition with Bag of Words 6 | 5. Face Detection with a Sliding Window 7 | 6. Deep Learning 8 | --------------------------------------------------------------------------------