en
Feedback
python_developer

python_developer

Open in Telegram

کانال اموزش پایتون @Real_developer تبلیغات پذیرفته میشود.

Show more
1 596
Subscribers
No data24 hours
-47 days
-530 days
Posts Archive
Convert Image to text import pytesseract as t from PIL import Image img = Image.open("photo.jpg") text = t.image_to_string(img) print(text)

sticker.webp0.24 KB

How to easily blur any image using PIL from PIL import Image, ImageFilter def blur_image(image_path, output_path, radius): im
How to easily blur any image using PIL from PIL import Image, ImageFilter def blur_image(image_path, output_path, radius): image = Image.open(image_path) blurred_image = image.filter(ImageFilter.GaussianBlur(radius)) blurred_image.save(output_path) blur_image('cat.jpg', 'cat_out.jpg', 3) Image.open('cat_out.jpg') 🟡 In general, the PIL library has a lot of features and excellent documentation

🖥 چگونه با استفاده از پایتون متن مخفی را در داخل یک عکس پنهان کنیم؟ هیچ چیز پیچیده ای نیست، فقط به کتابخانه Stegano نیاز دار
🖥 چگونه با استفاده از پایتون متن مخفی را در داخل یک عکس پنهان کنیم؟ هیچ چیز پیچیده ای نیست، فقط به کتابخانه Stegano نیاز دارید # pip install stegano from stegano import lsb secret = lsb.hide('image.png', 'очень секретный текст') secret.save('secret_image.png') print(lsb.reveal('secret_image.png'))

learneverythingai .pdf3.85 MB

sticker.webp0.25 KB

String Methods in Python
String Methods in Python

🖥 zarr - Python library for implementing compressed N-dimensional arrays - pip install zarr Zarr provides classes and functi
+2
🖥 zarr - Python library for implementing compressed N-dimensional arrays - pip install zarr Zarr provides classes and functions for working with N-dimensional arrays, which behave like #NumPy arrays, but the data is divided into chunks and each chunk is compressed. If anyone is familiar with HDF5, Zarr arrays provide similar functionality, but they are more convenient. Also, unlike HDF5, Zarr has better multithreading support.

Generate Barcode using Python
Generate Barcode using Python

sticker.webp0.24 KB

Python libraries for ML
Python libraries for ML

Image to pencil sketch using
Image to pencil sketch using

Useful Python string formatting types base in placeholder
Useful Python string formatting types base in placeholder

sticker.webp0.23 KB

Get PINCODE details using #Python
Get PINCODE details using #Python

Convert Video Files to a Gif in #Python
Convert Video Files to a Gif in #Python

🖥 badjpg This useful Python script allows you to hide useful information inside a JPG image using steganography techniques.
🖥 badjpg This useful Python script allows you to hide useful information inside a JPG image using steganography techniques. ▪ Github git clone https://github.com/basicW/badjpg.git

photo content

sticker.webp0.26 KB