GithubHelp home page GithubHelp logo

python-repository-hub / imageinary Goto Github PK

View Code? Open in Web Editor NEW

This project forked from nvidia/imageinary

0.0 0.0 0.0 122 KB

Imageinary is a reproducible mechanism which is used to generate large image datasets at various resolutions. The tool supports multiple image types, including JPEGs, PNGs, BMPs, RecordIO, and TFRecord files

License: Apache License 2.0

Python 100.00%

imageinary's Introduction

Imageinary

Imageinary is a reproducible mechanism which is used to generate large image datasets at various resolutions. The tool supports multiple image types, including JPEGs, PNGs, BMPs, RecordIO, and TFRecord files.

Use Cases

While benchmarking deep learning applications involving images, there are typically only a handful of public datasets that can be used and they tend to have small and limited image sizes. In an effort to run DL tests against various input sizes, we designed a tool to quickly and easily generate images of variable dimensions and types which can be fed to convolutional neural networks and deep learning pipelines.

The images are generated using random numpy arrays and are then converted to the requested output format and saved to the specified location.

Requirements

  • Python 3.7 or greater
  • TensorFlow 2 or TensorFlow 1.14
  • MXNet
  • Pillow
  • Numpy

Installation

The application is available on nvidia-pyindex and can be downloaded and installed using PIP.

Virtual Environment

It is recommended to run this program in a Python virtual environment to avoid dependency interference. The virtual environment can be installed and activated with:

pip install virtualenv
virtualenv --python python3 env
source env/bin/activate

Once finished using the application, you can leave the virtual environment with:

deactivate

Pre-install

Before installing the package, the nvidia-pyindex package needs to be installed to tell PIP where to look for the package. This needs to be installed just once.

pip install nvidia-pyindex

Minimal Install

The minimal install supports standard image types, such as JPG, PNG, and BMP and only installs the dependencies necessary for those tools.

pip install nvidia-imageinary

TFRecord Support

To add support for TFRecords in addition to the standard image types, TensorFlow needs to be included as a dependency. This can be done by running the following which installs TensorFlow alongside all other dependencies:

pip install nvidia-imageinary['tfrecord']

RecordIO Support

RecordIO files are supported using MXNet, which can be included as a dependency using the following:

pip install nvidia-imageinary['mxnet']

Complete Install

If desired, all dependencies can be installed to support standard images, TFRecords, and RecordIO files without installing extra packages later. Run the following to install all dependencies:

pip install nvidia-imageinary['all']

Running

Imageinary supports many different image types which can be specified while running the application.

JPEGs

A basic run to create 1000 4K JPEGs, and display the size of the first file and all files in the target directory path (not including subdirectories):

imagine create-images \
    --path /mnt/nvme/test_dir \
    --name random_image_ \
    --width 3840 \
    --height 2160 \
    --count 1000 \
    --image_format jpg \
    --size

The above command will generate 1,000 unique JPEG images in the /mnt/nvme/test_dir directory. Each filename will begin with random_image_ and end with an image number starting from 0, such as random_image_0.jpg, random_image_1.jpg, etc. The images will have dimensions of 3840x2160. The --size flag displays information on the images, such as the size of the first image and the size of the overall directory.

Note that for creating a very large number of images, systems can easily run out of memory. In this case, increase the --chunksize to reduce the amount of memory allocated by each multiprocessing pool.

TFRecords

TFRecords can also be easily generated using the application. This command expects images to be pre-loaded to be used as the basis for the TFRecord files.

imagine create-tfrecords \
    --source_path /mnt/nvme/test_dir \
    --dest_path /mnt/nvme/tf_record_dir \
    --name random_tfrecord_ \
    --img_per_file 100

This command uses the JPEGs created during the previous step and creates TFRecords based on those images. The TFRecords will be saved to /mnt/nvme/tf_record_dir where each file will be comprised of 100 JPEGs.

RecordIO

Similarly, RecordIO files can be generated with a single command:

imagine create-recordio \
    --source_path /mnt/nvme/test_dir \
    --dest_path /mnt/nvme/record_files \
    --name random_recordio_ \
    --img_per_file 100

This command uses the JPEGs created during the previous step and creates TFRecords based on those images. The TFRecords will be saved to /mnt/nvme/record_files where each file will be comprised of 100 JPEGs.

Importing

Imageinary can be imported directly by a Python script to hook into a deep learning workflow.

To write random images of a specific size to the system, import the library and specify the requested parameters:

from imagine import create_images

create_images('path/to/save/images',  # Path to save images
              'random_image_prefix_',  # Image name prefix
              3840,  # Width
              2160,  # Height
              1000,  # Number of images to create
              'png')  # Image format

The above command will save 1000 random PNG images of dimension 3840x2160 to the path/to/save/images directory, each prefixed with random_image_prefix_.

Similary, TFRecords can be generated from Python:

from imagine import create_tfrecords

create_tfrecords('path/to/saved_images',  # Path to saved images
                 'path/to/save/tfrecords',  # Path to save TFRecords
                 'random_tfrecord_',  # TFRecord file prefix
                 100)  # Number of images per file

As can RecordIO files:

from imagine import create_recordio

create_recordio('path/to/saved_images',  # Path to saved images
                'path/to/save/recordio',  # Path to save RecordIO files
                'random_recordio_',  # RecordIO file prefix
                100)  # Number of images per file

Testing

This repository includes functional tests for the major modules listed above which can be verified locally using pytest. While in the virtual environment, run the following:

$ pytest --cov=imagine --cov-report term-missing tests/

This will output the test results including the overall coverage for the Python module.

imageinary's People

Contributors

dependabot[bot] avatar imneonizer avatar joehandzik avatar roclark avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.