3D Image Generator
There are several ways to prepare images for depth mapping in Apoculus. Choose the method that works best for your workflow:
Depth Anything V2 (Built-in)
Upload any photo and let the AI predict depth automatically. Works great for portraits, landscapes, and complex scenes. Just select "Depth Anything V2 (AI)" from the Depth Algorithm dropdown.
β Best for photos and natural scenes
β No preparation needed
β Model loads automatically on first use (~97MB)
Simple Silhouettes
Create a grayscale image where white = foreground (near) and black = background (far). Works great for logos, icons, and simple graphics.
Layered Depth with GIMP/Photoshop
Create complex multi-depth scenes:
3D Software Export
If you're working with 3D models in Blender, Maya, or similar tools, you can render a depth pass (Z-depth) and export it as a grayscale image. This gives you precise control over depth based on actual 3D geometry.
Mobile Apps
DepthMaker - iOS/Android app that generates depth maps from photos using portrait mode or AI
Web-Based Tools
Depth Map Extractor - Extract depth data from images with depth information
Depthy - Create depth maps from photos with interactive painting tools
3D Photo Inpainting - AI-based depth estimation from single photos
For photos: Use Depth Anything V2 (AI)
For logos/graphics: Create simple grayscale silhouettes
For layered scenes: Use GIMP/Photoshop with multiple gray levels
For 3D projects: Export Z-depth pass from your 3D software
For mobile workflow: Use DepthMaker app, then upload here
Remember: Depth maps are just grayscale images where brightness = distance from viewer. White = close, black = far. Everything else is creative freedom!
An autostereogram (also called a "Magic Eye" image) is a 2D pattern that reveals a hidden 3D scene when viewed with the right technique. By crossing or diverging your eyes, you can see text, images, and shapes floating at different depths. Perfect for hiding clues in ARGs!
Cross-Eye Method (Easier):
Parallel Method (Wall-Eye):
β οΈ For ARG Creators: About 5-10% of people cannot see stereograms due to vision conditions. Always provide an alternative way to access hidden content! Consider linking to Apochron (digital autostereogram viewer) as a backup, or include hints that the content is 3D.
Avoid Horizontal Stratification (Critical!):
Pattern Settings for Quality:
Text Depth Tips:
Smoother Depth (Avoid "Sliced Layers"):
By default, AI-generated depth maps can look "sliced" into distinct layers. To create smoother, more natural depth:
What to Avoid:
Workflow:
FFmpeg Commands:
# Basic conversion (30 fps, high quality)
ffmpeg -framerate 30 -i frame_%04d.png -c:v libx264 -pix_fmt yuv420p -crf 18 output.mp4
# With audio from original video
ffmpeg -framerate 30 -i frame_%04d.png -i original_audio.mp3 -c:v libx264 -c:a aac -pix_fmt yuv420p -crf 18 -shortest output.mp4
# Lossless quality (large file size)
ffmpeg -framerate 30 -i frame_%04d.png -c:v libx264 -preset veryslow -qp 0 output.mp4
# Web-optimized (smaller file, 60fps)
ffmpeg -framerate 60 -i frame_%04d.png -c:v libx264 -pix_fmt yuv420p -crf 23 -preset slow output.mp4
Recommended Software:
π‘ Pro Tip: Always test your stereograms with multiple people before deploying in an ARG. What's easy for you to see might be impossible for others. Provide hints like "cross your eyes" or "look for the 3D message" to guide players.
Made with π by NQR Labs | Join Discord