https://github.com/shekkizh/imageprocessingprojects
Image processing using python and opencv
https://github.com/shekkizh/imageprocessingprojects
eye-tracking face-tracking image-stitching object-detection opencv seam-carving
Last synced: 17 days ago
JSON representation
Image processing using python and opencv
- Host: GitHub
- URL: https://github.com/shekkizh/imageprocessingprojects
- Owner: shekkizh
- License: mit
- Created: 2015-08-13T04:14:37.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2019-09-30T12:44:01.000Z (over 5 years ago)
- Last Synced: 2025-03-31T07:07:46.375Z (24 days ago)
- Topics: eye-tracking, face-tracking, image-stitching, object-detection, opencv, seam-carving
- Language: Python
- Homepage:
- Size: 39.5 MB
- Stars: 321
- Watchers: 19
- Forks: 107
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
#**Image Processing Projects**
This repository is a collection of all things fun in image processing achieved with opencv and python. Projects and implementations are ever so on random topics but interesting ones nevertheless.
1. Image_Lib - contains common code files that is reused by most projects.
2. PyImageSearchProblems - Kudos to Adrian for his awesome blog on image processing in opencv - [PyImageSearch](http://www.pyimagesearch.com/). The files in this folder mostly follow some of his blogs with my flavor to the problems here and there.
3. PythonProjects - My playground! Every time someone mentions or I think of an interesting problem, it ends up here.
4. SelfProjectUtils - Code that I usually use to understand images for tuning parameters in other projects and such.
Few example results:
- With the availability of displays in various sizes, image retargeting or image resizing with content awareness is something that's done frequently nowadays. A simple implementation of seam carving a well known method and it's result(width reduction by 20%) is as below. Note that the content of the image is not scaled or cropped.
 - Panoramic image stitching using SIFT/ SURF features.
![]()
![]()
![]()
- Image Cartooning.
- Color transforms and compression.
![]()
![]()
![]()
- Auto detect size of objects in images given a reference object. In the example below the height of iPhoneSE (Reference object in this case) was the only value that was provided to the algorithm.
![]()
- Maze solver - an automatic maze path finder.
![]()
- A few days back when I was at a meetup I noticed people taking pictures of the presentation and I realized I could with some code make the whole thing better. So here it is unwarped and centered :)
![]()
Works decently good when there is some occlusion as well
![]()
- Localization based on Bayesian inference. Here I samplea few locations by calibrating face location initially and perform inference after.
![]()
![]()
- Can we provide anonymity for users in a video chat? A problem one of my friends suggested with a complicated yet awesome solution. This one here is just a simple fix I did.
- Eye tracking as always been a topic I have found myself going back again and again to solve. This one here works real time and is based on the idea from Fabian Timm's paper.
![]()