Skip to content

Instantly share code, notes, and snippets.

@gonaumov
Created September 20, 2025 09:00
Show Gist options
  • Select an option

  • Save gonaumov/fbab4e27c16aaa6f20663c1d7f04aea1 to your computer and use it in GitHub Desktop.

Select an option

Save gonaumov/fbab4e27c16aaa6f20663c1d7f04aea1 to your computer and use it in GitHub Desktop.
# import cv2 library
import cv2
# read the images
english = cv2.imread('english.png')
hungarian = cv2.imread('hungarian.png')
slovak = cv2.imread('slovak.png')
im_h = cv2.hconcat([english, hungarian, slovak])
cv2.imwrite('combined.png', im_h);
print('All done!')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment