Installation Guide (Windows)
This guide will help you install and configure MipMapEngine on Windows and Linux systems.
đ System Requirementsâ
Hardware Requirementsâ
| Component | Minimum Requirements | Recommended Configuration |
|---|---|---|
| CPU | Intel i5 or equivalent | Intel i7/i9 or AMD Ryzen 7/9 |
| Memory | 16 GB | 32 GB or higher |
| Graphics Card | NVIDIA GTX 1050 Ti | NVIDIA RTX 3070 or higher |
| Storage | 50 GB available space | 2 TB SSD |
Supported Graphics Cardsâ
MipMapEngine currently only supports NVIDIA graphics cards
- GPU Architecture Requirements: Compute Capability âĨ 5.0
- Memory Requirements: GPU VRAM âĨ 4GB
Driver Version Requirementsâ
- Windows: NVIDIA Driver âĨ 528.33
- Linux: NVIDIA Driver âĨ 525.60.33
đĒ Windows Installationâ
Step 1: Check System Environmentâ
Use the hardware check script provided by the SDK directly:
# Windows
Step1_Hardware_Check_EN.bat
# Or run manually
hardware_check.exe
If the above command doesn't work. For manual checking, you can use the following commands:
# Check NVIDIA driver version
nvidia-smi
# Check system version
systeminfo | findstr /B /C:"OS Name" /C:"OS Version"
Step 2: Install Virbox Driverâ
- Download Virbox User Tools: https://lm.virbox.com/tools.html
- Run the installer and follow the wizard to complete installation
- Restart your computer
Note
Virbox is the SDK's encryption and authorization tool, which must be installed before use.
Step 3: Install SDKâ
- Extract SDK Package
Use file extraction software or PowerShell
# Extract to specified directory
Expand-Archive -Path "MipMapEngine-SDK-4.0.zip" -DestinationPath "C:\MipMap\SDK"
- Set Environment Variables (Optional)
Tip
- If you choose not to set environment variables, ensure you use the correct SDK file path when calling the SDK later
# Add SDK to system path
[Environment]::SetEnvironmentVariable("PATH", $env:PATH + ";C:\MipMap\SDK\bin", "User")
- Verify Installation
# Check executable files
reconstruct_full_engine.exe --version
Step 4: Activate Licenseâ
Note
- Before activating the license, please ensure that the above hardware environment check has passed
# Activate license
license_engine.exe -bind YOUR-LICENSE-KEY
# Verify activation status
license_engine.exe -enum license_info.json
đ¨ Common Issuesâ
Windows Issuesâ
Error: NVIDIA driver version too low
Solution:
- Visit NVIDIA Driver Download Page
- Select your graphics card model
- Download and install the latest driver
đ Directory Structureâ
After installation, the SDK directory structure is as follows:
MipMap-SDK/
âââ bin/ # Executables
â âââ reconstruct_full_engine.exe # Full reconstruction engine
â âââ license_engine.exe # License management
â âââ task_json_check.exe # Configuration file validation tool
â âââ hardware_check.exe # Hardware detection tool
â âââ libraries # Runtime dynamic libraries
âââ gdal_data/ # GDAL data files
âââ example/ # Example projects
â âââ 1_reconstruct_full_basic.json
â âââ 2_group_cameras.json
â âââ 3_custom_image_pos.json
â âââ sample-images/ # Sample images
â âââ Step*.bat # Run scripts
âââ docs/ # Offline documentation
â Installation Checklistâ
- NVIDIA graphics driver updated to required version
- Virbox driver installed and running
- SDK files extracted correctly
- Environment variables configured
- License successfully activated
đ Next Stepsâ
Installation complete! Now you can:
- đ Read the Quick Start guide to begin your first project
- đ§ Check Basic Concepts to learn more configuration options
- đĄ Explore API Reference to learn detailed usage
Tip: Encountering issues during installation? Check Troubleshooting or contact technical support.
Having problems? Check the troubleshooting guide or contact technical support.