Skip to content

Instantly share code, notes, and snippets.

@NegativeMind
NegativeMind / web_turntable_viewer_widget_embed_code.html
Last active September 20, 2025 04:19
Web Turntable Viewer Widgetの埋め込みコード
<script src="https://player.vimeo.com/api/player.js"></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/NegativeMind/web-turntable-viewer-widget@v0.1.4-beta/dist/turntable-viewer.css">
<div class="turntable-wrapper">
<div vimeo-video-id="1118303126" clockwise-rotation>
<iframe width="480" height="270" frameborder="0" allowfullscreen></iframe>
<div class="drag-overlay"></div>
<div class="loading-overlay">
<div class="loading-content">
<div class="loading-text">Loading turntable...</div>
<div class="progress-container">
[project]
name = "dust3r"
version = "0.1.0"
description = "for dust3r"
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"torch==2.1.1",
"torchvision==0.16.1",
"torchaudio==2.1.1",
@NegativeMind
NegativeMind / triangulatepoints.cpp
Last active April 29, 2024 08:12
OpenCVの三角測量関数cv::triangulatepointsの使い方
#include <vector>
#include <iostream>
#include <opencv2/opencv.hpp>
int main(int argc, char** argv) {
// カメラのキャリブレーションデータ読み込み
cv::Mat cameraMatrix, distCoeffs;
cv::FileStorage fs("cameraParam.xml", cv::FileStorage::READ);
if (fs.isOpened()) {
@NegativeMind
NegativeMind / runblender.ipynb
Created July 25, 2020 04:19 — forked from donmahallem/README.md
Render Blender Files on Google Collab = MOVED TO https://github.com/donmahallem/colab_blender
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.