Skip to content

Latest commit

 

History

History
28 lines (25 loc) · 1.38 KB

README.md

File metadata and controls

28 lines (25 loc) · 1.38 KB

Laplacian Pyramid Blending

This is a Python implementation of Laplacian pyramid blending.

Required Libraries

from skimage.io import imread
from skimage.transform import rotate
from numba import jit
import numpy as np
import matplotlib.pyplot as plt

Results

blending an apple with an orange

apple orange

blending a cheetah's face onto a cat's head

cheetah cat

The visual artifacts around the whiskers are pretty obvious, because the colors and frequencies around the boundary are so much different. will probably get better results using human faces.