Image Tagger is an application that predicts an image's tags using deep-learning. It is useful for photographers who want to improve their workflow by auto-tagging images. https://blog.nuculabs.dev
Find a file
2024-05-19 12:07:09 +03:00
.github update FUNDING.yml 2024-04-28 12:20:19 +03:00
.idea Change flatpak build steps: remove chmod 2024-05-11 15:21:38 +03:00
docs update application image 2024-04-13 21:43:48 +03:00
flatpak Disable wayland access 2024-05-11 20:59:03 +03:00
gradle/wrapper update gradle config 2024-03-30 11:43:31 +02:00
img-ai implement img-core a core module 2024-04-27 15:33:37 +03:00
img-core [Feature] [ALL] Implement image metadata extraction for field Artist 2024-05-19 12:07:09 +03:00
img-ui [Bugfix] [Linux] Cannot open images that contain spaces 2024-05-19 11:53:49 +03:00
.gitignore update gitignore 2024-04-13 16:18:46 +03:00
gradlew update gradle config 2024-03-30 11:43:31 +02:00
gradlew.bat update gradle config 2024-03-30 11:43:31 +02:00
LICENSE add license 2024-03-22 23:22:21 +02:00
readme.md Fix Flatpak build 2024-05-11 15:40:58 +03:00
settings.gradle.kts convert settings.gradle to kotlin syntax 2024-05-03 19:10:46 +03:00

Image Tagger

Image Tagger is a simple software application for predicting an image's keywords using a deep learning model based on resnet.

It allows photographers to automate the image tagging process. 📸


Instructions

  1. Download a release from the release page.
  2. Unzip the release.
  3. Run ImageTagger\image\bin\ImageTagger.

./docs/application.png

Photo credit: https://unsplash.com/@ndcphoto

Alternatively see Flatpak installation instructions.

Development

If you want to build the application yourself, you will need Java 17 JDK and the AI models available in the AIModels release.

The release archive is in the releases page.

Note: On Linux desktop related features (opening images, folders) are handled via xdg-open.

Building and Running from source

To build from source you will need Java 17 JDK and Gradle.

Due to some GitHub limitations that do not allow me to upload large files, you'll need to download the AIModels zip file which contains the deep learning models and place them into the ImageTagger/img-ai/src/main/resources/dev/nuculabs/imagetagger/ai/ path.

To build the project run:

gradlew build

To run:

gradlew run

Building the FlatPak

To build the Flatpak run the following commands:

gradlew jlinkZip
cd flatpak
flatpak-builder --sandbox --user --install --force-clean build-dir dev.nuculabs.ImageTagger.yaml

Blog

You can visit my tech blog at https://blog.nuculabs.dev.

Credits