A package for applying Gaussian filter to images
Project description
gaussFilter
gaussFilter is a Python package that provides a function for applying a Gaussian filter to images using OpenCV.
Installation
You can install gaussFilter
using pip:
pip install gaussFilter
Usage
import cv2
from src.gaussFilter import apply_gaussian_filter
# Load an image
image = cv2.imread('path/to/your/image.jpg')
# Apply the Gaussian filter with desired sigma and kernel size
filtered_image = apply_gaussian_filter(image, sigma=1.5, kernel_size=5)
# Display the original and filtered images
cv2.imshow('Original Image', image)
cv2.imshow('Filtered Image', filtered_image)
cv2.waitKey(0)
cv2.destroyAllWindows()
##Contributing
Contributions are welcome! If you find any issues or have suggestions for improvements, please open an issue or submit a pull request on the GitHub repository.
License
This package is distributed under the MIT License. See the LICENSE file for more information.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
gaussFilter-1.0.0.tar.gz
(2.4 kB
view details)
Built Distribution
File details
Details for the file gaussFilter-1.0.0.tar.gz
.
File metadata
- Download URL: gaussFilter-1.0.0.tar.gz
- Upload date:
- Size: 2.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c8aaf6e3d56fb90950226ac22ce6c2e6699b7c973c827bb290ce7ccd216d9379 |
|
MD5 | 04e89d3315ad8cd4558ff976319285c9 |
|
BLAKE2b-256 | 3c714aae702219d1896191445a3369e42fbb130a3a8ba000b5cd3a68906e7d98 |
File details
Details for the file gaussFilter-1.0.0-py3-none-any.whl
.
File metadata
- Download URL: gaussFilter-1.0.0-py3-none-any.whl
- Upload date:
- Size: 2.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f6c18b0f9deded4394590fcf8bae2d318c64d4d84850883a97b64d821a9d0ca0 |
|
MD5 | 2b3bdd8525407aed298e26b116c90e2b |
|
BLAKE2b-256 | 700bb8bfcf4ac0319c7b9c96ccd4ae3a82c3680793e1e70c3ee6c0f1dc0c9a3f |