Skip to main content

Read Image Directory or Image List simultaneously with multi-processing

Project description

Concurrent-Image-Read

PyPI Status PyPI Status PyPI Status

Author : Aditya Mangal PyPI Status


Concurrent-Image-Read is a python module to read Image Files or Image List Concurrently with multi-threading

Installation

Dependencies

  • Python (>= 3.7)
  • cv2 (>= 4.5)
  • NumPy (>= 1.17)
  • glob (>= 0.7)
  • future (>= 0.18.2)

User installation

pip install ConcurrentImageRead

Source code

You can check the latest sources with the command:
git clone https://github.com/adityamangal1998/Concurrent-Image-Read.git

Usage

Default Parameters

    read function
  • image_list = List or Numpy array or Single Path of image
  • num_threads = Number of threads (default 3) (optional)
  • channel_type = BGR or RBG (default BGR) (optional)
  • root_path = String, Parent path for all files (optional)
  • grayscale = True or False (optional)
  • resize = List or Tuple resize scale in (width,height) (optional)
  • normalisation = True or False, Image array divide by 255 (optional)
    read_dir function
  • dir_path = String, Path of Image Directory
  • file_type = 'all' or 'PNG','JPG',...etc or ['JPG','PNG',...] (case sensitive) (default png) (optional)
  • num_threads = Number of threads (default 3) (optional)
  • channel_type = BGR or RBG (default BGR) (optional)
  • sub_dir = Bool, Find all Images in all child directory also (default False) (optional)
  • grayscale = True or False (optional)
  • normalisation = True or False, Image array divide by 255 (optional)

With Image List

You can check the latest sources with the command:
import ConcurrentImageRead as CIR
image_list = ['1.png','2.png','3.png']
images = CIR.read(image_list,num_threads=3, channel_type='BGR')

With Image Path

import ConcurrentImageRead as CIR
image_list = '1.png'
images = CIR.read(image_list,num_threads=3, channel_type='BGR')

With Directory Path

import ConcurrentImageRead as CIR
dir_path = 'data/images'
images = CIR.read_dir(dir_path,file_type='png', num_threads=3, channel_type='BGR', sub_dir=False)

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

ConcurrentImageRead-0.0.9.tar.gz (5.1 kB view hashes)

Uploaded Source

Built Distribution

ConcurrentImageRead-0.0.9-py3-none-any.whl (6.1 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page