Skip to content

Instantly share code, notes, and snippets.

View pathtrk's full-sized avatar

Ryosuke Goto pathtrk

View GitHub Profile
@pathtrk
pathtrk / flying_view_google_maps_tile.html
Created June 5, 2023 02:57
Flying view sample for Google Maps Tile API
<!DOCTYPE html>
<head>
<meta charset="utf-8" />
<title>Flying View</title>
<script src="https://ajax.googleapis.com/ajax/libs/cesiumjs/1.105/Build/Cesium/Cesium.js"></script>
<link href="https://ajax.googleapis.com/ajax/libs/cesiumjs/1.105/Build/Cesium/Widgets/widgets.css" rel="stylesheet">
<style>
body,
html,
@pathtrk
pathtrk / colmap_to_openmvs_cuda.ps1
Last active November 29, 2022 06:54
Run colmap and openMVS on PowerShell
param(
[Parameter(Mandatory = $true)][String]$data_dir,
[String]$project_dir
)
if (Get-Item -Path $data_dir\images -ErrorAction Ignore) {
# The data folder must contain a folder "images" with all the images.
$DATA_ROOT = $data_dir.TrimEnd('\')
}
else {