SPLICE-ISMAGE عبارة عن حزمة بيثون يمكنك استخدامها من سطر الأوامر لتقسيم صورة إلى بلاط.
pip install split-image
من سطر الأوامر:
split-image [-h] [-s] image_path rows cols
كاستيراد وحدة عادية:
from split_image import split_image
split_image ( image_path , rows , cols , should_square , should_cleanup , [ output_dir ])
# e.g. split_image("bridge.jpg", 2, 2, True, False)
split-image cat.png 2 2
هذا يقسم صورة cat.png
في 4 بلاط ( 2
صف 2
).
split-image bridge.png 3 4 -s
هذا يقسم صورة bridge.png
في 12 بلاط ( 3
صفوف و 4
أعمدة). تقوم الوسيطات -square
بتغيير حجم الصورة إلى مربع قبل تقسيمها. يتم تحديد لون الخلفية المستخدم لملء المربع من الصورة تلقائيًا.
split-image cat.jpg 2 2 -r
سيحاول دمج بلاط الصور المسمى على شكل صورة واحدة. لذا ، إذا كان لديك هذه الصور في الدليل الحالي:
cat_0.jpg
cat_1.jpg
cat_2.jpg
cat_3.jpg
سيتم دمجها وفقًا لاسم ملفها:
split-image image_dir 4 2
سيتم تقسيم جميع الصور الموجودة في مجلد image_dir
.
split-image test.jpg 4 2 --cleanup
سوف يحذف الصورة الأصلية بعد العملية.
split-image test.jpg 4 2 --load-large-images
عند العمل مع صور كبيرة (أكثر من 178،956،970 بكسل) ، قد تحصل على خطأ. تمرير هذا العلم لتجاوز هذا.
split-image test.jpg 2 2 --output-dir <dir-name>
قم بتعيين دليل الإخراج للبلاط الصور (على سبيل المثال "Outp/Images"). الإعدادات الافتراضية إلى دليل العمل الحالي.
split-image test.jpg 3 4 --quiet
سوف يقمع جميع رسائل السجل (باستثناء الأخطاء والتحذيرات) عند التشغيل.
positional arguments:
image_path The path to the image or directory with images to split.
rows How many rows to split the image into (horizontal split).
cols How many columns to split the image into (vertical split).
optional arguments:
-h, --help Show this help message and exit
-s, --square If the image should be resized into a square before splitting.
-r, --reverse Reverse the splitting process, i.e. merge multiple tiles of an image into one.
--cleanup After splitting or merging, delete the original image/images.
--load-large-images Pass this flag for use with really large images.
--output-dir <dir-name> Set the output directory for image tiles (e.g. 'outp/images').
--quiet Run without printing any messages.
كات الصورة من قبل مانجا فيتول على عدم الزبول
صورة جسر لانس أسبر على Unsplash