Skip to main content

ReadTheDocs Pypi Downloads Codecov GithubActions

https://i.imgur.com/L0k84xQ.png

NOTE: This IBEIS software is the result of my (Jon Crall’s) PhD work. After I graduated in 2017, the image analysis components of IBEIS and the core HotSpotter program were transferred to WildMe, which as of 2024 has merged with Conservation X Labs.

I continue to independently maintain and support this software, but it can only handle medium scale populations and its GUI interface can be difficult to work with. If you have a larger population or the need for simpler and scalable web interfaces please reach out Conservation X Labs.

If you have the ambition to run and possibly develop software yourself, then keep reading.

IBEIS - Image Analysis

I.B.E.I.S. = Image Based Ecological Information System

"(Note: the rhino and wildebeest matches may be dubious. Other species do work well though")

Installation Instructions (updated 2020-Nov-01)

The IBEIS software is now available on pypi for Linux systems. This means if you have Python installed. You can simply run:

pip install ibeis

to install the software. Then the command to run the GUI is:

ibeis

On Windows / OSX I recommend using a Linux virtual machine. However, if you are computer savvy it is possible to build all of the requirements on from source. The only tricky components are installing the packages with binary dependencies: pyhesaff and vtool_ibeis. If you have these built then the rest of the dependencies can be installed from pypi even on OSX / Windows.

NOTE: When using a VM on windows, you may encounter an error:

qt.qpa.plugin: Could not load the Qt platform plugin "xcb" in
... even though it was found. This application failed to start because no
Qt platform plugin could be initialized. Reinstalling the application may
fix this problem.

Available platform plugins are: xcb, eglfs, ...

Core dumped

The reason the issue happens appears to be because the opencv-python package includes libraries also packaged with PyQt5 and those are conflicting.

The workaround is to uninstall opencv-python and then install a variant that does not include extra Qt libs:

pip uninstall opencv-python
pip install opencv-python-headless

Basic Usage (updated 2020-Nov-01)

After installation running the ibeis command will open the GUI:

If you have already made a database, it will automatically open the most recently used database.

https://i.imgur.com/xXF7w8P.png

If this is the first time you’ve run the program it will not have a database opened:

https://i.imgur.com/Ey9Urcv.png

Select new database, (which will first ask you to select a work directory where all of your databases will live). Then you will be asked to create a database name. Select one and then create the database in your work directory.

You can drag and drop images into the GUI to add them to the database. Double clicking an image lets you add “annotations”:

https://i.imgur.com/t0LQZot.png

You can also right click one or more images and click “Add annotations from entire images” if your images are already localized to a single individual.

It important than when you add an annotation, you set its species. You can right click multiple annotations and click “set annotation species”. Change this to anything other than “____”.

Once you have annotations with species, you can click one and press “q” to query for matches in the database of other annotations:

https://i.imgur.com/B0ilafa.png

Right clicking and marking each match as “True” or “False” (or alternatively selecting a row and pressing “T” or “F”) will mark images as the same or different individuals. Groups marked as the same individual will appear in the “Tree of Names”.

Note there are also batch identification methods in the “ID Encounters” “ID Exemplars” and “Advanced ID Interface” (my personal recommendation). Play around with different right-click menus (although note that some of these are buggy and will crash the program), but the main simple identification procedures are robust and should not crash.

Program Description

IBEIS program for the storage and management of images and derived data for use in computer vision algorithms. It aims to compute who an animal is, what species an animal is, and where an animal is with the ultimate goal being to ask important why biological questions. This This repo Image Analysis image analysis module of IBEIS. It is both a python module and standalone program.

Currently the system is build around and SQLite database, a PyQt5 GUI, and matplotlib visualizations. Algorithms employed are: random forest species detection and localization, hessian-affine keypoint detection, SIFT keypoint description, LNBNN identification using approximate nearest neighbors. Algorithms in development are SMK (selective match kernel) for identification and deep neural networks for detection and localization.

The core of IBEIS is the IBEISController class. It provides an API into IBEIS data management and algorithms. The IBEIS API Documentation can be found here: http://erotemic.github.io/ibeis

The IBEIS GUI (graphical user interface) is built on top of the API. We are also experimenting with a new web frontend that bypasses the older GUI code.

Self Installing Executables

A Windows installer (IBEIS-Setup-<version>.exe) can be built from source with a single PowerShell command, and is also built on CI as an artifact of every run. See dev/_installers/README.md for the full build-on-a-VM and testing guide.

We have not published official installer releases yet (contributions welcome).

