VisionCraft


NameVisionCraft JSON
Version 0.1.27 PyPI version JSON
download
home_pageNone
SummaryComputer Vision Library to help do CV much faster, Updated Filters
upload_time2024-05-02 07:41:38
maintainerNone
docs_urlNone
authorPrem Gaikwad
requires_pythonNone
licenseNone
keywords python cnn cv
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            
<p align="center">

  <img src="https://i.ibb.co/xMjMKpC/VC-logo.png" alt="VisionCraft Logo" width="700"/>

  

</p>





# VisionCraft - A Custom Image Processing Library



VisionCraft is a Python library designed for image processing, providing a collection of functions for filtering, processing, and transformations. It offers a set of modules to address various aspects of image manipulation.



## Table of Contents



- [Directory Structure](#directory-structure)

- [Installation](#installation)

- [Usage](#usage)

- [vision/](#vision)

   - [filter.py](#filterpy)

   - [processing.py](#processingpy)

   - [transform.py](#transformpy)

   - [utils.py](#utilspy)

- [craft/](#craft)

- [Project Status and Future Development](#project-status-and-future-development)

- [Author](#author)

- [License](#license)





## Installation



Clone the repository to your local machine:



```bash

git clone https://github.com/Prem07a/VisionCraft.git

```





1. **Create a Virtual Environment:**

   ```bash

   python -m venv env

   ```

   This command creates a virtual environment named `env`.



2. **Activate the Virtual Environment (Optional, Depending on OS):**

   - **On Windows:**

     ```bash

     .\env\Scripts\activate

     ```

   - **On macOS and Linux:**

     ```bash

     source env/bin/activate

     ```

   Activating the virtual environment isolates your Python environment, ensuring that packages are installed only within this environment.



3. **Install Dependencies from requirements.txt:**

   ```bash

   pip install -r requirements.txt

   ```

   This command installs the Python packages listed in the `requirements.txt` file. These packages are necessary for your project and may include libraries, frameworks, or tools required for running the code.



After following these steps, your virtual environment should be set up, activated, and the project dependencies installed. You can then proceed with running your Python scripts or working on your VisionCraft project within this isolated environment.



## Usage



Import VisionCraft modules into your Python script or Jupyter notebook:



```python

# Example: Importing filter functions

from VisionCraft.vision.filter import boxFilter



# Example: Importing processing functions

from VisionCraft.vision.processing import imgNegative



# Example: Importing transform functions

from VisionCraft.vision.transform import grayLevelSlicing



# Example: Importing utility functions

from VisionCraft.vision.utils import imshow

```



## `vision/`



### 1. `filter.py`



**Module for Image Filtering Operations**



This module (`filter.py`) focuses on various image filtering operations. Image filtering is a fundamental technique in image processing that helps enhance or suppress specific features within an image. The module currently includes the following function:



#### Functions:



- **`boxFilter`**

  - Description: Applies a box filter to the input image, which is a simple and commonly used filter for smoothing or blurring images.

  - Parameters:

    - `img`: Input image as a NumPy array.

    - `path`: Path to an image file. Either `img` or `path` should be provided.

    - `filter_size`: Size of the filter (odd number).

    - `show`: Boolean indicating whether to display the original and filtered images.

    - `height`: Height of the displayed images (for visualization).

    - `width`: Width of the displayed images (for visualization).

    - `CONSTANT`: Padding value.

  - Returns: Filtered image as a NumPy array.



- **`weightedAvgFilter`**

  - *Description*: Applies a 3x3 weighted average filter to the input image, offering a balanced smoothing effect.

  - *Parameters*:

    - `img` (np.ndarray): Input image as a NumPy array.

    - `path` (str): Path to an image file. Either `img` or `path` should be provided.

    - `show` (bool): Boolean indicating whether to display the original and filtered images.

    - `height` (int): Height of the displayed images (for visualization).

    - `width` (int): Width of the displayed images (for visualization).

    - `CONSTANT`: Padding value.

  - *Returns*: np.ndarray - Filtered image.



- **`medianFilter`**

  - *Description*: Applies a median filter to the input image, effectively reducing noise and preserving edges.

  - *Parameters*:

    - `img` (np.ndarray): Input image as a NumPy array.

    - `path` (str): Path to an image file. Either `img` or `path` should be provided.

    - `filter_size` (int): Size of the median filter (odd number recommended).

    - `show` (bool): Boolean indicating whether to display the original and filtered images.

    - `height` (int): Height of the displayed images (for visualization).

    - `width` (int): Width of the displayed images (for visualization).

    - `CONSTANT`: Padding value.

  - *Returns*: np.ndarray - Filtered image.



- **`minMaxFilter`**

  - *Description*: Applies a minmax filter to the input image, effectively reducing noise and preserving edges.

  - *Parameters*:

    - `img` (np.ndarray): Input image as a NumPy array.

    - `path` (str): Path to an image file. Either `img` or `path` should be provided.

    - `filter_size` (int): Size of the median filter (odd number recommended).

    - `show` (bool): Boolean indicating whether to display the original and filtered images.

    - `height` (int): Height of the displayed images (for visualization).

    - `width` (int): Width of the displayed images (for visualization).

    - `CONSTANT`: Padding value.

  - *Returns*: np.ndarray - Filtered image.







### 2. `processing.py`



**Module for Image Processing Operations**



This module (`processing.py`) encompasses various image processing operations. Image processing involves manipulating an image to achieve a desired result. The module currently includes the following functions:



#### Functions:



- **`imgNegative`**

  - *Description*: Computes the negative of an input image, enhancing the visibility of details and features.

  - *Parameters*:

    - `img` (np.ndarray): Input image as a NumPy array.

    - `path` (str): Path to an image file. Either `img` or `path` should be provided.

    - `show` (bool): Boolean indicating whether to display the original and negated images.

    - `height` (int): Height of the displayed images (for visualization).

    - `width` (int): Width of the displayed images (for visualization).

  - *Returns*: Negated image as a NumPy array.



- **`imgLog`**

  - *Description*: Applies a logarithmic transformation to the input image, enhancing low-intensity details.

  - *Parameters*:

    - `img` (np.ndarray): Input image as a NumPy array.

    - `path` (str): Path to an image file. Either `img` or `path` should be provided.

    - `show` (bool): Boolean indicating whether to display the original and transformed images.

    - `height` (int): Height of the displayed images (for visualization).

    - `width` (int): Width of the displayed images (for visualization).

  - *Returns*: Transformed image as a NumPy array.



- **`powerLaw`**

  - *Description*: Applies a power-law transformation to the input image, adjusting the intensity values.

  - *Parameters*:

    - `img` (np.ndarray): Input image as a NumPy array.

    - `path` (str): Path to an image file. Either `img` or `path` should be provided.

    - `height` (int): Height of the displayed images (for visualization).

    - `width` (int): Width of the displayed images (for visualization).

    - `show` (bool): Boolean indicating whether to display the original and transformed images.

    - `gamma` (float): Gamma parameter for the power-law transformation.

  - *Returns*: Transformed image as a NumPy array.



- **`flipImg`**

  - *Description*: Flips the input image both vertically and horizontally.

  - *Parameters*:

    - `img` (np.ndarray): Input image as a NumPy array.

    - `path` (str): Path to an image file. Either `img` or `path` should be provided.

    - `show` (bool): Boolean indicating whether to display the original and flipped images.

    - `height` (int): Height of the displayed images (for visualization).

    - `width` (int): Width of the displayed images (for visualization).

  - *Returns*: Tuple[np.ndarray, np.ndarray] -> Tuple containing horizontally and vertically flipped images as NumPy arrays.





### 3. `transform.py`



**Module for Image Transformation Operations**



This module (`transform.py`) provides functions for image transformations, including gray level slicing, bit-plane slicing, contrast stretching, and histogram equalization.



#### Functions:



- **`grayLevelSlicing`**

  - *Description*: Performs gray level slicing on the input image, highlighting a specific range of gray levels.

  - *Parameters*:

    - `img` (np.ndarray): Input image as a NumPy array.

    - `path` (str): Path to an image file. Either `img` or `path` should be provided.

    - `lower` (int): Lower bound for gray level slicing.

    - `upper` (int): Upper bound for gray level slicing.

    - `bg` (bool): If True, retains the background in the sliced image.

    - `THRESHOLD` (int): Threshold value for gray level slicing.

    - `show` (bool): Boolean indicating whether to display the original and sliced images.

    - `height` (int): Height of the displayed images (for visualization).

    - `width` (int): Width of the displayed images (for visualization).

  - *Returns*: The sliced image as a NumPy array.



- **`bitPlaneSlicing`**

  - *Description*: Performs bit-plane slicing on the input image, extracting information at different bit levels.

  - *Parameters*:

    - `img` (np.ndarray): Input image as a NumPy array.

    - `path` (str): Path to an image file. Either `img` or `path` should be provided.

    - `show` (bool): If True, displays the original and bit-plane sliced images.

    - `height` (int): Height of the displayed images (for visualization).

    - `width` (int): Width of the displayed images (for visualization).

  - *Returns*: List containing bit-plane sliced images as NumPy arrays.



- **`contrastStretching`**

  - *Description*: Adjusts the contrast of the input image using stretching techniques.

  - *Parameters*:

    - `img` (np.ndarray): Input image as a NumPy array.

    - `path` (str): Path to an image file. Either `img` or `path` should be provided.

    - `s1` (int): Stretching value for the lower limit.

    - `s2` (int): Stretching value for the upper limit.

    - `r1` (int): Original lower limit.

    - `r2` (int): Original upper limit.

    - `L` (int): Maximum gray level.

    - `show` (bool): Boolean indicating whether to display the original and contrast-stretched images.

    - `height` (int): Height of the displayed images (for visualization).

    - `width` (int): Width of the displayed images (for visualization).

  - *Returns*: The contrast-stretched image as a NumPy array.



- **`histogramEquilization`**

  - *Description*: Performs histogram equalization on the input image, enhancing the overall contrast.

  - *Parameters*:

    - `img` (np.ndarray): Input image as a NumPy array.

    - `path` (str): Path to an image file. Either `img` or `path` should be provided.

    - `show` (bool): If True, displays the original and equalized images.

    - `height` (int): Height of the displayed images (for visualization).

    - `width` (int): Width of the displayed images (for visualization).

    - `eq_table` (bool): If True, returns the equalization table along with the equalized image.

  - *Returns*: The equalized image as a NumPy array. If `eq_table` is True, returns the equalization table as well.



### 4. `utils.py`



**Module for Utility Functions Related to Image Processing**



This module (`utils.py`) provides utility functions for displaying images and plotting various transformations.



#### Functions:



- **`imShow`**

  - *Description*: Display an image using Matplotlib.

  - *Parameters*:

    - `title` (str, optional): Title of the displayed image.

    - `image` (np.ndarray, optional): Image as a NumPy array.

    - `path` (str, optional): Path to the image file. If provided, 'image' parameter is ignored.

    - `subplot` (bool, optional): If True, displays the image as a subplot.

    - `row` (int, optional): Row position for the subplot.

    - `col` (int, optional): Column position for the subplot.

    - `num` (int, optional): Number of the subplot.

  - *Returns*: None

  - *Note*: If 'path' is provided but the image is not found, a message is printed, and None is returned.



- **`imRead`**

  - *Description*: Reads an image from the specified path.

  - *Parameters*:

    - `path` (str): The path to the image file.

    - `show` (bool): If True, displays the image using the `imShow` function. Default is False.

    - `BGR` (bool): If True, reads the image in BGR format. If False, reads in grayscale format. Default is False.

  - *Returns*: `img` (numpy.ndarray or None): The image read from the specified path. Returns None if the image is not found.

  - *Note*: If 'path' is provided but the image is not found, a message is printed, and None is returned.



- **`imgResize`**

  - *Description*: Resize the input image array or read an image from the specified path and resize it.

  - *Parameters*:

    - `img` (numpy.ndarray, optional): The input image array. If not provided, the function will attempt to read an image from the specified 'path'.

    - `path` (str, optional): The path to the image file. If 'img' is provided, this parameter is ignored.

    - `width` (int): The new width of the image.

    - `height` (int): The new height of the image.

  - *Returns*: `img` (numpy.ndarray or None): The resized image array. Returns None if the image is not found or cannot be read and resized.



- **`imgRotate`**

  - *Description*: Rotate the input image array or read an image from the specified path and rotate it by 90-degree increments.

  - *Parameters*:

    - `img` (numpy.ndarray, optional): The input image array. If not provided, the function will attempt to read an image from the specified 'path'.

    - `path` (str, optional): The path to the image file. If 'img' is provided, this parameter is ignored.

    - `deg90_turn` (int): The number of 90-degree turns to rotate the image.

  - *Returns*: `img` (numpy.ndarray or None): The rotated image array. Returns None if the image is not found or cannot be read and rotated.



- **`imgAdd`**

  - *Description*: Add multiple images element-wise.

  - *Parameters*:

    - `*images` (numpy.ndarray): Variable-length positional arguments representing the images to be added. Each image should be a NumPy array of the same shape.

  - *Returns*: `add_img` (numpy.ndarray): The resulting image obtained by element-wise addition of all input images.



- **`plotLogTransform`**

  - *Description*: Visualize logarithmic transformations and their inverses.

  - *Parameters*:

    - `height` (int, optional): Height of the Matplotlib figure.

    - `width` (int, optional): Width of the Matplotlib figure.

  - *Returns*: None



- **`plotPowerLaw`**

  - *Description*: Visualize power-law transformations with different gamma values.

  - *Parameters*:

    - `height` (int, optional): Height of the Matplotlib figure.

    - `width` (int, optional): Width of the Matplotlib figure.

  - *Returns*: None





##  `craft /`



**COMING SOON**



## Project Status and Future Development



- **Early Development Stage:** This version of VisionCraft is currently in its early stages of development. It is actively being developed, and changes are expected as new features and improvements are introduced.



- **Regular Updates:** Expect regular updates, new methods, and bug fixes to be consistently released to enhance the library's capabilities. We are committed to improving and expanding VisionCraft to meet the evolving needs of the image processing community.



- **Upcoming Feature: `Craft`:** The introduction of the `Craft` is anticipated shortly. This powerful feature will provide advanced capabilities for neural network construction, expanding the toolkit's functionality and opening up new possibilities for image processing tasks.



We appreciate your interest in VisionCraft and invite you to stay tuned for exciting developments!



## Author



<img src="https://i.ibb.co/GWDGXJM/Prem-Ganesh-Gaikwad-1.png" alt="Prem-Ganesh-Gaikwad-1" border="0" style="width: 30%; height: auto;">





## License



This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.




            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "VisionCraft",
    "maintainer": null,
    "docs_url": null,
    "requires_python": null,
    "maintainer_email": null,
    "keywords": "python, CNN, cv",
    "author": "Prem Gaikwad",
    "author_email": "premgaikwad7a@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/86/b3/b67c7079faef85d2df5e2b8e390829b8d32dc25b3f4b4952ac5830db7810/VisionCraft-0.1.27.tar.gz",
    "platform": null,
    "description": "\r\n<p align=\"center\">\r\n\r\n  <img src=\"https://i.ibb.co/xMjMKpC/VC-logo.png\" alt=\"VisionCraft Logo\" width=\"700\"/>\r\n\r\n  \r\n\r\n</p>\r\n\r\n\r\n\r\n\r\n\r\n# VisionCraft - A Custom Image Processing Library\r\n\r\n\r\n\r\nVisionCraft is a Python library designed for image processing, providing a collection of functions for filtering, processing, and transformations. It offers a set of modules to address various aspects of image manipulation.\r\n\r\n\r\n\r\n## Table of Contents\r\n\r\n\r\n\r\n- [Directory Structure](#directory-structure)\r\n\r\n- [Installation](#installation)\r\n\r\n- [Usage](#usage)\r\n\r\n- [vision/](#vision)\r\n\r\n   - [filter.py](#filterpy)\r\n\r\n   - [processing.py](#processingpy)\r\n\r\n   - [transform.py](#transformpy)\r\n\r\n   - [utils.py](#utilspy)\r\n\r\n- [craft/](#craft)\r\n\r\n- [Project Status and Future Development](#project-status-and-future-development)\r\n\r\n- [Author](#author)\r\n\r\n- [License](#license)\r\n\r\n\r\n\r\n\r\n\r\n## Installation\r\n\r\n\r\n\r\nClone the repository to your local machine:\r\n\r\n\r\n\r\n```bash\r\n\r\ngit clone https://github.com/Prem07a/VisionCraft.git\r\n\r\n```\r\n\r\n\r\n\r\n\r\n\r\n1. **Create a Virtual Environment:**\r\n\r\n   ```bash\r\n\r\n   python -m venv env\r\n\r\n   ```\r\n\r\n   This command creates a virtual environment named `env`.\r\n\r\n\r\n\r\n2. **Activate the Virtual Environment (Optional, Depending on OS):**\r\n\r\n   - **On Windows:**\r\n\r\n     ```bash\r\n\r\n     .\\env\\Scripts\\activate\r\n\r\n     ```\r\n\r\n   - **On macOS and Linux:**\r\n\r\n     ```bash\r\n\r\n     source env/bin/activate\r\n\r\n     ```\r\n\r\n   Activating the virtual environment isolates your Python environment, ensuring that packages are installed only within this environment.\r\n\r\n\r\n\r\n3. **Install Dependencies from requirements.txt:**\r\n\r\n   ```bash\r\n\r\n   pip install -r requirements.txt\r\n\r\n   ```\r\n\r\n   This command installs the Python packages listed in the `requirements.txt` file. These packages are necessary for your project and may include libraries, frameworks, or tools required for running the code.\r\n\r\n\r\n\r\nAfter following these steps, your virtual environment should be set up, activated, and the project dependencies installed. You can then proceed with running your Python scripts or working on your VisionCraft project within this isolated environment.\r\n\r\n\r\n\r\n## Usage\r\n\r\n\r\n\r\nImport VisionCraft modules into your Python script or Jupyter notebook:\r\n\r\n\r\n\r\n```python\r\n\r\n# Example: Importing filter functions\r\n\r\nfrom VisionCraft.vision.filter import boxFilter\r\n\r\n\r\n\r\n# Example: Importing processing functions\r\n\r\nfrom VisionCraft.vision.processing import imgNegative\r\n\r\n\r\n\r\n# Example: Importing transform functions\r\n\r\nfrom VisionCraft.vision.transform import grayLevelSlicing\r\n\r\n\r\n\r\n# Example: Importing utility functions\r\n\r\nfrom VisionCraft.vision.utils import imshow\r\n\r\n```\r\n\r\n\r\n\r\n## `vision/`\r\n\r\n\r\n\r\n### 1. `filter.py`\r\n\r\n\r\n\r\n**Module for Image Filtering Operations**\r\n\r\n\r\n\r\nThis module (`filter.py`) focuses on various image filtering operations. Image filtering is a fundamental technique in image processing that helps enhance or suppress specific features within an image. The module currently includes the following function:\r\n\r\n\r\n\r\n#### Functions:\r\n\r\n\r\n\r\n- **`boxFilter`**\r\n\r\n  - Description: Applies a box filter to the input image, which is a simple and commonly used filter for smoothing or blurring images.\r\n\r\n  - Parameters:\r\n\r\n    - `img`: Input image as a NumPy array.\r\n\r\n    - `path`: Path to an image file. Either `img` or `path` should be provided.\r\n\r\n    - `filter_size`: Size of the filter (odd number).\r\n\r\n    - `show`: Boolean indicating whether to display the original and filtered images.\r\n\r\n    - `height`: Height of the displayed images (for visualization).\r\n\r\n    - `width`: Width of the displayed images (for visualization).\r\n\r\n    - `CONSTANT`: Padding value.\r\n\r\n  - Returns: Filtered image as a NumPy array.\r\n\r\n\r\n\r\n- **`weightedAvgFilter`**\r\n\r\n  - *Description*: Applies a 3x3 weighted average filter to the input image, offering a balanced smoothing effect.\r\n\r\n  - *Parameters*:\r\n\r\n    - `img` (np.ndarray): Input image as a NumPy array.\r\n\r\n    - `path` (str): Path to an image file. Either `img` or `path` should be provided.\r\n\r\n    - `show` (bool): Boolean indicating whether to display the original and filtered images.\r\n\r\n    - `height` (int): Height of the displayed images (for visualization).\r\n\r\n    - `width` (int): Width of the displayed images (for visualization).\r\n\r\n    - `CONSTANT`: Padding value.\r\n\r\n  - *Returns*: np.ndarray - Filtered image.\r\n\r\n\r\n\r\n- **`medianFilter`**\r\n\r\n  - *Description*: Applies a median filter to the input image, effectively reducing noise and preserving edges.\r\n\r\n  - *Parameters*:\r\n\r\n    - `img` (np.ndarray): Input image as a NumPy array.\r\n\r\n    - `path` (str): Path to an image file. Either `img` or `path` should be provided.\r\n\r\n    - `filter_size` (int): Size of the median filter (odd number recommended).\r\n\r\n    - `show` (bool): Boolean indicating whether to display the original and filtered images.\r\n\r\n    - `height` (int): Height of the displayed images (for visualization).\r\n\r\n    - `width` (int): Width of the displayed images (for visualization).\r\n\r\n    - `CONSTANT`: Padding value.\r\n\r\n  - *Returns*: np.ndarray - Filtered image.\r\n\r\n\r\n\r\n- **`minMaxFilter`**\r\n\r\n  - *Description*: Applies a minmax filter to the input image, effectively reducing noise and preserving edges.\r\n\r\n  - *Parameters*:\r\n\r\n    - `img` (np.ndarray): Input image as a NumPy array.\r\n\r\n    - `path` (str): Path to an image file. Either `img` or `path` should be provided.\r\n\r\n    - `filter_size` (int): Size of the median filter (odd number recommended).\r\n\r\n    - `show` (bool): Boolean indicating whether to display the original and filtered images.\r\n\r\n    - `height` (int): Height of the displayed images (for visualization).\r\n\r\n    - `width` (int): Width of the displayed images (for visualization).\r\n\r\n    - `CONSTANT`: Padding value.\r\n\r\n  - *Returns*: np.ndarray - Filtered image.\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n### 2. `processing.py`\r\n\r\n\r\n\r\n**Module for Image Processing Operations**\r\n\r\n\r\n\r\nThis module (`processing.py`) encompasses various image processing operations. Image processing involves manipulating an image to achieve a desired result. The module currently includes the following functions:\r\n\r\n\r\n\r\n#### Functions:\r\n\r\n\r\n\r\n- **`imgNegative`**\r\n\r\n  - *Description*: Computes the negative of an input image, enhancing the visibility of details and features.\r\n\r\n  - *Parameters*:\r\n\r\n    - `img` (np.ndarray): Input image as a NumPy array.\r\n\r\n    - `path` (str): Path to an image file. Either `img` or `path` should be provided.\r\n\r\n    - `show` (bool): Boolean indicating whether to display the original and negated images.\r\n\r\n    - `height` (int): Height of the displayed images (for visualization).\r\n\r\n    - `width` (int): Width of the displayed images (for visualization).\r\n\r\n  - *Returns*: Negated image as a NumPy array.\r\n\r\n\r\n\r\n- **`imgLog`**\r\n\r\n  - *Description*: Applies a logarithmic transformation to the input image, enhancing low-intensity details.\r\n\r\n  - *Parameters*:\r\n\r\n    - `img` (np.ndarray): Input image as a NumPy array.\r\n\r\n    - `path` (str): Path to an image file. Either `img` or `path` should be provided.\r\n\r\n    - `show` (bool): Boolean indicating whether to display the original and transformed images.\r\n\r\n    - `height` (int): Height of the displayed images (for visualization).\r\n\r\n    - `width` (int): Width of the displayed images (for visualization).\r\n\r\n  - *Returns*: Transformed image as a NumPy array.\r\n\r\n\r\n\r\n- **`powerLaw`**\r\n\r\n  - *Description*: Applies a power-law transformation to the input image, adjusting the intensity values.\r\n\r\n  - *Parameters*:\r\n\r\n    - `img` (np.ndarray): Input image as a NumPy array.\r\n\r\n    - `path` (str): Path to an image file. Either `img` or `path` should be provided.\r\n\r\n    - `height` (int): Height of the displayed images (for visualization).\r\n\r\n    - `width` (int): Width of the displayed images (for visualization).\r\n\r\n    - `show` (bool): Boolean indicating whether to display the original and transformed images.\r\n\r\n    - `gamma` (float): Gamma parameter for the power-law transformation.\r\n\r\n  - *Returns*: Transformed image as a NumPy array.\r\n\r\n\r\n\r\n- **`flipImg`**\r\n\r\n  - *Description*: Flips the input image both vertically and horizontally.\r\n\r\n  - *Parameters*:\r\n\r\n    - `img` (np.ndarray): Input image as a NumPy array.\r\n\r\n    - `path` (str): Path to an image file. Either `img` or `path` should be provided.\r\n\r\n    - `show` (bool): Boolean indicating whether to display the original and flipped images.\r\n\r\n    - `height` (int): Height of the displayed images (for visualization).\r\n\r\n    - `width` (int): Width of the displayed images (for visualization).\r\n\r\n  - *Returns*: Tuple[np.ndarray, np.ndarray] -> Tuple containing horizontally and vertically flipped images as NumPy arrays.\r\n\r\n\r\n\r\n\r\n\r\n### 3. `transform.py`\r\n\r\n\r\n\r\n**Module for Image Transformation Operations**\r\n\r\n\r\n\r\nThis module (`transform.py`) provides functions for image transformations, including gray level slicing, bit-plane slicing, contrast stretching, and histogram equalization.\r\n\r\n\r\n\r\n#### Functions:\r\n\r\n\r\n\r\n- **`grayLevelSlicing`**\r\n\r\n  - *Description*: Performs gray level slicing on the input image, highlighting a specific range of gray levels.\r\n\r\n  - *Parameters*:\r\n\r\n    - `img` (np.ndarray): Input image as a NumPy array.\r\n\r\n    - `path` (str): Path to an image file. Either `img` or `path` should be provided.\r\n\r\n    - `lower` (int): Lower bound for gray level slicing.\r\n\r\n    - `upper` (int): Upper bound for gray level slicing.\r\n\r\n    - `bg` (bool): If True, retains the background in the sliced image.\r\n\r\n    - `THRESHOLD` (int): Threshold value for gray level slicing.\r\n\r\n    - `show` (bool): Boolean indicating whether to display the original and sliced images.\r\n\r\n    - `height` (int): Height of the displayed images (for visualization).\r\n\r\n    - `width` (int): Width of the displayed images (for visualization).\r\n\r\n  - *Returns*: The sliced image as a NumPy array.\r\n\r\n\r\n\r\n- **`bitPlaneSlicing`**\r\n\r\n  - *Description*: Performs bit-plane slicing on the input image, extracting information at different bit levels.\r\n\r\n  - *Parameters*:\r\n\r\n    - `img` (np.ndarray): Input image as a NumPy array.\r\n\r\n    - `path` (str): Path to an image file. Either `img` or `path` should be provided.\r\n\r\n    - `show` (bool): If True, displays the original and bit-plane sliced images.\r\n\r\n    - `height` (int): Height of the displayed images (for visualization).\r\n\r\n    - `width` (int): Width of the displayed images (for visualization).\r\n\r\n  - *Returns*: List containing bit-plane sliced images as NumPy arrays.\r\n\r\n\r\n\r\n- **`contrastStretching`**\r\n\r\n  - *Description*: Adjusts the contrast of the input image using stretching techniques.\r\n\r\n  - *Parameters*:\r\n\r\n    - `img` (np.ndarray): Input image as a NumPy array.\r\n\r\n    - `path` (str): Path to an image file. Either `img` or `path` should be provided.\r\n\r\n    - `s1` (int): Stretching value for the lower limit.\r\n\r\n    - `s2` (int): Stretching value for the upper limit.\r\n\r\n    - `r1` (int): Original lower limit.\r\n\r\n    - `r2` (int): Original upper limit.\r\n\r\n    - `L` (int): Maximum gray level.\r\n\r\n    - `show` (bool): Boolean indicating whether to display the original and contrast-stretched images.\r\n\r\n    - `height` (int): Height of the displayed images (for visualization).\r\n\r\n    - `width` (int): Width of the displayed images (for visualization).\r\n\r\n  - *Returns*: The contrast-stretched image as a NumPy array.\r\n\r\n\r\n\r\n- **`histogramEquilization`**\r\n\r\n  - *Description*: Performs histogram equalization on the input image, enhancing the overall contrast.\r\n\r\n  - *Parameters*:\r\n\r\n    - `img` (np.ndarray): Input image as a NumPy array.\r\n\r\n    - `path` (str): Path to an image file. Either `img` or `path` should be provided.\r\n\r\n    - `show` (bool): If True, displays the original and equalized images.\r\n\r\n    - `height` (int): Height of the displayed images (for visualization).\r\n\r\n    - `width` (int): Width of the displayed images (for visualization).\r\n\r\n    - `eq_table` (bool): If True, returns the equalization table along with the equalized image.\r\n\r\n  - *Returns*: The equalized image as a NumPy array. If `eq_table` is True, returns the equalization table as well.\r\n\r\n\r\n\r\n### 4. `utils.py`\r\n\r\n\r\n\r\n**Module for Utility Functions Related to Image Processing**\r\n\r\n\r\n\r\nThis module (`utils.py`) provides utility functions for displaying images and plotting various transformations.\r\n\r\n\r\n\r\n#### Functions:\r\n\r\n\r\n\r\n- **`imShow`**\r\n\r\n  - *Description*: Display an image using Matplotlib.\r\n\r\n  - *Parameters*:\r\n\r\n    - `title` (str, optional): Title of the displayed image.\r\n\r\n    - `image` (np.ndarray, optional): Image as a NumPy array.\r\n\r\n    - `path` (str, optional): Path to the image file. If provided, 'image' parameter is ignored.\r\n\r\n    - `subplot` (bool, optional): If True, displays the image as a subplot.\r\n\r\n    - `row` (int, optional): Row position for the subplot.\r\n\r\n    - `col` (int, optional): Column position for the subplot.\r\n\r\n    - `num` (int, optional): Number of the subplot.\r\n\r\n  - *Returns*: None\r\n\r\n  - *Note*: If 'path' is provided but the image is not found, a message is printed, and None is returned.\r\n\r\n\r\n\r\n- **`imRead`**\r\n\r\n  - *Description*: Reads an image from the specified path.\r\n\r\n  - *Parameters*:\r\n\r\n    - `path` (str): The path to the image file.\r\n\r\n    - `show` (bool): If True, displays the image using the `imShow` function. Default is False.\r\n\r\n    - `BGR` (bool): If True, reads the image in BGR format. If False, reads in grayscale format. Default is False.\r\n\r\n  - *Returns*: `img` (numpy.ndarray or None): The image read from the specified path. Returns None if the image is not found.\r\n\r\n  - *Note*: If 'path' is provided but the image is not found, a message is printed, and None is returned.\r\n\r\n\r\n\r\n- **`imgResize`**\r\n\r\n  - *Description*: Resize the input image array or read an image from the specified path and resize it.\r\n\r\n  - *Parameters*:\r\n\r\n    - `img` (numpy.ndarray, optional): The input image array. If not provided, the function will attempt to read an image from the specified 'path'.\r\n\r\n    - `path` (str, optional): The path to the image file. If 'img' is provided, this parameter is ignored.\r\n\r\n    - `width` (int): The new width of the image.\r\n\r\n    - `height` (int): The new height of the image.\r\n\r\n  - *Returns*: `img` (numpy.ndarray or None): The resized image array. Returns None if the image is not found or cannot be read and resized.\r\n\r\n\r\n\r\n- **`imgRotate`**\r\n\r\n  - *Description*: Rotate the input image array or read an image from the specified path and rotate it by 90-degree increments.\r\n\r\n  - *Parameters*:\r\n\r\n    - `img` (numpy.ndarray, optional): The input image array. If not provided, the function will attempt to read an image from the specified 'path'.\r\n\r\n    - `path` (str, optional): The path to the image file. If 'img' is provided, this parameter is ignored.\r\n\r\n    - `deg90_turn` (int): The number of 90-degree turns to rotate the image.\r\n\r\n  - *Returns*: `img` (numpy.ndarray or None): The rotated image array. Returns None if the image is not found or cannot be read and rotated.\r\n\r\n\r\n\r\n- **`imgAdd`**\r\n\r\n  - *Description*: Add multiple images element-wise.\r\n\r\n  - *Parameters*:\r\n\r\n    - `*images` (numpy.ndarray): Variable-length positional arguments representing the images to be added. Each image should be a NumPy array of the same shape.\r\n\r\n  - *Returns*: `add_img` (numpy.ndarray): The resulting image obtained by element-wise addition of all input images.\r\n\r\n\r\n\r\n- **`plotLogTransform`**\r\n\r\n  - *Description*: Visualize logarithmic transformations and their inverses.\r\n\r\n  - *Parameters*:\r\n\r\n    - `height` (int, optional): Height of the Matplotlib figure.\r\n\r\n    - `width` (int, optional): Width of the Matplotlib figure.\r\n\r\n  - *Returns*: None\r\n\r\n\r\n\r\n- **`plotPowerLaw`**\r\n\r\n  - *Description*: Visualize power-law transformations with different gamma values.\r\n\r\n  - *Parameters*:\r\n\r\n    - `height` (int, optional): Height of the Matplotlib figure.\r\n\r\n    - `width` (int, optional): Width of the Matplotlib figure.\r\n\r\n  - *Returns*: None\r\n\r\n\r\n\r\n\r\n\r\n##  `craft /`\r\n\r\n\r\n\r\n**COMING SOON**\r\n\r\n\r\n\r\n## Project Status and Future Development\r\n\r\n\r\n\r\n- **Early Development Stage:** This version of VisionCraft is currently in its early stages of development. It is actively being developed, and changes are expected as new features and improvements are introduced.\r\n\r\n\r\n\r\n- **Regular Updates:** Expect regular updates, new methods, and bug fixes to be consistently released to enhance the library's capabilities. We are committed to improving and expanding VisionCraft to meet the evolving needs of the image processing community.\r\n\r\n\r\n\r\n- **Upcoming Feature: `Craft`:** The introduction of the `Craft` is anticipated shortly. This powerful feature will provide advanced capabilities for neural network construction, expanding the toolkit's functionality and opening up new possibilities for image processing tasks.\r\n\r\n\r\n\r\nWe appreciate your interest in VisionCraft and invite you to stay tuned for exciting developments!\r\n\r\n\r\n\r\n## Author\r\n\r\n\r\n\r\n<img src=\"https://i.ibb.co/GWDGXJM/Prem-Ganesh-Gaikwad-1.png\" alt=\"Prem-Ganesh-Gaikwad-1\" border=\"0\" style=\"width: 30%; height: auto;\">\r\n\r\n\r\n\r\n\r\n\r\n## License\r\n\r\n\r\n\r\nThis project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.\r\n\r\n\r\n\r\n",
    "bugtrack_url": null,
    "license": null,
    "summary": "Computer Vision Library to help do CV much faster, Updated Filters",
    "version": "0.1.27",
    "project_urls": null,
    "split_keywords": [
        "python",
        " cnn",
        " cv"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6d52378e0e8ebfe47ab30f33dce3ce4cc6d852a2c15bb746b3a88ee6b81ad2a6",
                "md5": "0c38244cb7d2bdb0deb07a8954c4eef9",
                "sha256": "73462b8189ce5808635498594b9c6b0071643222bd2f80a4a57398978435aa45"
            },
            "downloads": -1,
            "filename": "VisionCraft-0.1.27-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "0c38244cb7d2bdb0deb07a8954c4eef9",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": null,
            "size": 25531,
            "upload_time": "2024-05-02T07:41:29",
            "upload_time_iso_8601": "2024-05-02T07:41:29.667305Z",
            "url": "https://files.pythonhosted.org/packages/6d/52/378e0e8ebfe47ab30f33dce3ce4cc6d852a2c15bb746b3a88ee6b81ad2a6/VisionCraft-0.1.27-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "86b3b67c7079faef85d2df5e2b8e390829b8d32dc25b3f4b4952ac5830db7810",
                "md5": "9e3415f872079938285d94c420147e88",
                "sha256": "13acc9ac9083bc2a9c4023445187d874bb256b7392a434fd2be82e0fc46227bf"
            },
            "downloads": -1,
            "filename": "VisionCraft-0.1.27.tar.gz",
            "has_sig": false,
            "md5_digest": "9e3415f872079938285d94c420147e88",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 7872010,
            "upload_time": "2024-05-02T07:41:38",
            "upload_time_iso_8601": "2024-05-02T07:41:38.351491Z",
            "url": "https://files.pythonhosted.org/packages/86/b3/b67c7079faef85d2df5e2b8e390829b8d32dc25b3f4b4952ac5830db7810/VisionCraft-0.1.27.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-05-02 07:41:38",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "lcname": "visioncraft"
}
        
Elapsed time: 0.27278s