An open API service indexing awesome lists of open source software.

https://github.com/hansalemaos/cv2_collage

Create a collage from images with OpenCV
https://github.com/hansalemaos/cv2_collage

collage numpy opencv python

Last synced: about 1 month ago
JSON representation

Create a collage from images with OpenCV

Awesome Lists containing this project

README

          

Create a collage from images with OpenCV

```python
$ pip install cv2-collage
from cv2_collage import create_collage

lst = [
"https://raw.githubusercontent.com/hansalemaos/screenshots/main/2022-12-27%2003_40_27-.png",
"https://raw.githubusercontent.com/hansalemaos/screenshots/main/2022-12-27%2003_49_27-.png",
"https://raw.githubusercontent.com/hansalemaos/screenshots/main/2022-12-27%2004_01_57-.png",
"https://raw.githubusercontent.com/hansalemaos/screenshots/main/2022-12-27%2004_02_09-.png",
"https://raw.githubusercontent.com/hansalemaos/screenshots/main/colorfind1.png",
"https://raw.githubusercontent.com/hansalemaos/screenshots/main/colorfind2.png",
"https://raw.githubusercontent.com/hansalemaos/screenshots/main/colorfind3.png",
"https://raw.githubusercontent.com/hansalemaos/screenshots/main/colorfind4.png",
"https://raw.githubusercontent.com/hansalemaos/screenshots/main/zoompics_0000006.png",
"https://raw.githubusercontent.com/hansalemaos/screenshots/main/zoompics_0000007.png",
"https://raw.githubusercontent.com/hansalemaos/screenshots/main/zoompics_0000008.png",
]

from numpy_choices import get_random_items_from_list

coldone = create_collage(
lst=get_random_items_from_list(lst, 16),
width=1000,
background=(0, 0, 0),
save_path=r"F:\cv2mergepics\m\tetete.png",
)

```