Add missing stuff

This commit is contained in:
Marcin Kostrzewski 2023-01-29 21:23:11 +01:00
parent 5c087fdcf2
commit 8e4c805163
2 changed files with 7 additions and 7 deletions

View File

@ -1,11 +1,10 @@
# Allows imports from the style transfer submodule
import sys import sys
sys.path.append('DCT-Net')
import cv2 import cv2
import os
import numpy as np import numpy as np
# Allows imports from the style transfer submodule
sys.path.append('DCT-Net')
from source.cartoonize import Cartoonizer from source.cartoonize import Cartoonizer
@ -29,7 +28,7 @@ def compare_with_anime_characters(data: np.ndarray) -> int:
def transfer_to_anime(img: np.ndarray): def transfer_to_anime(img: np.ndarray):
algo = Cartoonizer(dataroot='damo/cv_unet_person-image-cartoon_compound-models') algo = Cartoonizer(dataroot='DCT-Net/damo/cv_unet_person-image-cartoon_compound-models')
return algo.cartoonize(img) return algo.cartoonize(img)

View File

@ -6,3 +6,4 @@ requests==2.28.2
beautifulsoup4==4.11.1 beautifulsoup4==4.11.1
lxml==4.9.2 lxml==4.9.2
opencv-python==4.7.0.68 opencv-python==4.7.0.68
torch==1.13.1