python - Stitch images together from html -
this website has big image combrised of 132 images, want find way stitch them single image. know python if has clue start.
http://www.mapytatr.net/produkty/mapy_tat/wysokie/slices/wys_ii.htm
thanks! matt
forget python
- utilize imagemagic
(http://www.imagemagick.org/)
+append
create row
convert tpn_1.jpg tpn_2.jpg tpn_3.jpg +append row_1.jpg
-append
create column
convert row_1.jpg row_2.jpg row_3.jpg -append final.jpg
you can seek montage
(from imagemagic
too) in 1 command
montage -mode concatenate -tile 3x3 tpn_* final.jpg
btw: on linux can download images using wget
, for
in bash
for in $(seq 132); echo "http://www.mapytatr.net/produkty/mapy_tat/wysokie/slices/tpn_$i.jpg"; done | wget -i -
kochane tatry :)
python image image-processing image-stitching
No comments:
Post a Comment