Alternat is a tool that automates alt text generation.
Project description
alternat: Automate your image alt-text generation workflow.
Resources
- Homepage and Reference: https://alternat.readthedocs.io/
Description
alternat automates the image alt-text generation workflow by offering ready to use methods for downloading (Collection in alternat lingo) images and then generating alt-text.
alternat features are grouped into tasks - Collection and Generation
Collection
Collection offers convenience methods to download images. It uses puppeteer (headless chrome) to automate the website crawling and image download process
Generation
Generation offers convenience methods to generate alt-texts. It offers drivers to generate the alt-texts.
- Azure API - Uses Azure API for image captioning and OCR. Note Azure is a paid service.
- Google API - Uses google API for image captioning and OCR. Note google is a paid service.
- Open Source - Uses free open source alternative for OCR and image captioning.
Supported Video and image file formats jpeg, jpg and png are supported.
Installation
Installation using Docker
-
Download and Install Docker Desktop for Mac using this link docker-desktop
-
Clone this repo https://github.com/keplerlab/alternat.git
-
Change your directory to your cloned repo.
-
Open terminal and run following commands
cd <path-to-repo> //you need to be in your repo folder
docker-compose build
- Start docker container using this command
docker-compose up
- In a new terminal window open terminal inside docker container for running alternat using command line type following command:
docker-compose exec alternat bash
- You can use this command line to execute collect or generate command line application like this .
Installation from pypi, source and Anaconda Python
Please refer to os specific respective installation guides for macOS, ubuntu and Windows respectively.
Running generate task using command line:
If you want to generate alternate text for any image or folder containing multiple images, you can use Command line option which we call generation stage.
To run generation stage alone you can use following command:
# To run a single file, results will be collected under "results/generate"
# The image extensions supported are: .jpg, .jpeg, .png.
python app.py generate --output-dir-path="./results" --input-image-file-path="./sample/images_with_text/sample1.png"
or
# To run for entire directory, results will be collected under "results/generate"
# The image extensions supported are: .jpg, .jpeg, .png.
python app.py generate --input-dir-path="./sample/images_with_text" --output-dir-path="./results"
or
# To generate alt-text using specific driver (like azure, google or open source)
# Do not forget to add the credentials to their respective config files when using azure and google
# azure needs SUBSCRIPTION_KEY and ENDPOINT URL
# google needs ABSOLUTE_PATH_TO_CREDENTIALS_FILE (a credential json file)
python app.py generate --output-dir-path="./results" --input-image-file-path="./sample/images_with_text/sample1.png" --driver-config-file-path="./sample/generator_driver_conf/azure.json"
Sample images are located at sample/images and sample/images_with_text
Running collect task using command line:
First stage is called collection stage, it can be used to crawl and download images from any website or website url, to run the collection stage use following commands:
Use case: Download image from single page
# To run the collection
python app.py collect --collect-using-apify <WEBSITE_URL> ./DATADUMP
Use case: Download images recursively for a given site
# To run the collection
python app.py collect --collect-using-apify --download-recursive <WEBSITE_URL> ./DATADUMP
Knows Issue / Troubleshooting
Please refer to FAQ\Troubleshooting section inside alternat documenation, or raise an Github issue.
Attributions
- For open source ocr we are using EasyOCR project https://github.com/JaidedAI/EasyOCR by Rakpong Kittinaradorn.
- For opensource caption generation we are using model training and inference scripts using method at https://github.com/sgrvinod/a-PyTorch-Tutorial-to-Image-Captioning by Sagar Vinodababu.
- For web crawling we are using apify wrapper over puppeteer library https://apify.com/.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
Built Distribution
File details
Details for the file alternat-0.1.4-py3-none-any.whl
.
File metadata
- Download URL: alternat-0.1.4-py3-none-any.whl
- Upload date:
- Size: 42.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.25.1 setuptools/51.0.0.post20201207 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.7.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7ce3b6bc5d1268134d25083fbc6ca687b0d11ea59835450ba388d4b2613e0fe9 |
|
MD5 | 147a9457cb20eaf61066f61de3f3949d |
|
BLAKE2b-256 | dfb8b62fd33542bc9eced2eb5b96c90a1eded4cecce45624249cb694d485ba68 |