However there are old [HotSpotter](https://github.com/Erotemic/hotspotter) (the predecessor to IBEIS) binaries available.

Dropbox should still be hosting the download links:

IPFS CIDs for the previous installers are QmSnyetkniriHUwTxvzwhkysPKjUj7udBqq5mpK24VJXVM and QmZ3WknrAaxPZhZebdQWZ45EEKwu1Tr6bkFWJzfPRtENs7.

If you are unfamiliar with IPFS use the following gateway links:

https://ipfs.io/ipfs/QmQonrckXZq37ZHDoRGN4xVBkqedvJRgYyzp2aBC5Ujpyp?redirectURL=QmSnyetkniriHUwTxvzwhkysPKjUj7udBqq5mpK24VJXVM&autoadapt=0&requiresorigin=0&web3domain=0&immediatecontinue=1&magiclibraryconfirmation=0

https://ipfs.io/ipfs/QmQonrckXZq37ZHDoRGN4xVBkqedvJRgYyzp2aBC5Ujpyp?redirectURL=QmZ3WknrAaxPZhZebdQWZ45EEKwu1Tr6bkFWJzfPRtENs7&autoadapt=0&requiresorigin=0&web3domain=0&immediatecontinue=1&magiclibraryconfirmation=0

Visual Demo

Feature Extraction Nearest Neighbors

Match Scoring

Match Inspection

Spatial Verification

sver
python -m vtool.spatial_verification spatially_verify_kpts --show

Name Scoring

namematch
python -m ibeis.algo.hots.chip_match show_single_namematch --qaid 1 --show

Identification Ranking

rankedmatches
python -m ibeis.algo.hots.chip_match show_ranked_matches --show --qaid 86

Inference

encgraph
# broken
# python -m ibeis.algo.preproc.preproc_encounter compute_encounter_groups --show

Internal Modules

In the interest of modular code we are actively developing several different modules.

ibeis

ibeisGithubActions

utool

utoolGithubActions

plottool_ibeis

plottool_ibeisGithubActions

guitool_ibeis

guitool_ibeisGithubActions

dtool_ibeis

dtool_ibeisGithubActions

pyhesaff

pyhesaffGithubActions

pyflann_ibeis

pyflann_ibeisGithubActions

vtool_ibeis

vtool_ibeis_extGithubActions

bluemellophone’s IBEIS Image Analysis modules

Building from source

To build from source you need to be able to build the following 3 projects with binary dependences. These depened on having a development version of OpenCV and LZ4.

If you are on Linux simply using the wheels for the above projects ( i.e. pip install vtool_ibeis_ext pyflann_ibeis pyhesaff is recommended). On OSX and Win32 these need to be build manually (any contributions to help these build win32 or osx wheels on their respective project CI would be amazing!).

The rest of the dependency repos (guitool_ibeis, plottool_ibeis, dtool_ibeis, vtool_ibeis,) are pure python and can be installed in development mode with the normal clone the repo, and run pip install -e . inside the repo process.

Given a Python environment where each of the dependency modules is installed this repo can be installed with pip install -e . as well.

Demo Databases

A set of small (400MB) demo databases PZ_MTEST1 and NAUT_TEST can be downloaded via.

python dev/reset_dbs.py

Note that it downloads the data from an IPFS gateway, which may be slow and require several attempts before it works.

Running Tests

The tests depend on an even smaller set of test databases, which can be prepared via ibeis –reset-ci-dbs. Once you have the test data you can use the run_doctests.sh or run_tests.py script to execute the system tests.

Known issues

  • We do not add or remove points from kdtrees. They are always rebuilt

  • Changing algorithm settings in the preferences window seems bugged and probably requires a fix in utool. The default settings should work and using the Python API with explicit algorithm settings should also be fine.

  • The code is a mess! PRs are welcome!

  • The UI has lots of unused or broken components. PRs to disable or make these nicer are welcome!

  • The only blockers for Windows / OSX pip installs are pyhesaff, pyflann_ibeis, and vtool_ibeis_ext binary wheels. Getting these to build on Github Actions would mean pip installable IBEIS on non-Linux systems.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

ibeis-2.6.0-py3-none-any.whl (5.9 MB view details)

Uploaded Python 3

File details

Details for the file ibeis-2.6.0-py3-none-any.whl.

File metadata

  • Download URL: ibeis-2.6.0-py3-none-any.whl
  • Upload date:
  • Size: 5.9 MB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for ibeis-2.6.0-py3-none-any.whl
Algorithm Hash digest
SHA256 0f29012870ab89f7194e52098d97e88a2766a335efebf8fb972b4acef3aaea30
MD5 c4d9289de15d962ccc1d2a788001b132
BLAKE2b-256 6c138982698a0b553f3bc46ee6a64cc91632e369c6b1597891da8f4c4b98ee5f

See more details on using hashes here.

Provenance

The following attestation bundles were made for ibeis-2.6.0-py3-none-any.whl:

Publisher: release.yml on Erotemic/ibeis

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Release history Release notifications | RSS feed

This release

2.6.0 This release

1 file

2.5.0

1 file

2.4.0

1 file

2.3.2

2 files

2.3.1

2 files

2.3.0

2 files

2.2.4

3 files

2.2.3

1 file

2.2.2

1 file

2.2.1

2 files

2.0.2

2 files

2.0.1

2 files

2.0.0

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page