photo-import-setup

photo-import-setup is a skill for Claude Code from jenkinsm13/metashape-mcp. It costs 71 tokens per session (1,912 once invoked), scanned A, original, MIT.

A Metashape setup guide for turning raw photographs and location data into a new photogrammetry project. Photogrammetry creates 3D information from overlapping photos.

In plain words
What is it for?
Use it when starting or rebuilding a Metashape project, importing photos and GPS data, configuring fisheye or rolling-shutter cameras, and checking image quality.
Why use it?
It organizes the repeated preparation work before photos can be aligned, including camera settings, masks, image checks, and unusable frames.

Skill for Claude Code

Written for Claude Code: user-invocable in frontmatter.

Part of the metashape-mcp plugin — 12 skills, 8 agents, 2 hooks, 1 MCP server shipped together

Good fit Use it when starting or rebuilding a Metashape project, importing photos and GPS data, configuring fisheye or rolling-shutter cameras, and checking image quality.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/jenkinsm13/metashape-mcp/photo-import-setup
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add jenkinsm13/metashape-mcp --skill photo-import-setup
Clone the repo
git clone --depth 1 https://github.com/jenkinsm13/metashape-mcp

Made for: Claude Code.

Or install metashape-mcp, the plugin that ships this one along with the rest of its 12 skills, 8 agents, 2 hooks, 1 MCP server.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for photo-import-setup

README.md
[![agentmods](https://agentmods.dev/badge/skills/jenkinsm13/metashape-mcp/photo-import-setup/github.svg)](https://agentmods.dev/skills/jenkinsm13/metashape-mcp/photo-import-setup)
Your own site
<a href="https://agentmods.dev/skills/jenkinsm13/metashape-mcp/photo-import-setup"><img src="https://agentmods.dev/badge/skills/jenkinsm13/metashape-mcp/photo-import-setup/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for photo-import-setup

Your own site · 80×15
<a href="https://agentmods.dev/skills/jenkinsm13/metashape-mcp/photo-import-setup"><img src="https://agentmods.dev/badge/skills/jenkinsm13/metashape-mcp/photo-import-setup.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 71 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,912 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00071 $0.01912
Opus 5 $0.00036 $0.00956
Sonnet 5 $0.00014 $0.00382
Haiku 4.5 $0.00007 $0.00191

Measured 11d ago against content hash fedcc06a74cb, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

photo-import-setup scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 11d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/photo-import-setup/SKILL.md · 241 lines

How it starts

The opening of the file, as written. The whole thing — 241 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Photo Import & Project Setup

Overview

Every photogrammetry project starts with the same sequence: create project, import photos, load GPS, configure sensors, import masks, check image quality. This skill covers that entire setup phase, getting a project ready for alignment.

When to Use

  • Starting a new project from raw photos
  • Adding a new camera/capture to an existing project
  • Re-importing after changing folder structure or GPS data
  • Setting up sensors for the first time (fisheye, rolling shutter, etc.)

Prerequisites

  • Photos on disk (EXR, JPEG, TIFF, PNG, DNG)
  • GPS data (EXIF embedded or external CSV)
  • Metashape MCP server running

Setup Pipeline

Step 1: Create or open project

create_project(path="E:\\Projects\\MyProject.psx")

Or for existing:

open_project(path="E:\\Projects\\MyProject.psx")

Step 2: Import photos

For a single folder:

add_photos(paths=["E:\\Captures\\Day1\\"])

For multiple folders (multi-day, multi-camera):

add_photos(paths=["E:\\Captures\\Day1\\", "E:\\Captures\\Day2\\"])

For glob patterns:

add_photos(paths=["E:\\Captures\\**\\*.exr"])

After import, verify:

list_chunks()

Check camera count matches expected photo count.

Step 3: Import GPS reference

If GPS is NOT in EXIF (common for vehicle-mounted captures):

import_reference(
    path="E:\\Captures\\gps_data.csv",
    columns="nxyz",        # n=label, x=longitude, y=latitude, z=altitude
    delimiter=","
)

Column format options:

  • "nxyz" — label, lon, lat, alt (most common)
  • "nxy" — label, lon, lat (no altitude)
  • "nxyzabc" — label, lon, lat, alt, accuracy_x, accuracy_y, accuracy_z

After import, verify GPS loaded:

get_alignment_stats()

Check cameras_with_reference matches expected count.

Step 4: Configure sensors

This is the most critical setup step. Wrong sensor configuration is the #1 cause of total alignment failure.

Check current sensors:

list_sensors()

Read the full file on GitHub · 241 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 11d ago First seen · 241 lines · 71 tokens per session scan A fedcc06a74cb

Subscribe to this mod's changes

photo-import-setup is a skill published in the GitHub repository jenkinsm13/metashape-mcp (34 stars, last pushed 4mo ago), licensed MIT. It adds 71 tokens to every session and 1,912 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

cad-mesh-3dgs

Bridge CAD, Mesh, and 3DGS representations via the SLAT unified encode-decode framework. Covers mesh↔3DGS conversion, surface extraction, CAD reverse engineering, B-rep/parametric reconstruction, NL-driven assembly, TetSphere physics bridge, PBR material generation. Analyzes 40+ methods. Use when: converting mesh…

jaccen/Awesome-Gaussian-Skills · 140 tokens

3dgs-experiment-planner

Design rigorous experiments for 3DGS research papers. Recommends datasets, baselines, metrics, ablation matrices. Targets CVPR/ICCV/ECCV/SIGGRAPH/TVCG. Use when: designing experiments for a 3DGS paper, selecting datasets/baselines/metrics, planning ablation studies, addressing reviewer concerns on experiments…

jaccen/Awesome-Gaussian-Skills · 96 tokens

3dgs-visualizer

A chart-making tool for research on 3D Gaussian Splatting (3DGS), a technique for representing and rendering 3D scenes from images. It creates radar charts, comparison tables, and timelines for comparing research methods.

jaccen/Awesome-Gaussian-Skills · 84 tokens

nerf-to-3dgs-migrator

Migrate NeRF-based methods to 3DGS via the SLAT unified encode-decode framework. Analyzes component compatibility, provides code templates, identifies issues. Covers encoding, deformation, appearance, geometry. Use when: migrating NeRF method to 3DGS, comparing NeRF vs 3DGS components, designing hybrid NeRF-3DGS…

jaccen/Awesome-Gaussian-Skills · 106 tokens

3dgs-paper-reader

Read and summarize 3DGS research papers. Extracts method architecture, innovations, experimental results from arXiv or local PDFs. Structured output with tables. Knowledge of 819+ methods across 23 categories. Use when: reading or analyzing a 3DGS/NeRF paper, extracting method details from arXiv PDF, summarizing 3D…

jaccen/Awesome-Gaussian-Skills · 96 tokens

cg-paper-writing

Academic paper writing for 3D vision, computer graphics, CAD, and 3D understanding. Covers NeRF, 3DGS, SLAM, point cloud, 3D shape, CAD modeling. Supports CVPR/ICCV/ECCV/SIGGRAPH venues. Multi-agent adversarial review, citation integrity gates, style calibration. Use when: writing or revising a CG/3D vision paper…

jaccen/Awesome-Gaussian-Skills · 134 tokens