Metadata-Version: 2.1
Name: eagleview
Version: 0.1
Summary: Easy Visualisation of Plots
Home-page: https://github.com/hexronuspi/eagle/
Author: Aditya
Description-Content-Type: text/markdown
Requires-Dist: matplotlib
Requires-Dist: Pillow

`ongoing`
<p align="center">
  Colab Preview for Code <br>
  <a href="https://colab.research.google.com/drive/1ZklXjCLbrZIACctPS4EKZ4ZnuqdjonO4?usp=sharing" target="_blank">
    <img src="https://colab.research.google.com/assets/colab-badge.svg" alt="Open in Colab">
  </a>
</p>

# eagleview

A package for greatly increasing the visualisation of datasets, in an easy manner.

## Usage

1. Clone the repository:

```bash
!git clone https://github.com/hexronuspi/eagleview
```
2. Upload the folder containing your images. If they are in a zip or any other file, extract them first.

3. Navigate to the cloned repository:

```
%cd eagleview
```

4. Install the package:

```
!pip install .
```

5. Use the package in your Python code:

```python
from eagleview.figshow import ImageMatrix

image_display = ImageMatrix('/content/path_to_folder_containing_images')
image_display.display_image((2, 3), False)
```

This will display the images in a grid with 3 columns and 2 rows, without printing the left out images. If you want to print all images, you can call `image_display.display_image((2, 3))` or `image_display.display_image((2, 3), True)`.
