scorelab / Elphas

Elephant Identification and counting system

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Elphas

An Elephant Identification and Counting System.

About

Elphas is currently used to count the number of elephants in an image or to classify an image based on the appearence of an elephant. Project was designed to facilitate the census of elephants in Sri Lanka.

Main Functionalities Available

  1. An interface to upload a single image or a compressed file of several images (a task) to the server to process(count or classify).
  2. An option to save a task(processing of an uploaded files) for later processing.
  3. Callification of images
  • Two neural networks are available (Google's InceptionV3 and Microsoft's ResNet50)
  • Retraining is available for Inception with a custom dataset and ResNet is used as an api from Keras.
  1. Counting of elephants
  • By Tensorflow's object detection api where the NN model can be again trained with a custom dataset.
  1. Getting the count based on locations. (Images should be geo tagged)
  2. Interface to see the results.
  3. Reporting for misclassified or miscounted images.
  4. User authentication based on google account or email account and updation of passwords if using an email account.

High Level Architecture

Installation

To activate front-end, inside front-end execute

npm install

after the node modules are downloaded, execute

npm start

In the back-end you would find requirements.txt which includes all the required modules. To install those, in the back-end run

pip install -r requirements.txt

An Anaconda environment is preferred.

For Windows, as the server is written in app.py, run

set FLASK_APP=app.py
flask run

to start the server.

For linux or mac run

export FLASK_APP=app.py
flask run

to start the server.

Repo Status

At the moment, classsification of the images won't work as the weight files of the model are not present beacuse of their file size, and also the the dataset used to train the inception model is not available, you would find an empty directory inside retraining dir in back-end, if not make a directory 'dataset' inside retrain directory.

To get the classification working you'd need to run retrain.py script to retrain the model. To retrain the model, add two sub directories 'elephant' and 'non-elephant' inside dataset directory and your images which falls under the respective class, then run retrain.py script.

About

Elephant Identification and counting system

License:Apache License 2.0


Languages

Language:Python 58.8%Language:Jupyter Notebook 32.5%Language:JavaScript 5.3%Language:CSS 3.2%Language:Shell 0.1%Language:HTML 0.0%