open-iris 1.1.1

Creator: railscoder56

Last updated:

Add to Cart

Description:

openiris 1.1.1

IRIS: Iris Recognition Inference System
Package documentation •
Getting started tutorial •
Hugging Face repo •
IRIS blog post









Table of contents

About
Quickstart

Installation
Setup for development
Running inference


Disclaimer
Project structure
Example notebooks
Documentation
Issues, pull requests and feature requests
Citation
License
Resources

About
Welcome to Worldcoin's Iris Recognition Inference System (IRIS) project, an advanced iris recognition pipeline designed for robust and secure biometric verification. This project leverages state-of-the-art computer vision and machine learning techniques to provide accurate and efficient iris recognition system.
Iris recognition is a powerful biometric technology that identifies individuals based on the unique patterns within the iris of the eye. IRIS package aims to make iris recognition accessible and enable further advancement in the field.
Project features highlights are:

Large-Scale Verification: Capable of verifying uniqueness among billions of users.
High-Performance Iris Segmentation: Accurate segmentation of iris regions for precise feature extraction.
Scalable Matching Algorithm: Robust matching algorithm designed for scalability without compromising accuracy.
User-Friendly Integration: Simple integration into applications that demand seamless biometric verification.

High-level iris recognition pipeline steps overview:

Iris Image Input: Provide an iris image for verification.
Iris Segmentation: Identify and isolate the iris region within the image.
Feature Extraction: Extract unique features from the iris to create a template.
Scalable Matching: Efficiently compare extracted features for large-scale uniqueness verification.
Result: Receive the verification result with a confidence score, enabling secure and scalable authentication.

The Worldcoin system utilizes iris recognition algorithm for verifying uniqueness in a challenging environment, involving billions of individuals. This entails a detailed exploration of the Worldcoin biometric pipeline, a system that confirms uniqueness through the encoding of iris texture into an iris code.
More detailed pipeline overview can be found in our blog post dedicated to IRIS project.
Disclaimer
The Iris Recognition Inference System (IRIS) software repository is owned and maintained by the Worldcoin Foundation, the steward of the Worldcoin protocol; the repository is not affiliated with any other project or service provider
Quickstart
Installation
Installation is as simple as running pip install with specifying IRIS_ENV installation global flag (IRIS_ENV flag may be skipped if iris is installed from PyPl server but this option is only available when iris is installed on local machine). The IRIS_ENV flag is used to indicate an "environment" in which package is meant to work. Possible options are:

SERVER - For installing iris package with dependencies required for running an inference on a local machines.

# On a local machine
pip install open-iris
# or directly from GitHub
IRIS_ENV=SERVER pip install git+https://github.com/worldcoin/open-iris.git


ORB - For installing iris package with dependencies required for running an inference on the Orb.

# On the Orb
IRIS_ENV=ORB pip install git+https://github.com/worldcoin/open-iris.git


DEV - For installing iris package together with packages necessary for development of iris package.

# For development
IRIS_ENV=DEV pip install git+https://github.com/worldcoin/open-iris.git

After successfully installing iris, verify your installation by attempting to import.
python3 -c "import iris; print(iris.__version__)"

Setup for development
A conda environment simplifies the setup process for developing on the iris package. This conda environment ensures a seamless and consistent setup for contributors, reducing the complexity of dependency management. By utilizing conda, developers can easily replicate the development environment across different systems, minimizing potential setup obstacles. This approach aims to make it straightforward for anyone interested in contributing to quickly set up and engage in the development of iris package.
# Clone the iris repo
git clone https://github.com/worldcoin/open-iris

# Go to the repo directory
cd open-iris

# Create and activate conda environment
IRIS_ENV=DEV conda env create -f ./conda/environment_dev.yml
conda activate iris_dev

# (Optional, but recommended) Install git hooks to preserve code format consistency
pre-commit install
nb-clean add-filter --remove-empty-cells

Running inference
A simple inference run can be achived by running source code below.
import cv2
import iris

# 1. Create IRISPipeline object
iris_pipeline = iris.IRISPipeline()

# 2. Load IR image of an eye
img_pixels = cv2.imread("/path/to/ir/image", cv2.IMREAD_GRAYSCALE)

# 3. Perform inference
# Options for the `eye_side` argument are: ["left", "right"]
output = iris_pipeline(img_data=img_pixels, eye_side="left")

To fully explore and understand the extensive capabilities of the iris package, visit the Example notebooks section. Here, you'll find a collection of Jupyter Notebooks that serve as valuable resources, offering practical guides and real-world examples to provide a comprehensive insight into the rich functionalities and potential applications of the iris package.
Project structure
The iris package features a structured design with modular components, enhancing code organization and scalability.



Module
Description




iris
an iris recognition package


iris.callbacks
a module that implements callbacks used to customize on execute start and end behaviours of node or pipeline call


iris.io
a module that contains dataclasses and errors that flow through iris recognition pipeline when called


iris.nodes
a module that contains implementation of iris recognition pipeline nodes


iris.orchestration
a module that contains iris recognition pipeline's orchestration support mechanisms


iris.pipelines
a module that contains implementation of iris recognition pipelines


iris.utils
a module that contains utilities used throughout the code base and modules useful for outputs analysis



Example notebooks
The Jupyter Notebooks provided present practical guides and real-world instances to demonstrate the complete capabilities of the iris package.

Getting started
Configuring custom pipeline
Matching entities

Documentation
For detailed documentation, including installation instructions, usage guidelines, and configuration options, please refer to the IRIS project documentation.
Issues, pull requests and feature requests
If you have any question or you found a bug or you feel like some feature is missing, please don't hesitate to file a new issue, discussion or PR with respective title and description.
Any suggestion for potential project improvements are and will always be welcome!
Contact
If you have any questions, suggestions, or feedback, feel free to reach out to us:

Email: iris@toolsforhumanity.com
GitHub Issues: Open an issue
Contributors: Feel free to reach out to any project contributor directly!

Citation
@misc{wldiris,
author = {Worldcoin AI},
title = {IRIS: Iris Recognition Inference System of the Worldcoin project},
year = {2023},
url = {https://github.com/worldcoin/open-iris}
}

License
This project is licensed under the MIT license.
Resources

"Iris Recognition Inference System"
"Iris feature extraction with 2D Gabor wavelets"
"How iris recognition works"

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Customer Reviews

There are no reviews.