An open API service indexing awesome lists of open source software.

https://github.com/shan18/computer-vision-with-opencv

Basic computer vision tasks using openCV
https://github.com/shan18/computer-vision-with-opencv

computer-vision document-scanner face-detection motion-detector opencv python

Last synced: about 2 months ago
JSON representation

Basic computer vision tasks using openCV

Awesome Lists containing this project

README

          

# Computer Vision with OpenCV

This repository contains some projects that I did while learning openCV.

1. [Image resizing](/document_scanner/):
Resizes all the images within a specified folder.

2. [Face Detection](/face_detection/):
Detects faces in an image.

3. [Webcam Motion Detector](/webcam_motion_detector/):
Draws a box around moving objects that appear in the webcam.

4. [Document Scanner](/document_scanner/):
Scans the documents inside a photograph and converts them into a digital format.

5. [Color Transfer](/color_transfer/):
Transfer colours from the source image to the target image.

6. [Camshift Object Tracking](/camshift_object_tracking/):
Track object in a video using camshift.

7. [Where's Waldo](/finding_waldo/):
Given a image, find waldo.

8. [K-means Color Clustering](/kmeans_color_clustering/):
Pull out the dominant colors from an image using k-means clustering algorithm.

9. [Image Search Engine](/image_search_engine/):
Perform image search based on the images stored in the *images/* directory.
- First run the `index_dataset.py` file to generate the image indexes.
- `search.py` performs search using an image which already exists in the dataset.
- `search_external.py` performs search using a new image given by the user.