Skip to content

warunanc/leopard-spotter

 
 

Repository files navigation

ReadTheDocs Pypi Downloads Codecov CircleCI Travis Appveyor

image

This project is a component of the WildMe / WildBook project: See https://github.com/WildbookOrg/

NOTE: This IBEIS software is the result of my (Jon Crall's) PhD work. After I graduated, the image analysis components of IBEIS and the core HotSpotter program have been transferred and are now being developed by the WildMe organization. While this software is maintained and supported, it can only handle medium scale populations and its it 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 to the WildMe project at services@wildme.org (more info: https://www.wildme.org/#/services/ ).

IBEIS - Image Analysis

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

"(Note: the rhino and wildebeest mathces 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.

image

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

image

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":

image

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:

image

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 PyQt4 / 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

Unfortunately we have not released self-installing-executables for IBEIS yet. We ~plan~ hope to release these "soon".

However there are old HotSpotter (the software which IBEIS is based on) binaries available. These can be downloaded from: http://cs.rpi.edu/hotspotter/

Visual Demo

Feature Extraction

Nearest Neighbors

Match Scoring

Match Inspection

Spatial Verification

sver

python -m vtool.spatial_verification --test-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.

Erotemic's IBEIS Image Analysis module dependencies

bluemellophone's IBEIS Image Analysis modules

The IBEIS module itself:

IBEIS Development Environment Setup

# The following install script install ibeis and all dependencies. 
# If it doesnt you can look at the older instructions which follow
# and try to figure it out. After running this you should have a code
# directory with all of the above repos. 

# Navigate to your code directory
export CODE_DIR=~/code
mkdir $CODE_DIR
cd $CODE_DIR

# Clone IBEIS
git clone https://github.com/Erotemic/ibeis.git
cd ibeis

# Install the requirements for super_setup
pip install -r requirements/super_setup.txt

# Install the development requirements (note-these are now all on pypi, so
# this is not strictly necessary)
python super_setup.py ensure

# NOTE: you can use super_setup to do several things
python super_setup.py --help
python super_setup.py versions
python super_setup.py status
python super_setup.py check
python super_setup.py pull

# Run the run_developer_setup.sh file in each development repo
python super_setup.py develop

# Or you can also just do to use pypi versions of dev repos:
python setup.py develop

# Optional: set a workdir and download a test dataset
.python -m ibeis.dev 
.python -m ibeis.dev -t mtest 
python -m ibeis.dev -t nauts 
./reset_dbs.py

python -m ibeis --set-workdir ~/data/work --preload-exit
python -m ibeis -e ensure_mtest

# make sure everyhing is set up correctly
python -m ibeis --db PZ_MTEST

Running Tests

The new way of running tests is with xdoctest, or using the "run_doctests.sh" script.

Example usage

(Note: This list is far from complete, and some commands may be outdated)

#--------------------
# Main Commands
#--------------------
python -m ibeis.main <optional-arguments> [--help]
python -m ibeis.dev <optional-arguments> [--help]
# main is the standard entry point to the program
# dev is a more advanced developer entry point

# ** NEW 7-23-2015 **: the following commands are now equivalent and do not
# have to be specified from the ibeis source dir if ibeis is installed
python -m ibeis <optional-arguments> [--help]
python -m ibeis.dev <optional-arguments> [--help]

# Useful flags.
# Read code comments in dev.py for more info.
# Careful some commands don't work. Most do.
# --cmd          # shows ipython prompt with useful variables populated
# -w, --wait     # waits (useful for showing plots)
# --gui          # starts the gui as well (dev.py does not show gui by default, main does)
# --web          # runs the program as a web server
# --quiet        # turns off most prints
# --verbose      # turns on verbosity
# --very-verbose # turns on extra verbosity
# --debug2       # runs extra checks
# --debug-print  # shows where print statments occur
# -t [test]


#--------------------
# PSA: Workdirs:
#--------------------
# IBEIS uses the idea of a work directory for databases.
# Use --set-workdir <path> to set your own, or a gui will popup and ask you about it
./main.py --set-workdir /raid/work --preload-exit
./main.py --set-logdir /raid/logs/ibeis --preload-exit

python -m ibeis.dev --set-workdir ~/data/work --preload-exit

# use --db to specify a database in your WorkDir
# --setdb makes that directory your default directory
python -m ibeis.dev --db <dbname> --setdb

# Or just use the absolute path
python -m ibeis.dev --dbdir <full-dbpath>


#--------------------
# Examples:
# Here are are some example commands
#--------------------
# Run the queries for each roi with groundtruth in the PZ_MTEST database
# using the best known configuration of parameters
python -m ibeis.dev --db PZ_MTEST --allgt -t best
python -m ibeis.dev --db PZ_MTEST --allgt -t score


# View work dir
python -m ibeis.dev --vwd --prequit

# List known databases
python -m ibeis.dev -t list_dbs


# Dump/Print contents of params.args as a dict
python -m ibeis.dev --prequit --dump-argv

# Dump Current SQL Schema to stdout 
python -m ibeis.dev --dump-schema --postquit


#------------------
# Convert a hotspotter database to IBEIS
#------------------

# NEW: You can simply open a hotspotter database and it will be converted to IBEIS
python -m ibeis convert_hsdb_to_ibeis --dbdir <path_to_hsdb>

# This script will exlicitly conver the hsdb
python -m ibeis convert_hsdb_to_ibeis --hsdir <path_to_hsdb> --dbdir <path_to_newdb>

#---------
# Ingest examples
#---------
# Ingest raw images
python -m ibeis.dbio.ingest_database --db JAG_Kieryn

#---------
# Run Tests
#---------
./run_tests.py

#----------------
# Test Commands
#----------------
# Set a default DB First
python -m ibeis.dev --setdb --dbdir /path/to/your/DBDIR
python -m ibeis.dev --setdb --db YOURDB
python -m ibeis.dev --setdb --db PZ_MTEST
python -m ibeis.dev --setdb --db PZ_FlankHack

# List all available tests
python -m ibeis.dev -t help
# Minimal Database Statistics
python -m ibeis.dev --allgt -t info
# Richer Database statistics
python -m ibeis.dev --allgt -t dbinfo
# Print algorithm configurations
python -m ibeis.dev -t printcfg
# Print database tables
python -m ibeis.dev -t tables
# Print only the image table
python -m ibeis.dev -t imgtbl
# View data directory in explorer/finder/nautilus
python -m ibeis.dev -t vdd

# List all IBEIS databases
python -m ibeis list_dbs
# Delete cache
python -m ibeis delete_cache --db testdb1


# Show a single annotations
python -m ibeis.viz.viz_chip show_chip --db PZ_MTEST --aid 1 --show
# Show annotations 1, 3, 5, and 11
python -m ibeis.viz.viz_chip show_many_chips --db PZ_MTEST --aids=1,3,5,11 --show


# Database Stats for all our important datasets:
python -m ibeis.dev --allgt -t dbinfo --db PZ_MTEST | grep -F "[dbinfo]"

# Some mass editing of metadata
python -m ibeis.dev --db PZ_FlankHack --edit-notes
python -m ibeis.dev --db GZ_Siva --edit-notes
python -m ibeis.dev --db GIR_Tanya --edit-notes
python -m ibeis.dev --allgt -t dbinfo --db GZ_ALL --set-all-species zebra_grevys

# Current Experiments:

# Main experiments
python -m ibeis --tf draw_annot_scoresep --db PZ_MTEST -a default -t best --show
python -m ibeis.dev -e draw_rank_cdf --db PZ_MTEST --show -a timectrl
# Show disagreement cases
ibeis --tf draw_match_cases --db PZ_MTEST -a default:size=20 \
    -t default:K=[1,4] \
    --filt :disagree=True,index=0:4 --show

# SMK TESTS
python -m ibeis.dev -t smk2 --allgt --db PZ_MTEST --nocache-big --nocache-query --qindex 0:20
python -m ibeis.dev -t smk2 --allgt --db PZ_MTEST --qindex 20:30 --va

# Feature Tuning
python -m ibeis.dev -t test_feats -w --show --db PZ_MTEST --allgt --qindex 1:2

python -m ibeis.dev -t featparams -w --show --db PZ_MTEST --allgt
python -m ibeis.dev -t featparams_big -w --show --db PZ_MTEST --allgt

# NEW DATABASE TEST
python -m ibeis.dev -t best --db seals2 --allgt

# Testing Distinctivness Parameters
python -m ibeis.algo.hots.distinctiveness_normalizer --test-get_distinctiveness --show --db GZ_ALL --aid 2
python -m ibeis.algo.hots.distinctiveness_normalizer --test-get_distinctiveness --show --db PZ_MTEST --aid 10
python -m ibeis.algo.hots.distinctiveness_normalizer --test-test_single_annot_distinctiveness_params --show --db GZ_ALL --aid 2

# 2D Gaussian Curves
python -m vtool_ibeis.patch --test-test_show_gaussian_patches2 --show

# Test Keypoint Coverage
python -m vtool_ibeis.coverage_kpts --test-gridsearch_kpts_coverage_mask --show
python -m vtool_ibeis.coverage_kpts --test-make_kpts_coverage_mask --show

# Test Grid Coverage
python -m vtool_ibeis.coverage_grid --test-gridsearch_coverage_grid_mask --show
python -m vtool_ibeis.coverage_grid --test-sparse_grid_coverage --show
python -m vtool_ibeis.coverage_grid --test-gridsearch_coverage_grid --show

# Test Spatially Constrained Scoring
python -m ibeis.algo.hots.vsone_pipeline --test-compute_query_constrained_matches --show
python -m ibeis.algo.hots.vsone_pipeline --test-gridsearch_constrained_matches --show

# Test VsMany ReRanking
python -m ibeis.algo.hots.vsone_pipeline --test-vsone_reranking --show
python -m ibeis.algo.hots.vsone_pipeline --test-vsone_reranking --show --homog

# Problem cases with the back spot
python -m ibeis.algo.hots.vsone_pipeline --test-vsone_reranking --show --homog --db GZ_ALL --qaid 425
python -m ibeis.algo.hots.vsone_pipeline --test-vsone_reranking --show --homog --db GZ_ALL --qaid 662
python -m ibeis.dev -t custom:score_method=csum,prescore_method=csum --db GZ_ALL --show --va -w --qaid 425 --noqcache
# Shows vsone results with some of the competing cases
python -m ibeis.algo.hots.vsone_pipeline --test-vsone_reranking --show --homog --db GZ_ALL --qaid 662 --daid_list=425,342,678,233

# More rerank vsone tests
python -c "import utool as ut; ut.write_modscript_alias('Tbig.sh', 'dev.py', '--allgt  --db PZ_Master0')"
sh Tbig.sh -t custom:rrvsone_on=True custom 
sh Tbig.sh -t custom:rrvsone_on=True custom --noqcache

#----
# Turning back on name scoring and feature scoring and restricting to rerank a subset
# This gives results that are closer to what we should actually expect
python -m ibeis.dev --allgt -t custom \
    custom:rrvsone_on=True,prior_coeff=1.0,unconstrained_coeff=0.0,fs_lnbnn_min=0,fs_lnbnn_max=1 \
    custom:rrvsone_on=True,prior_coeff=0.5,unconstrained_coeff=0.5,fs_lnbnn_min=0,fs_lnbnn_max=1 \
    custom:rrvsone_on=True,prior_coeff=0.1,unconstrained_coeff=0.9,fs_lnbnn_min=0,fs_lnbnn_max=1 \
    --print-bestcfg
#----

#----
# VsOneRerank Tuning: Tune linar combination
python -m ibeis.dev --allgt -t \
    custom:fg_weight=0.0 \
\
    custom:rrvsone_on=True,prior_coeff=1.0,unconstrained_coeff=0.0,fs_lnbnn_min=0.0,fs_lnbnn_max=1.0,nAnnotPerNameVsOne=200,nNameShortlistVsone=200 \
\
    custom:rrvsone_on=True,prior_coeff=.5,unconstrained_coeff=0.5,fs_lnbnn_min=0.0,fs_lnbnn_max=1.0,nAnnotPerNameVsOne=200,nNameShortlistVsone=200 \
\
  --db PZ_MTEST
#--print-confusion-stats --print-gtscore
#----

# Testing no affine invaraiance and rotation invariance
python -m ibeis.dev -t custom:AI=True,RI=True custom:AI=False,RI=True custom:AI=True,RI=False custom:AI=False,RI=False --db PZ_MTEST --show

Caveats / Things we are not currently doing

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

About

image based ecological information system

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Python 99.2%
  • Other 0.8%