├── .gitignore ├── README.md ├── brief ├── README.md ├── brief.ipynb ├── brief.py └── images │ └── face1.jpeg ├── fast ├── README.md ├── fast.ipynb ├── fast.py └── images │ └── face1.jpeg ├── harris ├── README.md ├── harris.ipynb ├── harris.py └── images │ └── waffle.jpg ├── orb ├── README.md ├── images │ └── face1.jpeg ├── orb.ipynb └── orb.py ├── requirements.txt ├── sift ├── README.md ├── images │ └── face1.jpeg ├── sift.ipynb └── sift.py └── surf ├── README.md ├── images └── face1.jpeg ├── surf.ipynb └── surf.py /.gitignore: -------------------------------------------------------------------------------- 1 | */.ipynb_checkpoints 2 | .vscode -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepanshut041/feature-detection/HEAD/README.md -------------------------------------------------------------------------------- /brief/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepanshut041/feature-detection/HEAD/brief/README.md -------------------------------------------------------------------------------- /brief/brief.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepanshut041/feature-detection/HEAD/brief/brief.ipynb -------------------------------------------------------------------------------- /brief/brief.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepanshut041/feature-detection/HEAD/brief/brief.py -------------------------------------------------------------------------------- /brief/images/face1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepanshut041/feature-detection/HEAD/brief/images/face1.jpeg -------------------------------------------------------------------------------- /fast/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepanshut041/feature-detection/HEAD/fast/README.md -------------------------------------------------------------------------------- /fast/fast.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepanshut041/feature-detection/HEAD/fast/fast.ipynb -------------------------------------------------------------------------------- /fast/fast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepanshut041/feature-detection/HEAD/fast/fast.py -------------------------------------------------------------------------------- /fast/images/face1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepanshut041/feature-detection/HEAD/fast/images/face1.jpeg -------------------------------------------------------------------------------- /harris/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepanshut041/feature-detection/HEAD/harris/README.md -------------------------------------------------------------------------------- /harris/harris.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepanshut041/feature-detection/HEAD/harris/harris.ipynb -------------------------------------------------------------------------------- /harris/harris.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepanshut041/feature-detection/HEAD/harris/harris.py -------------------------------------------------------------------------------- /harris/images/waffle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepanshut041/feature-detection/HEAD/harris/images/waffle.jpg -------------------------------------------------------------------------------- /orb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepanshut041/feature-detection/HEAD/orb/README.md -------------------------------------------------------------------------------- /orb/images/face1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepanshut041/feature-detection/HEAD/orb/images/face1.jpeg -------------------------------------------------------------------------------- /orb/orb.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepanshut041/feature-detection/HEAD/orb/orb.ipynb -------------------------------------------------------------------------------- /orb/orb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepanshut041/feature-detection/HEAD/orb/orb.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepanshut041/feature-detection/HEAD/requirements.txt -------------------------------------------------------------------------------- /sift/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepanshut041/feature-detection/HEAD/sift/README.md -------------------------------------------------------------------------------- /sift/images/face1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepanshut041/feature-detection/HEAD/sift/images/face1.jpeg -------------------------------------------------------------------------------- /sift/sift.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepanshut041/feature-detection/HEAD/sift/sift.ipynb -------------------------------------------------------------------------------- /sift/sift.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepanshut041/feature-detection/HEAD/sift/sift.py -------------------------------------------------------------------------------- /surf/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepanshut041/feature-detection/HEAD/surf/README.md -------------------------------------------------------------------------------- /surf/images/face1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepanshut041/feature-detection/HEAD/surf/images/face1.jpeg -------------------------------------------------------------------------------- /surf/surf.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepanshut041/feature-detection/HEAD/surf/surf.ipynb -------------------------------------------------------------------------------- /surf/surf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepanshut041/feature-detection/HEAD/surf/surf.py --------------------------------------------------------------------------------