Skip to content

Instantly share code, notes, and snippets.

<?xml version="1.0" encoding="UTF-8"?>
<kml xmlns="http://www.opengis.net/kml/2.2" xmlns:gx="http://www.google.com/kml/ext/2.2">
<Document id="13">
<Style id="16">
<LineStyle id="17">
<color>ffcc00ff</color>
<colorMode>normal</colorMode>
<width>1</width>
</LineStyle>
</Style>
@cclaan
cclaan / instant_ngp_mixed_dataparser.py
Created December 26, 2022 16:17
Mixed intrinsics dataparser for nerfstudio. NOTE: requires intrinsics to be defined on every image
# Copyright 2022 The Nerfstudio Team. All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
@cclaan
cclaan / minimal_qt_modal.py
Created May 16, 2014 17:56
Minimal example of Qt save file dialog vanishing on OSX
# Minimal Qt modal example
# start ipython --gui=qt
import sys
from PySide import QtCore, QtGui
class TestModal(QtGui.QWidget):
def __init__(self, parent=None):