https://github.com/sujitmandal/images-into-array
convert multiple images into array
https://github.com/sujitmandal/images-into-array
array arraylist convert-images image-processing images-into-array pip pypi python
Last synced: 19 days ago
JSON representation
convert multiple images into array
- Host: GitHub
- URL: https://github.com/sujitmandal/images-into-array
- Owner: sujitmandal
- License: mit
- Created: 2020-06-24T17:08:56.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2022-03-30T14:23:37.000Z (almost 4 years ago)
- Last Synced: 2025-10-21T19:38:51.020Z (5 months ago)
- Topics: array, arraylist, convert-images, image-processing, images-into-array, pip, pypi, python
- Language: Python
- Homepage:
- Size: 73.2 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## Convert-Images-Into-Array:
[](https://travis-ci.org/sujitmandal/images-into-array) [](https://github.com/sujitmandal/images-into-array/blob/master/LICENSE)    [](https://anaconda.org/conda-forge/images-into-array) [](https://anaconda.org/conda-forge/images-into-array) [](https://conda.anaconda.org/conda-forge) [](https://anaconda.org/conda-forge/images-into-array) [](https://anaconda.org/conda-forge/images-into-array) 
[](https://pepy.tech/project/images-into-array)
Convert Multiple Images into a Array and Different Color Spaces into a Array.
## Package Installation :
```
pip install images-into-array
```
[Package Link](https://pypi.org/project/images-into-array/)
```
conda install -c conda-forge images-into-array
```
[Conda Package Link](https://anaconda.org/conda-forge/images-into-array)
[images-into-array-feedstock](https://github.com/conda-forge/images-into-array-feedstock)
## Convert-Images-Into-Array:
Convert Multiple Images into a Array and Different Color Spaces into a Array.This package fuction requres three argument one is path of the images folder and other is image_height and image_width.
OpenCV Document :
-----------------
[OpenCV Document](https://docs.opencv.org/3.4/de/d25/imgproc_color_conversions.html)
## How to import the module:
```python
images_path = ('')
image_height = 'Enter The Image Size [32, 64, 128]'
image_width = 'Enter The Image Size [32, 64, 128]'
```
## NORMAL :
```python
from images_into_array.images_into_array import images
array = images(images_path, image_height, image_width)
print(array.shape)
```
## RGB ↔ GRAY :
```python
from images_into_array.images_into_array import rgb_gray
gray = rgb_gray(images_path, image_height, image_width)
print(gray.shape)
```
## RGB ↔ CIE L*a*b* :
```python
from images_into_array.images_into_array import rgb_lab
lav = rgb_lab(images_path, image_height, image_width)
print(lav.shape)
```
## RGB ↔ HLS :
```python
from images_into_array.images_into_array import rgb_hls
hls = rgb_hls(images_path, image_height, image_width)
print(hls.shape)
```
## RGB ↔ CIE L*u*v* :
```python
from images_into_array.images_into_array import rgb_luv
luv = rgb_luv(images_path, image_height, image_width)
print(luv.shape)
```
## RGB ↔ HSV :
```python
from images_into_array.images_into_array import rgb_hsv
hsv = rgb_hsv(images_path, image_height, image_width)
print(hsv.shape)
```
## RGB ↔ YCrCb JPEG (or YCC) :
```python
from images_into_array.images_into_array import rgb_ycrcb
ycrcb = rgb_ycrcb(images_path, image_height, image_width)
print(ycrcb.shape)
```
## Required package’s:
```
• conda install -c conda-forge opencv=4.2.0
• pip install shuffle
• pip install numpy
• pip install tqdm
```
## License:
MIT Licensed
## Author:
Sujit Mandal
[GitHub](https://github.com/sujitmandal)
[PyPi](https://pypi.org/user/sujitmandal/)
[LinkedIn](https://www.linkedin.com/in/sujit-mandal-91215013a/)