Skip to content

Instantly share code, notes, and snippets.

@tylermorganwall
Last active February 20, 2019 15:01
Show Gist options
  • Save tylermorganwall/e6785b54b534b5960db0be0b3d5b9aef to your computer and use it in GitHub Desktop.
Save tylermorganwall/e6785b54b534b5960db0be0b3d5b9aef to your computer and use it in GitHub Desktop.
Turn a screenshot into a 3D animation with depth of field
library(rayshader)
screenpng = png::readPNG("screenshot.png")
elmat = matrix(0,nrow = nrow(screenpng),ncol=ncol(screenpng))
plot_3d(screenpng,t(elmat),soliddepth = -100,windowsize=c(1000,1000),
background = "lightblue",shadowdepth = -200,
shadowcolor = "#185054",shadowwidth = 100)
phivec = 50 + 40 * 1/(1 + exp(seq(-2, 10, length.out = 360)*2))
thetavec = -44 + 45 * 1/(1 + exp(seq(-2, 10, length.out = 360)*2))
zoomvec = 0.6 + 0.25 * 1/(1 + exp(seq(-2, 10, length.out = 360)*2))
focusvec = 0.55 + -0.25 * 1/(1 + exp(seq(-4, 8, length.out = 360)/2))
for(i in 1:360) {
render_camera(phi=phivec[i],theta=thetavec[i],zoom=zoomvec[i],fov=0)
render_depth(focus = focusvec[i], focallength = 100,filename = glue::glue("screenshot{i}"))
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment