Scientific Animal Image Analysis (SANIMAL)
SANIMAL is a program developed for the University of Arizona's School of Natural Resources and the Environment department. It allows users to tag camera trap image data, transfer it onto a database, and then query it.
Getting Started
Clone the repository and build it using maven. All dependencies will be automatically fetched.
Prerequisites
Java 8:
http://www.oracle.com/technetwork/java/javase/downloads/jdk8-downloads-2133151.html
Maven:
https://maven.apache.org/install.html
Prebuilt executable
If you want to run the software without needing to build from source, prebuilt executables can be found in the Version History directory
Sanimal X.Y.Z.jar is the original legacy software written in Swing which was the predecessor to SanimalFX.
Sanimal FX X.Y.jar is the current latest build of Sanimal FX including all dependencies.
Executables are executed with:
java -jar 'Sanimal FX X.Y.jar'
Build from Source
Clone the github repository into a directory:
git clone https://github.com/DavidM1A2/Sanimal <directory>
Build the project into an executable JAR file to run:
cd '<directory>/Sanimal FX'
mvn -U compile package
Run the program:
java -jar '<directory>/Sanimal FX/target/SanimalFX-1.0-SNAPSHOT-jar-with-dependencies.jar'
Sample screenshots
Login - This screen is used to log into your account.
Home - This tab is used to credit developers and provide an exit button.
Import - This tab is used to tag images with metadata.
Collections - This tab is used to show collections and upload images.
Analyze/Query - This tab is used to query uploaded image data.
Map - This tab is used to display all locations on an interactive map.
Setings - This tab is used to change program settings.
Built With
- Maven - Dependency Management
Authors
- David Slovikosky - Developed the program - DavidM1A2