Skip to content

Instantly share code, notes, and snippets.

@shawngraham
shawngraham / instructions.txt
Last active May 10, 2026 21:47
installing nerfstudio on a mac
# https://github.com/nerfstudio-project/nerfstudio/issues/2438
conda create --name nerfstudio -y python=3.8
conda activate nerfstudio
python -m pip install --upgrade pip
pip uninstall torch torchvision functorch tinycudann
pip install torch==2.0.1 torchvision==0.15.2
git clone https://github.com/nerfstudio-project/nerfstudio.git
cd nerfstudio
@salman-ghauri
salman-ghauri / get_birds_eye.py
Last active October 4, 2018 12:16
Download Bing Map Bird's Eye Images. (High resolution)
"""
Use this code to download High resolution Birds Eye view which is similar to Google map's 45° imagery. There is no straight
forward way to download either of these.
"""
import urllib
import json, sys
from PIL import Image
from io import BytesIO
latlon = sys.argv[1]