Coder Social home page Coder Social logo

nerf-watch-dataset's Introduction

nerf-watch-dataset

This repo contains wall clock photos of 44 photos to generate NeRFs like instant-ngp or nerfstudio.

Download

Example

Photos

Also you can download via gdown

gdown 1PdnXoqV6AAXFpt5NGwdbNQATyXuh8Z5e

Download with python

import os
import requests
import zipfile
from pathlib import Path

# Setup path to data folder
data_path = Path("data/")

# If the image folder doesn't exist, download it and prepare it... 
if data_path.is_dir():
    print(f"{data_path} directory exists.")
else:
    print(f"Did not find {data_path} directory, creating one...")
    data_path.mkdir(parents=True, exist_ok=True)

# Download watch
with open(data_path / "watch.zip", "wb") as f:
    request = requests.get("https://github.com/cobanov/nerf-watch-dataset/raw/main/watch.zip")
    print("Downloading watch dataset...")
    f.write(request.content)

# Unzip watch.zip
with zipfile.ZipFile(data_path / "watch.zip", "r") as zip_ref:
    print("Unzipping watch dataset...") 
    zip_ref.extractall(data_path)

# Remove zip file
os.remove(data_path / "watch.zip")

nerf-watch-dataset's People

Contributors

cobanov avatar

Stargazers

 avatar  avatar  avatar  avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.