Face Recognition with Python

Face Recognition with Python
Photo by Steve Johnson / Unsplash

Some web platform, like Facebook, Google+, Google Glass, or cameras software are implementing face recognition. FBI, CIA and others government polices are using right now face recognition.

For this example we are using SimpleCV, an open source framework builh in Python, for machine vision. You can get it and install it like a python module.

GitHub - sightmachine/SimpleCV: The Open Source Framework for Machine Vision
The Open Source Framework for Machine Vision. Contribute to sightmachine/SimpleCV development by creating an account on GitHub.

I have commented every line, but if want to explore you can read the API Doc.

SimpleCV is very easy, just 9 lines to recognizing a face in a picture.

Imaging to merge drones and face recognition? Keep hacking. See you.

Read more

How to Build Your Own Internal Developer Platform (IDP) Using Crossplane

How to Build Your Own Internal Developer Platform (IDP) Using Crossplane

In the modern cloud-native landscape, the friction between operation stability and developer velocity remains a critical bottleneck. As organizations scale, the manual ticketing systems traditionally used to provision infrastructure become unsustainable. The solution lies in platform engineering: building an Internal Developer Platform (IDP) that enables self-service capabilities without sacrificing governance

By Allan Porras
Orchestrating State: Building and Deploying Stateful Applications on Kubernetes with Operators

Orchestrating State: Building and Deploying Stateful Applications on Kubernetes with Operators

While Kubernetes excels at managing stateless microservices via standard Deployments and ReplicaSets, managing stateful applications—such as databases, message queues, and distributed caches—introduces significant complexity. These applications require stable network identities, persistent storage, and ordered deployment and termination. To solve this in an automated, scalable manner, high-performing engineering teams

By Allan Porras