Quick Start
Prerequisites
Your First Capture
Step 1: Start Unreal Engine
Step 2: Connect with Python
from uesynth import UESynthClient
import cv2
import numpy as np
# Connect to the running Unreal Engine instance
client = UESynthClient()
print("✅ Connected to UESynth!")
# Check if connection is successful
if client.is_connected():
print("🎮 UE instance is responsive")
else:
print("❌ Failed to connect")
exit(1)Step 3: Position the Camera
Step 4: Capture Your First Image
Step 5: Capture Additional Data Types
Step 6: Clean Up
Complete Example Script
What's Next?
Troubleshooting
Common Issues
Last updated