Skip to content

MINOR UPDATE [v1.2.1.1]

Compare
Choose a tag to compare
@Trentonom0r3 Trentonom0r3 released this 10 Oct 09:56
· 189 commits to main since this release
b279546

Minor Update. Passing outputpath to ezsynth.run results in not only the final images being saved, but the inbetween images as well.

from ezsynth import Ezsynth


STYLE_PATHS = [
    "output000.jpg",
    "output099.jpg",
]

IMAGE_FOLDER = "C:/Input"
OUTPUT_FOLDER = "C:/Output"

ez = Ezsynth(styles=STYLE_PATHS, imgsequence=IMAGE_FOLDER, flow_model='sintel')

ez.set_guides().stylize(output_path=OUTPUT_FOLDER) # Saves in-between imgs AND final imgs.

# results = ez.set_guides().stylize() # returns a list of images as numpy arrays