forked from prehistoric-systems/comixify
7 lines
147 B
Python
7 lines
147 B
Python
from PIL import Image
|
|
import cv2
|
|
|
|
class LayoutGenerator():
|
|
@staticmethod
|
|
def get_layout(frames):
|
|
return cv2.imread('tmp/test.jpg')
|