sketchify / test.py
tapas0A's picture
Upload with huggingface_hub
1daae06
raw
history blame contribute delete
169 Bytes
import app
def test_sketch_image():
img = cv2.imread('examples/1.jpg')
output = app.sketch_image(img)
assert output.shape == img.shape
test_sketch_image()