Skip to content

Instantly share code, notes, and snippets.

@YustasDev
YustasDev / cc.py
Created September 11, 2023 08:56 — forked from shunsukeaihara/cc.py
some of color correction algorithm in python
# -*- coding: utf-8 -*-
import numpy as np
import Image
import sys
def from_pil(pimg):
pimg = pimg.convert(mode='RGB')
nimg = np.asarray(pimg)
nimg.flags.writeable = True
return nimg