Created
September 20, 2025 09:00
-
-
Save gonaumov/fbab4e27c16aaa6f20663c1d7f04aea1 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # 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