Skip to content

Instantly share code, notes, and snippets.

View mcdulltii's full-sized avatar
🈳
Bored

Aaron mcdulltii

🈳
Bored
View GitHub Profile
@celestial-33
celestial-33 / readme-mac.md
Last active August 30, 2025 14:35 — forked from polyfjord/batch_reconstruct.bat
Bash script for automated photogrammetry tracking workflow for Mac

Automated Video to 3D Scan Workflow for macOS

This repository contains a Bash script for automating a photogrammetry workflow on macOS. It takes video files as input and uses FFmpeg and COLMAP to generate a 3D sparse point cloud.

This script is a modified version of AeroGenesiX’s modified version of Polyfjord’s original Windows batch script, rewritten to run smoothly on macOS systems.


Features

@duke2421
duke2421 / AutoTracker_v1.py
Last active September 2, 2025 15:39 — forked from polyfjord/AutoTracker_v1.4.bat
AutoTracker workflow using GLOMAP
#!/usr/bin/env python3
"""
AutoTracker GUI (Python) – Cross-Platform (preferred layout)
+ i18n (DE/EN auto + dropdown)
+ Linux installer/compilers from release archives (COLMAP 3.12.3 / GLOMAP 1.1.0)
+ Project-structure creation prompt, PATH fallback search, runtime timer, FPS options
This file is based on polyfjords AutoTracker_v1.4.bat
"""
import os, shutil
from pathlib import Path
@polyfjord
polyfjord / AutoTracker_v1.4.bat
Last active November 1, 2025 09:14
AutoTracker workflow using GLOMAP
:: ================================================================
:: BATCH SCRIPT FOR AUTOMATED PHOTOGRAMMETRY TRACKING WORKFLOW
:: By polyfjord - https://youtube.com/polyfjord
:: GLOMAP mapping (faster), COLMAP for features/matching + TXT export
:: ================================================================
@echo off
setlocal EnableExtensions EnableDelayedExpansion
:: ---------- Resolve top-level folder (one up from this .bat) -----
pushd "%~dp0\.." >nul
@AeroGenesiX
AeroGenesiX / readme(Linux).md
Last active September 15, 2025 17:08 — forked from polyfjord/batch_reconstruct.bat
Batch script for automated photogrammetry tracking workflow

Automated Video to 3D Scan Workflow for linux

This repository contains a robust Bash script for automating a photogrammetry workflow on Linux. It takes video files as input and uses FFmpeg and COLMAP to generate a 3D sparse point cloud, complete with intelligent error handling and automatic GPU detection.

This script is a heavily modified and debugged Linux version of an original concept by polyfjord.


Features

@polyfjord
polyfjord / batch_reconstruct.bat
Created August 3, 2025 10:51
Batch script for automated photogrammetry tracking workflow
:: ================================================================
:: BATCH SCRIPT FOR AUTOMATED PHOTOGRAMMETRY TRACKING WORKFLOW
:: By polyfjord - https://youtube.com/polyfjord
:: ================================================================
:: USAGE
:: • Double-click this .bat or run it from a command prompt.
:: • Frames are extracted, features matched, and a sparse
:: reconstruction is produced automatically.
:: • Videos that have already been processed are skipped on
:: subsequent runs.
@Et3rnos
Et3rnos / FreeStickers.plugin.js
Created June 23, 2023 07:43
DiscordFreeStickers With Animated Stickers Support
/**
* @name FreeStickers
* @version 1.4.0
* @description Link stickers or upload animated stickers as gifs!
* @author An0
* @source https://github.com/An00nymushun/DiscordFreeStickers
* @updateUrl https://raw.githubusercontent.com/An00nymushun/DiscordFreeStickers/main/FreeStickers.plugin.js
*/
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
@nateraw
nateraw / stable_diffusion_walk.py
Created August 18, 2022 05:59
Walk between stable diffusion text prompts
"""
Built on top of this gist by @karpathy:
https://gist.github.com/karpathy/00103b0037c5aaea32fe1da1af553355
stable diffusion dreaming over text prompts
creates hypnotic moving videos by smoothly walking randomly through the sample space
example way to run this script:
$ python stable_diffusion_walk.py --prompts "['blueberry spaghetti', 'strawberry spaghetti']" --seeds 243,523 --name berry_good_spaghetti
@mechanicalnull
mechanicalnull / LICENSE.txt
Last active May 19, 2023 23:22 — forked from psifertex/1_Snippet_Instructions.txt
My current collection of snippets
To the extent possible under law, @mechanicalnull has waived all copyright and related or neighboring rights to this Binary Ninja Snippets Collection (https://gist.github.com/mechanicalnull/b19c29ce38152b7304c2fad66168badd). This work is published from: United States.
For more information on a CC0 license, see: https://creativecommons.org/publicdomain/zero/1.0/deed.en
@D4stiny
D4stiny / Macro_Scrambler.py
Created September 16, 2020 07:08
Corrupts macro documents to prevent static analysis by anti-virus while still allowing for the document to be opened in Microsoft Word.
import sys
import zipfile
import random
def get_zip_file_header_offset(zip_filename, target_filename):
"""
Parse the file header offset for a target_filename.
:param zip_filename: The name of the zip file to read.
:param target_filename: The name of the file to find the header of.