This Python tool blurs an input image and saves the blurred image to an output folder. You can control the blur level using an optional argument.
- Blurs an input image.
- Saves the blurred image to a specified output path.
- Optional blur level argument to control the intensity of the blur.
- Python 3.x
- Pillow library (
pip install pillow
)
- Clone the repository or download the
image_blur_tool.py
file. - Ensure you have Python 3.x installed.
- Install the required dependencies:
pip install pillow
- Run the tool with the following command:
python image_blur_tool.py <input_image> <output_image> --blur_level <blur_level>
<input_image>
: Path to the input image.<output_image>
: Path to save the blurred image.<blur_level>
: Optional blur level (default: 5).
python image_blur_tool.py input.jpg output.jpg --blur_level 10
This will blur input.jpg
with a blur level of 10 and save the result as output.jpg
.
This project is licensed under the MIT License.