basic_image_preprocessing


Namebasic_image_preprocessing JSON
Version 1.0.7 PyPI version JSON
download
home_pagehttps://github.com/thivagar-manickam/image_preprocessing
SummaryA complete package to perform a list of simple manual and package based image preprocessing techniques
upload_time2024-03-10 03:59:36
maintainer
docs_urlNone
authorSaivijaay
requires_python>=3.8
licenseMIT
keywords image preprocessing basic image preprocessing linear methods algorithm based preprocessing noise filtering frequency based transformation edge detection
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            <div align="center">
  <h1>📸 Basic Image Preprocessing 📸</h1>
  
  [![PyPI version](https://img.shields.io/pypi/v/basic_image_preprocessing)](https://pypi.org/project/basic-image-preprocessing/)
  [![Downloads](https://static.pepy.tech/badge/basic-image-preprocessing)](https://pepy.tech/project/basic-image-preprocessing)
  [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://github.com/thivagar-manickam/basic-image-preprocessing/blob/main/LICENSE)
  [![Supported Python Versions](https://img.shields.io/pypi/pyversions/basic-image-preprocessing.svg)](https://pypi.org/project/basic-image-preprocessing/)
</div>


Basic Image Preprocessing is a Python package that is focused on handling the various Image enhancement
and Noise removal techniques.

The package encompasses most of the basic methods and algorithms used for enhancing the quality 
of the image as well as the removal of noise from the image.


## Quick Install

You can install the package directly by using the pip command or through the conda command prompt

`pip install basic_image_preprocessing`
or
`conda install basic_image_preprocessing -c conda-forge`


## List of Techniques Available in the Package

<table>
  <thead>
    <tr>
      <td><b>Types</b></td>
      <td><b>Method</b></td>
      <td><b>Sub Types</b></td>
      <td><b>Example File</b></td>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td rowspan=3>Traditional</td>
      <td>Linear Equation</td>
      <td></td>
      <td><a href="https://github.com/thivagar-manickam/image_preprocessing/blob/main/basic_image_preprocessing/examples/Basic%20Image%20Processing%20-%20Traditional%20Methods.ipynb">Linear Equation Usage Examples</a></td>
    </tr>
    <tr>
      <td>Non Linear Methods</td>
      <td>
        <ol>
          <li>Power transformation</li>
          <li>Exponential transformation</li>
          <li>Lograthimic transformation</li>
        </ol>
      </td>
      <td><a href="https://github.com/thivagar-manickam/image_preprocessing/blob/main/basic_image_preprocessing/examples/Basic%20Image%20Processing%20-%20Traditional%20Methods.ipynb">Non Linear Method Usage Examples</a></td>
    </tr>
    <tr>
      <td>Basic Mathematical Operations</td>
      <td>
        <ol>
          <li>Addition</li>
          <li>Subtraction</li>
          <li>Multiplication</li>
          <li>Division</li>
        </ol>
      </td>
      <td><a href="https://github.com/thivagar-manickam/image_preprocessing/blob/main/basic_image_preprocessing/examples/Basic%20Image%20Processing%20-%20Traditional%20Methods.ipynb">Basic Mathematical Operation Usage Examples</a></td>
    </tr>
    <tr>
      <td rowspan=2>Conventional</td>
      <td>Histogram Equalization</td>
      <td></td>
      <td><a href="https://github.com/thivagar-manickam/image_preprocessing/blob/main/basic_image_preprocessing/examples/Basic%20Image%20Processing%20-%20Conventional%20Methods.ipynb">Histogram Equalization Usage Examples</a></td>
    </tr>
    <tr>
      <td>CLAHE</td>
      <td></td>
      <td><a href="https://github.com/thivagar-manickam/image_preprocessing/blob/main/basic_image_preprocessing/examples/Basic%20Image%20Processing%20-%20Conventional%20Methods.ipynb">CLAHE Usage Examples</a></td>
    </tr>
    <tr>
      <td rowspan=3>Edge Detection</td>
      <td>Laplacian</td>
      <td></td>
      <td><a href="https://github.com/thivagar-manickam/image_preprocessing/blob/main/basic_image_preprocessing/examples/Basic%20Image%20Processing%20-%20Edge%20Detection.ipynb">Laplacian Usage Examples</a></td>
    </tr>
    <tr>
      <td>Canny Edge Detection</td>
      <td></td>
      <td><a href="https://github.com/thivagar-manickam/image_preprocessing/blob/main/basic_image_preprocessing/examples/Basic%20Image%20Processing%20-%20Edge%20Detection.ipynb">Canny Edge Detection Usage Examples</a></td>
    </tr>
    <tr>
      <td>Edge Filtering Techniques</td>
      <td>
        <ol>
          <li>Sharpenning</li>
          <li>Custom Edge Detection</li>
        </ol>
      </td>
      <td><a href="https://github.com/thivagar-manickam/image_preprocessing/blob/main/basic_image_preprocessing/examples/Basic%20Image%20Processing%20-%20Edge%20Detection.ipynb">Edge Filtering technique Usage Examples</a></td>
    </tr>
    <tr>
      <td rowspan=1>Frequency Noise Filtering</td>
      <td>Fourier Transform</td>
      <td></td>
      <td><a href="https://github.com/thivagar-manickam/image_preprocessing/blob/main/basic_image_preprocessing/examples/Basic%20Image%20Processing%20-%20Frequency%20Noise%20Filtering.ipynb">Fourier Transform Usage Examples</a></td>
    </tr>
    <tr>
      <td rowspan=3>Spatial Noise Filtering</td>
      <td>Bilateral Filter</td>
      <td></td>
      <td><a href="https://github.com/thivagar-manickam/image_preprocessing/blob/main/basic_image_preprocessing/examples/Basic%20Image%20Processing%20-%20Spatial%20Noise%20Filtering.ipynb">Bilateral Filter Usage Examples</a></td>
    </tr>
    <tr>
      <td>Wiener Filter</td>
      <td></td>
      <td><a href="https://github.com/thivagar-manickam/image_preprocessing/blob/main/basic_image_preprocessing/examples/Basic%20Image%20Processing%20-%20Spatial%20Noise%20Filtering.ipynb">Wiener Filter Usage Examples</a></td>
    </tr>
    <tr>
      <td>Basic Noise Filtering</td>
      <td>
        <ol>
          <li>Mean Filtering</li>
          <li>Median Filtering</li>
          <li>Gaussian Filtering</li>
        </ol>
      </td>
      <td><a href="https://github.com/thivagar-manickam/image_preprocessing/blob/main/basic_image_preprocessing/examples/Basic%20Image%20Processing%20-%20Spatial%20Noise%20Filtering.ipynb">Basic Noise Filtering Usage Examples</a></td>
    </tr>
  </tbody>
</table>


## 💁 Contributing
If you would like to contribute to this project, create a pull request with your changes and provide
a detailed description of the change being done.


## :lady_beetle: Report a bug
If you find a bug or unexpected behavior when using any of the methods, kindly raise an Issue.
Please follow the bug template [here](https://github.com/thivagar-manickam/image_preprocessing/blob/main/.github/ISSUE_TEMPLATE/bug_report.md) while raising the bug, so that it will be
easy for us to analyze and provide a fix for the issue.


## :placard: Request a new Algorithm / Functionality
If you find any method or algorithm missing from the package, please create a feature request under
the Issue section by following the feature request template found [here](https://github.com/thivagar-manickam/image_preprocessing/blob/main/.github/ISSUE_TEMPLATE/feature_request.md) We will
go through the request and do the required works to get the feature ready.

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/thivagar-manickam/image_preprocessing",
    "name": "basic_image_preprocessing",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": "",
    "keywords": "Image preprocessing,Basic Image preprocessing,Linear methods,Algorithm based preprocessing,Noise filtering,Frequency based transformation,Edge detection",
    "author": "Saivijaay",
    "author_email": "",
    "download_url": "https://files.pythonhosted.org/packages/c9/84/1c8679f407bd6275e940d540c9f77b5ac804907d792384c1132811391e18/basic_image_preprocessing-1.0.7.tar.gz",
    "platform": null,
    "description": "<div align=\"center\">\n  <h1>\ud83d\udcf8 Basic Image Preprocessing \ud83d\udcf8</h1>\n  \n  [![PyPI version](https://img.shields.io/pypi/v/basic_image_preprocessing)](https://pypi.org/project/basic-image-preprocessing/)\n  [![Downloads](https://static.pepy.tech/badge/basic-image-preprocessing)](https://pepy.tech/project/basic-image-preprocessing)\n  [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://github.com/thivagar-manickam/basic-image-preprocessing/blob/main/LICENSE)\n  [![Supported Python Versions](https://img.shields.io/pypi/pyversions/basic-image-preprocessing.svg)](https://pypi.org/project/basic-image-preprocessing/)\n</div>\n\n\nBasic Image Preprocessing is a Python package that is focused on handling the various Image enhancement\nand Noise removal techniques.\n\nThe package encompasses most of the basic methods and algorithms used for enhancing the quality \nof the image as well as the removal of noise from the image.\n\n\n## Quick Install\n\nYou can install the package directly by using the pip command or through the conda command prompt\n\n`pip install basic_image_preprocessing`\nor\n`conda install basic_image_preprocessing -c conda-forge`\n\n\n## List of Techniques Available in the Package\n\n<table>\n  <thead>\n    <tr>\n      <td><b>Types</b></td>\n      <td><b>Method</b></td>\n      <td><b>Sub Types</b></td>\n      <td><b>Example File</b></td>\n    </tr>\n  </thead>\n  <tbody>\n    <tr>\n      <td rowspan=3>Traditional</td>\n      <td>Linear Equation</td>\n      <td></td>\n      <td><a href=\"https://github.com/thivagar-manickam/image_preprocessing/blob/main/basic_image_preprocessing/examples/Basic%20Image%20Processing%20-%20Traditional%20Methods.ipynb\">Linear Equation Usage Examples</a></td>\n    </tr>\n    <tr>\n      <td>Non Linear Methods</td>\n      <td>\n        <ol>\n          <li>Power transformation</li>\n          <li>Exponential transformation</li>\n          <li>Lograthimic transformation</li>\n        </ol>\n      </td>\n      <td><a href=\"https://github.com/thivagar-manickam/image_preprocessing/blob/main/basic_image_preprocessing/examples/Basic%20Image%20Processing%20-%20Traditional%20Methods.ipynb\">Non Linear Method Usage Examples</a></td>\n    </tr>\n    <tr>\n      <td>Basic Mathematical Operations</td>\n      <td>\n        <ol>\n          <li>Addition</li>\n          <li>Subtraction</li>\n          <li>Multiplication</li>\n          <li>Division</li>\n        </ol>\n      </td>\n      <td><a href=\"https://github.com/thivagar-manickam/image_preprocessing/blob/main/basic_image_preprocessing/examples/Basic%20Image%20Processing%20-%20Traditional%20Methods.ipynb\">Basic Mathematical Operation Usage Examples</a></td>\n    </tr>\n    <tr>\n      <td rowspan=2>Conventional</td>\n      <td>Histogram Equalization</td>\n      <td></td>\n      <td><a href=\"https://github.com/thivagar-manickam/image_preprocessing/blob/main/basic_image_preprocessing/examples/Basic%20Image%20Processing%20-%20Conventional%20Methods.ipynb\">Histogram Equalization Usage Examples</a></td>\n    </tr>\n    <tr>\n      <td>CLAHE</td>\n      <td></td>\n      <td><a href=\"https://github.com/thivagar-manickam/image_preprocessing/blob/main/basic_image_preprocessing/examples/Basic%20Image%20Processing%20-%20Conventional%20Methods.ipynb\">CLAHE Usage Examples</a></td>\n    </tr>\n    <tr>\n      <td rowspan=3>Edge Detection</td>\n      <td>Laplacian</td>\n      <td></td>\n      <td><a href=\"https://github.com/thivagar-manickam/image_preprocessing/blob/main/basic_image_preprocessing/examples/Basic%20Image%20Processing%20-%20Edge%20Detection.ipynb\">Laplacian Usage Examples</a></td>\n    </tr>\n    <tr>\n      <td>Canny Edge Detection</td>\n      <td></td>\n      <td><a href=\"https://github.com/thivagar-manickam/image_preprocessing/blob/main/basic_image_preprocessing/examples/Basic%20Image%20Processing%20-%20Edge%20Detection.ipynb\">Canny Edge Detection Usage Examples</a></td>\n    </tr>\n    <tr>\n      <td>Edge Filtering Techniques</td>\n      <td>\n        <ol>\n          <li>Sharpenning</li>\n          <li>Custom Edge Detection</li>\n        </ol>\n      </td>\n      <td><a href=\"https://github.com/thivagar-manickam/image_preprocessing/blob/main/basic_image_preprocessing/examples/Basic%20Image%20Processing%20-%20Edge%20Detection.ipynb\">Edge Filtering technique Usage Examples</a></td>\n    </tr>\n    <tr>\n      <td rowspan=1>Frequency Noise Filtering</td>\n      <td>Fourier Transform</td>\n      <td></td>\n      <td><a href=\"https://github.com/thivagar-manickam/image_preprocessing/blob/main/basic_image_preprocessing/examples/Basic%20Image%20Processing%20-%20Frequency%20Noise%20Filtering.ipynb\">Fourier Transform Usage Examples</a></td>\n    </tr>\n    <tr>\n      <td rowspan=3>Spatial Noise Filtering</td>\n      <td>Bilateral Filter</td>\n      <td></td>\n      <td><a href=\"https://github.com/thivagar-manickam/image_preprocessing/blob/main/basic_image_preprocessing/examples/Basic%20Image%20Processing%20-%20Spatial%20Noise%20Filtering.ipynb\">Bilateral Filter Usage Examples</a></td>\n    </tr>\n    <tr>\n      <td>Wiener Filter</td>\n      <td></td>\n      <td><a href=\"https://github.com/thivagar-manickam/image_preprocessing/blob/main/basic_image_preprocessing/examples/Basic%20Image%20Processing%20-%20Spatial%20Noise%20Filtering.ipynb\">Wiener Filter Usage Examples</a></td>\n    </tr>\n    <tr>\n      <td>Basic Noise Filtering</td>\n      <td>\n        <ol>\n          <li>Mean Filtering</li>\n          <li>Median Filtering</li>\n          <li>Gaussian Filtering</li>\n        </ol>\n      </td>\n      <td><a href=\"https://github.com/thivagar-manickam/image_preprocessing/blob/main/basic_image_preprocessing/examples/Basic%20Image%20Processing%20-%20Spatial%20Noise%20Filtering.ipynb\">Basic Noise Filtering Usage Examples</a></td>\n    </tr>\n  </tbody>\n</table>\n\n\n## \ud83d\udc81 Contributing\nIf you would like to contribute to this project, create a pull request with your changes and provide\na detailed description of the change being done.\n\n\n## :lady_beetle: Report a bug\nIf you find a bug or unexpected behavior when using any of the methods, kindly raise an Issue.\nPlease follow the bug template [here](https://github.com/thivagar-manickam/image_preprocessing/blob/main/.github/ISSUE_TEMPLATE/bug_report.md) while raising the bug, so that it will be\neasy for us to analyze and provide a fix for the issue.\n\n\n## :placard: Request a new Algorithm / Functionality\nIf you find any method or algorithm missing from the package, please create a feature request under\nthe Issue section by following the feature request template found [here](https://github.com/thivagar-manickam/image_preprocessing/blob/main/.github/ISSUE_TEMPLATE/feature_request.md) We will\ngo through the request and do the required works to get the feature ready.\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "A complete package to perform a list of simple manual and package based image preprocessing techniques",
    "version": "1.0.7",
    "project_urls": {
        "Homepage": "https://github.com/thivagar-manickam/image_preprocessing",
        "Repository": "https://github.com/thivagar-manickam/image_preprocessing"
    },
    "split_keywords": [
        "image preprocessing",
        "basic image preprocessing",
        "linear methods",
        "algorithm based preprocessing",
        "noise filtering",
        "frequency based transformation",
        "edge detection"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6e4ff0bc4c738eda49fbcf229c0234c4ac3ee5bf125e60759077781a0de974d6",
                "md5": "5be24eec01de57664d22e4b322865aae",
                "sha256": "d8b3108601bfda57116aa84f45740f589a4f5c79bd1248fd13ecaa4ca9f5a0ad"
            },
            "downloads": -1,
            "filename": "basic_image_preprocessing-1.0.7-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "5be24eec01de57664d22e4b322865aae",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.8",
            "size": 24911,
            "upload_time": "2024-03-10T03:59:34",
            "upload_time_iso_8601": "2024-03-10T03:59:34.727837Z",
            "url": "https://files.pythonhosted.org/packages/6e/4f/f0bc4c738eda49fbcf229c0234c4ac3ee5bf125e60759077781a0de974d6/basic_image_preprocessing-1.0.7-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c9841c8679f407bd6275e940d540c9f77b5ac804907d792384c1132811391e18",
                "md5": "00c2956c804c03b00b548205eef65ffc",
                "sha256": "904eae723869ededcd557c1905dbf67d71aad203afef92013aff77bbfa4632c2"
            },
            "downloads": -1,
            "filename": "basic_image_preprocessing-1.0.7.tar.gz",
            "has_sig": false,
            "md5_digest": "00c2956c804c03b00b548205eef65ffc",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 17641,
            "upload_time": "2024-03-10T03:59:36",
            "upload_time_iso_8601": "2024-03-10T03:59:36.272637Z",
            "url": "https://files.pythonhosted.org/packages/c9/84/1c8679f407bd6275e940d540c9f77b5ac804907d792384c1132811391e18/basic_image_preprocessing-1.0.7.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-03-10 03:59:36",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "thivagar-manickam",
    "github_project": "image_preprocessing",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "requirements": [],
    "lcname": "basic_image_preprocessing"
}
        
Elapsed time: 0.34000s