├── .gitignore ├── .gitmodules ├── LICENSE ├── README.md ├── app ├── 3D Copy&Paste.xcodeproj │ ├── .xcodesamplecode.plist │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── xcshareddata │ │ │ └── WorkspaceSettings.xcsettings │ └── xcshareddata │ │ └── xcschemes │ │ └── 3D Copy&Paste.xcscheme ├── 3d Copy&Paste │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── 1024.png │ │ │ ├── 120-1.png │ │ │ ├── 120.png │ │ │ ├── 152.png │ │ │ ├── 167.png │ │ │ ├── 180.png │ │ │ ├── 20.png │ │ │ ├── 29.png │ │ │ ├── 40-1.png │ │ │ ├── 40-2.png │ │ │ ├── 40.png │ │ │ ├── 58-1.png │ │ │ ├── 58.png │ │ │ ├── 60.png │ │ │ ├── 76.png │ │ │ ├── 80-1.png │ │ │ ├── 80.png │ │ │ ├── 87.png │ │ │ └── Contents.json │ │ ├── Contents.json │ │ ├── EnvironmentTips.imageset │ │ │ ├── Contents.json │ │ │ └── Environment-Tutorial.png │ │ ├── ObjectCharacteristicsTips.imageset │ │ │ ├── Contents.json │ │ │ └── ObjectCharacteristics-Tutorial.png │ │ ├── ObjectReticle.imageset │ │ │ ├── CaptureFrame.pdf │ │ │ └── Contents.json │ │ ├── PhotographyTips.imageset │ │ │ ├── Contents.json │ │ │ └── Photography-Tutorial.png │ │ ├── lidar.imageset │ │ │ ├── Contents.json │ │ │ └── lidar-slam-64-ouster.jpeg │ │ └── photogrammetry.imageset │ │ │ ├── Contents.json │ │ │ └── realitycapture_review_header-525x300.jpeg │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── EntryViewController.swift │ ├── Extensions.swift │ ├── Info.plist │ ├── LidarViewController.swift │ ├── Photogrammetry │ │ ├── AsyncImageHelpers.swift │ │ ├── CameraPreviewView.swift │ │ ├── CameraView.swift │ │ ├── CameraViewModel.swift │ │ ├── Capture.swift │ │ ├── CaptureFolderState.swift │ │ ├── CaptureFoldersView.swift │ │ ├── CaptureGalleryView.swift │ │ ├── CaptureInfo.swift │ │ ├── ContentView.swift │ │ ├── HelpPageView.swift │ │ ├── ImageLoader.swift │ │ ├── InfoPanelView.swift │ │ ├── PhotoCaptureDelegate.swift │ │ ├── PhotogrammetryScreen.swift │ │ ├── TimerView.swift │ │ └── TriggerEveryTimer.swift │ ├── RoundedButton.swift │ ├── WrapperPhotoViewController.swift │ └── scan.scn ├── LICENSE │ └── LICENSE.txt └── README.md ├── scans └── coordinates.json ├── scene.blend ├── scene.blend1 ├── scripts └── importObject.py └── server ├── .gitignore ├── .python-version ├── README.md ├── original_dataset ├── DSC_0025.JPG ├── DSC_0026.JPG ├── DSC_0027.JPG ├── DSC_0028.JPG ├── DSC_0029.JPG ├── DSC_0030.JPG ├── DSC_0031.JPG ├── DSC_0032.JPG ├── DSC_0033.JPG ├── DSC_0034.JPG ├── DSC_0035.JPG ├── DSC_0036.JPG ├── DSC_0037.JPG ├── DSC_0038.JPG ├── DSC_0039.JPG ├── DSC_0040.JPG ├── DSC_0041.JPG ├── DSC_0042.JPG ├── DSC_0043.JPG ├── DSC_0044.JPG ├── DSC_0045.JPG ├── DSC_0046.JPG ├── DSC_0047.JPG ├── DSC_0048.JPG ├── DSC_0049.JPG ├── DSC_0050.JPG ├── DSC_0051.JPG ├── DSC_0052.JPG └── DSC_0053.JPG ├── requirements.txt └── src ├── __pycache__ └── ps.cpython-37.pyc ├── feature_matching.png ├── lidar.py ├── main.py ├── photogrammetry.py └── u2net.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Janjs/scandrop-mcp/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Janjs/scandrop-mcp/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Janjs/scandrop-mcp/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Janjs/scandrop-mcp/HEAD/README.md -------------------------------------------------------------------------------- /app/3D Copy&Paste.xcodeproj/.xcodesamplecode.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Janjs/scandrop-mcp/HEAD/app/3D Copy&Paste.xcodeproj/.xcodesamplecode.plist -------------------------------------------------------------------------------- /app/3D Copy&Paste.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Janjs/scandrop-mcp/HEAD/app/3D Copy&Paste.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /app/3D Copy&Paste.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Janjs/scandrop-mcp/HEAD/app/3D Copy&Paste.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /app/3D Copy&Paste.xcodeproj/xcshareddata/xcschemes/3D Copy&Paste.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Janjs/scandrop-mcp/HEAD/app/3D Copy&Paste.xcodeproj/xcshareddata/xcschemes/3D Copy&Paste.xcscheme -------------------------------------------------------------------------------- /app/3d Copy&Paste/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Janjs/scandrop-mcp/HEAD/app/3d Copy&Paste/AppDelegate.swift -------------------------------------------------------------------------------- /app/3d Copy&Paste/Assets.xcassets/AppIcon.appiconset/1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Janjs/scandrop-mcp/HEAD/app/3d Copy&Paste/Assets.xcassets/AppIcon.appiconset/1024.png -------------------------------------------------------------------------------- /app/3d Copy&Paste/Assets.xcassets/AppIcon.appiconset/120-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Janjs/scandrop-mcp/HEAD/app/3d Copy&Paste/Assets.xcassets/AppIcon.appiconset/120-1.png -------------------------------------------------------------------------------- /app/3d Copy&Paste/Assets.xcassets/AppIcon.appiconset/120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Janjs/scandrop-mcp/HEAD/app/3d Copy&Paste/Assets.xcassets/AppIcon.appiconset/120.png -------------------------------------------------------------------------------- /app/3d Copy&Paste/Assets.xcassets/AppIcon.appiconset/152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Janjs/scandrop-mcp/HEAD/app/3d Copy&Paste/Assets.xcassets/AppIcon.appiconset/152.png -------------------------------------------------------------------------------- /app/3d Copy&Paste/Assets.xcassets/AppIcon.appiconset/167.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Janjs/scandrop-mcp/HEAD/app/3d Copy&Paste/Assets.xcassets/AppIcon.appiconset/167.png -------------------------------------------------------------------------------- /app/3d Copy&Paste/Assets.xcassets/AppIcon.appiconset/180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Janjs/scandrop-mcp/HEAD/app/3d Copy&Paste/Assets.xcassets/AppIcon.appiconset/180.png -------------------------------------------------------------------------------- /app/3d Copy&Paste/Assets.xcassets/AppIcon.appiconset/20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Janjs/scandrop-mcp/HEAD/app/3d Copy&Paste/Assets.xcassets/AppIcon.appiconset/20.png -------------------------------------------------------------------------------- /app/3d Copy&Paste/Assets.xcassets/AppIcon.appiconset/29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Janjs/scandrop-mcp/HEAD/app/3d Copy&Paste/Assets.xcassets/AppIcon.appiconset/29.png -------------------------------------------------------------------------------- /app/3d Copy&Paste/Assets.xcassets/AppIcon.appiconset/40-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Janjs/scandrop-mcp/HEAD/app/3d Copy&Paste/Assets.xcassets/AppIcon.appiconset/40-1.png -------------------------------------------------------------------------------- /app/3d Copy&Paste/Assets.xcassets/AppIcon.appiconset/40-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Janjs/scandrop-mcp/HEAD/app/3d Copy&Paste/Assets.xcassets/AppIcon.appiconset/40-2.png -------------------------------------------------------------------------------- /app/3d Copy&Paste/Assets.xcassets/AppIcon.appiconset/40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Janjs/scandrop-mcp/HEAD/app/3d Copy&Paste/Assets.xcassets/AppIcon.appiconset/40.png -------------------------------------------------------------------------------- /app/3d Copy&Paste/Assets.xcassets/AppIcon.appiconset/58-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Janjs/scandrop-mcp/HEAD/app/3d Copy&Paste/Assets.xcassets/AppIcon.appiconset/58-1.png -------------------------------------------------------------------------------- /app/3d Copy&Paste/Assets.xcassets/AppIcon.appiconset/58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Janjs/scandrop-mcp/HEAD/app/3d Copy&Paste/Assets.xcassets/AppIcon.appiconset/58.png -------------------------------------------------------------------------------- /app/3d Copy&Paste/Assets.xcassets/AppIcon.appiconset/60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Janjs/scandrop-mcp/HEAD/app/3d Copy&Paste/Assets.xcassets/AppIcon.appiconset/60.png -------------------------------------------------------------------------------- /app/3d Copy&Paste/Assets.xcassets/AppIcon.appiconset/76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Janjs/scandrop-mcp/HEAD/app/3d Copy&Paste/Assets.xcassets/AppIcon.appiconset/76.png -------------------------------------------------------------------------------- /app/3d Copy&Paste/Assets.xcassets/AppIcon.appiconset/80-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Janjs/scandrop-mcp/HEAD/app/3d Copy&Paste/Assets.xcassets/AppIcon.appiconset/80-1.png -------------------------------------------------------------------------------- /app/3d Copy&Paste/Assets.xcassets/AppIcon.appiconset/80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Janjs/scandrop-mcp/HEAD/app/3d Copy&Paste/Assets.xcassets/AppIcon.appiconset/80.png -------------------------------------------------------------------------------- /app/3d Copy&Paste/Assets.xcassets/AppIcon.appiconset/87.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Janjs/scandrop-mcp/HEAD/app/3d Copy&Paste/Assets.xcassets/AppIcon.appiconset/87.png -------------------------------------------------------------------------------- /app/3d Copy&Paste/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Janjs/scandrop-mcp/HEAD/app/3d Copy&Paste/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /app/3d Copy&Paste/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Janjs/scandrop-mcp/HEAD/app/3d Copy&Paste/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /app/3d Copy&Paste/Assets.xcassets/EnvironmentTips.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Janjs/scandrop-mcp/HEAD/app/3d Copy&Paste/Assets.xcassets/EnvironmentTips.imageset/Contents.json -------------------------------------------------------------------------------- /app/3d Copy&Paste/Assets.xcassets/EnvironmentTips.imageset/Environment-Tutorial.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Janjs/scandrop-mcp/HEAD/app/3d Copy&Paste/Assets.xcassets/EnvironmentTips.imageset/Environment-Tutorial.png -------------------------------------------------------------------------------- /app/3d Copy&Paste/Assets.xcassets/ObjectCharacteristicsTips.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Janjs/scandrop-mcp/HEAD/app/3d Copy&Paste/Assets.xcassets/ObjectCharacteristicsTips.imageset/Contents.json -------------------------------------------------------------------------------- /app/3d Copy&Paste/Assets.xcassets/ObjectCharacteristicsTips.imageset/ObjectCharacteristics-Tutorial.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Janjs/scandrop-mcp/HEAD/app/3d Copy&Paste/Assets.xcassets/ObjectCharacteristicsTips.imageset/ObjectCharacteristics-Tutorial.png -------------------------------------------------------------------------------- /app/3d Copy&Paste/Assets.xcassets/ObjectReticle.imageset/CaptureFrame.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Janjs/scandrop-mcp/HEAD/app/3d Copy&Paste/Assets.xcassets/ObjectReticle.imageset/CaptureFrame.pdf -------------------------------------------------------------------------------- /app/3d Copy&Paste/Assets.xcassets/ObjectReticle.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Janjs/scandrop-mcp/HEAD/app/3d Copy&Paste/Assets.xcassets/ObjectReticle.imageset/Contents.json -------------------------------------------------------------------------------- /app/3d Copy&Paste/Assets.xcassets/PhotographyTips.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Janjs/scandrop-mcp/HEAD/app/3d Copy&Paste/Assets.xcassets/PhotographyTips.imageset/Contents.json -------------------------------------------------------------------------------- /app/3d Copy&Paste/Assets.xcassets/PhotographyTips.imageset/Photography-Tutorial.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Janjs/scandrop-mcp/HEAD/app/3d Copy&Paste/Assets.xcassets/PhotographyTips.imageset/Photography-Tutorial.png -------------------------------------------------------------------------------- /app/3d Copy&Paste/Assets.xcassets/lidar.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Janjs/scandrop-mcp/HEAD/app/3d Copy&Paste/Assets.xcassets/lidar.imageset/Contents.json -------------------------------------------------------------------------------- /app/3d Copy&Paste/Assets.xcassets/lidar.imageset/lidar-slam-64-ouster.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Janjs/scandrop-mcp/HEAD/app/3d Copy&Paste/Assets.xcassets/lidar.imageset/lidar-slam-64-ouster.jpeg -------------------------------------------------------------------------------- /app/3d Copy&Paste/Assets.xcassets/photogrammetry.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Janjs/scandrop-mcp/HEAD/app/3d Copy&Paste/Assets.xcassets/photogrammetry.imageset/Contents.json -------------------------------------------------------------------------------- /app/3d Copy&Paste/Assets.xcassets/photogrammetry.imageset/realitycapture_review_header-525x300.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Janjs/scandrop-mcp/HEAD/app/3d Copy&Paste/Assets.xcassets/photogrammetry.imageset/realitycapture_review_header-525x300.jpeg -------------------------------------------------------------------------------- /app/3d Copy&Paste/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Janjs/scandrop-mcp/HEAD/app/3d Copy&Paste/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /app/3d Copy&Paste/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Janjs/scandrop-mcp/HEAD/app/3d Copy&Paste/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /app/3d Copy&Paste/EntryViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Janjs/scandrop-mcp/HEAD/app/3d Copy&Paste/EntryViewController.swift -------------------------------------------------------------------------------- /app/3d Copy&Paste/Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Janjs/scandrop-mcp/HEAD/app/3d Copy&Paste/Extensions.swift -------------------------------------------------------------------------------- /app/3d Copy&Paste/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Janjs/scandrop-mcp/HEAD/app/3d Copy&Paste/Info.plist -------------------------------------------------------------------------------- /app/3d Copy&Paste/LidarViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Janjs/scandrop-mcp/HEAD/app/3d Copy&Paste/LidarViewController.swift -------------------------------------------------------------------------------- /app/3d Copy&Paste/Photogrammetry/AsyncImageHelpers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Janjs/scandrop-mcp/HEAD/app/3d Copy&Paste/Photogrammetry/AsyncImageHelpers.swift -------------------------------------------------------------------------------- /app/3d Copy&Paste/Photogrammetry/CameraPreviewView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Janjs/scandrop-mcp/HEAD/app/3d Copy&Paste/Photogrammetry/CameraPreviewView.swift -------------------------------------------------------------------------------- /app/3d Copy&Paste/Photogrammetry/CameraView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Janjs/scandrop-mcp/HEAD/app/3d Copy&Paste/Photogrammetry/CameraView.swift -------------------------------------------------------------------------------- /app/3d Copy&Paste/Photogrammetry/CameraViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Janjs/scandrop-mcp/HEAD/app/3d Copy&Paste/Photogrammetry/CameraViewModel.swift -------------------------------------------------------------------------------- /app/3d Copy&Paste/Photogrammetry/Capture.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Janjs/scandrop-mcp/HEAD/app/3d Copy&Paste/Photogrammetry/Capture.swift -------------------------------------------------------------------------------- /app/3d Copy&Paste/Photogrammetry/CaptureFolderState.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Janjs/scandrop-mcp/HEAD/app/3d Copy&Paste/Photogrammetry/CaptureFolderState.swift -------------------------------------------------------------------------------- /app/3d Copy&Paste/Photogrammetry/CaptureFoldersView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Janjs/scandrop-mcp/HEAD/app/3d Copy&Paste/Photogrammetry/CaptureFoldersView.swift -------------------------------------------------------------------------------- /app/3d Copy&Paste/Photogrammetry/CaptureGalleryView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Janjs/scandrop-mcp/HEAD/app/3d Copy&Paste/Photogrammetry/CaptureGalleryView.swift -------------------------------------------------------------------------------- /app/3d Copy&Paste/Photogrammetry/CaptureInfo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Janjs/scandrop-mcp/HEAD/app/3d Copy&Paste/Photogrammetry/CaptureInfo.swift -------------------------------------------------------------------------------- /app/3d Copy&Paste/Photogrammetry/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Janjs/scandrop-mcp/HEAD/app/3d Copy&Paste/Photogrammetry/ContentView.swift -------------------------------------------------------------------------------- /app/3d Copy&Paste/Photogrammetry/HelpPageView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Janjs/scandrop-mcp/HEAD/app/3d Copy&Paste/Photogrammetry/HelpPageView.swift -------------------------------------------------------------------------------- /app/3d Copy&Paste/Photogrammetry/ImageLoader.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Janjs/scandrop-mcp/HEAD/app/3d Copy&Paste/Photogrammetry/ImageLoader.swift -------------------------------------------------------------------------------- /app/3d Copy&Paste/Photogrammetry/InfoPanelView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Janjs/scandrop-mcp/HEAD/app/3d Copy&Paste/Photogrammetry/InfoPanelView.swift -------------------------------------------------------------------------------- /app/3d Copy&Paste/Photogrammetry/PhotoCaptureDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Janjs/scandrop-mcp/HEAD/app/3d Copy&Paste/Photogrammetry/PhotoCaptureDelegate.swift -------------------------------------------------------------------------------- /app/3d Copy&Paste/Photogrammetry/PhotogrammetryScreen.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Janjs/scandrop-mcp/HEAD/app/3d Copy&Paste/Photogrammetry/PhotogrammetryScreen.swift -------------------------------------------------------------------------------- /app/3d Copy&Paste/Photogrammetry/TimerView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Janjs/scandrop-mcp/HEAD/app/3d Copy&Paste/Photogrammetry/TimerView.swift -------------------------------------------------------------------------------- /app/3d Copy&Paste/Photogrammetry/TriggerEveryTimer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Janjs/scandrop-mcp/HEAD/app/3d Copy&Paste/Photogrammetry/TriggerEveryTimer.swift -------------------------------------------------------------------------------- /app/3d Copy&Paste/RoundedButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Janjs/scandrop-mcp/HEAD/app/3d Copy&Paste/RoundedButton.swift -------------------------------------------------------------------------------- /app/3d Copy&Paste/WrapperPhotoViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Janjs/scandrop-mcp/HEAD/app/3d Copy&Paste/WrapperPhotoViewController.swift -------------------------------------------------------------------------------- /app/3d Copy&Paste/scan.scn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Janjs/scandrop-mcp/HEAD/app/3d Copy&Paste/scan.scn -------------------------------------------------------------------------------- /app/LICENSE/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Janjs/scandrop-mcp/HEAD/app/LICENSE/LICENSE.txt -------------------------------------------------------------------------------- /app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Janjs/scandrop-mcp/HEAD/app/README.md -------------------------------------------------------------------------------- /scans/coordinates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Janjs/scandrop-mcp/HEAD/scans/coordinates.json -------------------------------------------------------------------------------- /scene.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Janjs/scandrop-mcp/HEAD/scene.blend -------------------------------------------------------------------------------- /scene.blend1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Janjs/scandrop-mcp/HEAD/scene.blend1 -------------------------------------------------------------------------------- /scripts/importObject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Janjs/scandrop-mcp/HEAD/scripts/importObject.py -------------------------------------------------------------------------------- /server/.gitignore: -------------------------------------------------------------------------------- 1 | *.pth 2 | __pycache__ 3 | venv/ 4 | -------------------------------------------------------------------------------- /server/.python-version: -------------------------------------------------------------------------------- 1 | 3.7.7 2 | -------------------------------------------------------------------------------- /server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Janjs/scandrop-mcp/HEAD/server/README.md -------------------------------------------------------------------------------- /server/original_dataset/DSC_0025.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Janjs/scandrop-mcp/HEAD/server/original_dataset/DSC_0025.JPG -------------------------------------------------------------------------------- /server/original_dataset/DSC_0026.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Janjs/scandrop-mcp/HEAD/server/original_dataset/DSC_0026.JPG -------------------------------------------------------------------------------- /server/original_dataset/DSC_0027.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Janjs/scandrop-mcp/HEAD/server/original_dataset/DSC_0027.JPG -------------------------------------------------------------------------------- /server/original_dataset/DSC_0028.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Janjs/scandrop-mcp/HEAD/server/original_dataset/DSC_0028.JPG -------------------------------------------------------------------------------- /server/original_dataset/DSC_0029.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Janjs/scandrop-mcp/HEAD/server/original_dataset/DSC_0029.JPG -------------------------------------------------------------------------------- /server/original_dataset/DSC_0030.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Janjs/scandrop-mcp/HEAD/server/original_dataset/DSC_0030.JPG -------------------------------------------------------------------------------- /server/original_dataset/DSC_0031.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Janjs/scandrop-mcp/HEAD/server/original_dataset/DSC_0031.JPG -------------------------------------------------------------------------------- /server/original_dataset/DSC_0032.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Janjs/scandrop-mcp/HEAD/server/original_dataset/DSC_0032.JPG -------------------------------------------------------------------------------- /server/original_dataset/DSC_0033.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Janjs/scandrop-mcp/HEAD/server/original_dataset/DSC_0033.JPG -------------------------------------------------------------------------------- /server/original_dataset/DSC_0034.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Janjs/scandrop-mcp/HEAD/server/original_dataset/DSC_0034.JPG -------------------------------------------------------------------------------- /server/original_dataset/DSC_0035.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Janjs/scandrop-mcp/HEAD/server/original_dataset/DSC_0035.JPG -------------------------------------------------------------------------------- /server/original_dataset/DSC_0036.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Janjs/scandrop-mcp/HEAD/server/original_dataset/DSC_0036.JPG -------------------------------------------------------------------------------- /server/original_dataset/DSC_0037.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Janjs/scandrop-mcp/HEAD/server/original_dataset/DSC_0037.JPG -------------------------------------------------------------------------------- /server/original_dataset/DSC_0038.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Janjs/scandrop-mcp/HEAD/server/original_dataset/DSC_0038.JPG -------------------------------------------------------------------------------- /server/original_dataset/DSC_0039.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Janjs/scandrop-mcp/HEAD/server/original_dataset/DSC_0039.JPG -------------------------------------------------------------------------------- /server/original_dataset/DSC_0040.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Janjs/scandrop-mcp/HEAD/server/original_dataset/DSC_0040.JPG -------------------------------------------------------------------------------- /server/original_dataset/DSC_0041.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Janjs/scandrop-mcp/HEAD/server/original_dataset/DSC_0041.JPG -------------------------------------------------------------------------------- /server/original_dataset/DSC_0042.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Janjs/scandrop-mcp/HEAD/server/original_dataset/DSC_0042.JPG -------------------------------------------------------------------------------- /server/original_dataset/DSC_0043.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Janjs/scandrop-mcp/HEAD/server/original_dataset/DSC_0043.JPG -------------------------------------------------------------------------------- /server/original_dataset/DSC_0044.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Janjs/scandrop-mcp/HEAD/server/original_dataset/DSC_0044.JPG -------------------------------------------------------------------------------- /server/original_dataset/DSC_0045.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Janjs/scandrop-mcp/HEAD/server/original_dataset/DSC_0045.JPG -------------------------------------------------------------------------------- /server/original_dataset/DSC_0046.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Janjs/scandrop-mcp/HEAD/server/original_dataset/DSC_0046.JPG -------------------------------------------------------------------------------- /server/original_dataset/DSC_0047.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Janjs/scandrop-mcp/HEAD/server/original_dataset/DSC_0047.JPG -------------------------------------------------------------------------------- /server/original_dataset/DSC_0048.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Janjs/scandrop-mcp/HEAD/server/original_dataset/DSC_0048.JPG -------------------------------------------------------------------------------- /server/original_dataset/DSC_0049.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Janjs/scandrop-mcp/HEAD/server/original_dataset/DSC_0049.JPG -------------------------------------------------------------------------------- /server/original_dataset/DSC_0050.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Janjs/scandrop-mcp/HEAD/server/original_dataset/DSC_0050.JPG -------------------------------------------------------------------------------- /server/original_dataset/DSC_0051.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Janjs/scandrop-mcp/HEAD/server/original_dataset/DSC_0051.JPG -------------------------------------------------------------------------------- /server/original_dataset/DSC_0052.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Janjs/scandrop-mcp/HEAD/server/original_dataset/DSC_0052.JPG -------------------------------------------------------------------------------- /server/original_dataset/DSC_0053.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Janjs/scandrop-mcp/HEAD/server/original_dataset/DSC_0053.JPG -------------------------------------------------------------------------------- /server/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Janjs/scandrop-mcp/HEAD/server/requirements.txt -------------------------------------------------------------------------------- /server/src/__pycache__/ps.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Janjs/scandrop-mcp/HEAD/server/src/__pycache__/ps.cpython-37.pyc -------------------------------------------------------------------------------- /server/src/feature_matching.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Janjs/scandrop-mcp/HEAD/server/src/feature_matching.png -------------------------------------------------------------------------------- /server/src/lidar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Janjs/scandrop-mcp/HEAD/server/src/lidar.py -------------------------------------------------------------------------------- /server/src/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Janjs/scandrop-mcp/HEAD/server/src/main.py -------------------------------------------------------------------------------- /server/src/photogrammetry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Janjs/scandrop-mcp/HEAD/server/src/photogrammetry.py -------------------------------------------------------------------------------- /server/src/u2net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Janjs/scandrop-mcp/HEAD/server/src/u2net.py --------------------------------------------------------------------------------