Skip to content

Instantly share code, notes, and snippets.

View riaqn's full-sized avatar

Zesen Qian riaqn

View GitHub Profile
@yohhoy
yohhoy / yuvrgb.md
Last active May 23, 2024 08:11
RGB <=> YCbCr(YPbPr) color space conversion
Y  = a * R + b * G + c * B
Cb = (B - Y) / d
Cr = (R - Y) / e
BT.601 BT.709 BT.2020
a 0.299 0.2126 0.2627
b 0.587 0.7152 0.6780
@victor-shepardson
victor-shepardson / pytorch-glumpy.md
Last active September 10, 2022 16:09
using pycuda and glumpy to draw pytorch GPU tensors to the screen without copying to host memory