Skip to content

Latest commit

 

History

History
23 lines (13 loc) · 1.8 KB

README.md

File metadata and controls

23 lines (13 loc) · 1.8 KB

Image Processing in Python

Sooner or later all things are numbers, including images

About this repository

This repository contains the links to the that I wrote on Medium pertaining to Image processing.

Python

An overview of the scikit-image library’s image segmentation methods.

We all are pretty aware of the endless possibilities offered by Photoshop or similar graphics editors that take a person from one image and place them into another. However, the first step of doing this is identifying where that person is in the source image and this is where Image Segmentation comes into play. There are many libraries written for Image Analysis purpose. In this article, we will be discussing in detail about scikit-image, a Python-based image processing library.

OpenCV-Python

This tutorial will introduce you to the concept of object detection in Python using the OpenCV library and how you can utilize it to perform tasks like Facial detection.

Face detection is a computer vision technology that helps to locate/visualize human faces in digital images. This technique is a specific use case of object detection technology that deals with detecting instances of semantic objects of a certain class (such as humans, buildings or cars) in digital images and videos. With the advent of technology, face detection has gained a lot of importance especially in fields like photography, security, and marketing.