Skip to content

Instantly share code, notes, and snippets.

View Qu1ck5h0t's full-sized avatar
⚔️
Locked in 🗿

Qu1ck5h0t

⚔️
Locked in 🗿
View GitHub Profile
@Qu1ck5h0t
Qu1ck5h0t / XOR_2_images_fixed.py
Last active January 30, 2025 04:05 — forked from lotusirous/XOR_2_images.py
Xor 2 images with python (FIXED)
import cv2
foo = cv2.imread("./foo.png")
bar = cv2.imread("./bar.png")
key = cv2.bitwise_xor(foo, bar)
cv2.imshow("xored data", key)
cv2.waitKey(0)