Meta

Access Meta's SAM 3D Objects model for single-image 3D reconstruction through Runware's unified API. Learn about mask-guided 3D mesh generation, output formats, and prompt-based control.

Introduction

Meta's AI models are integrated into the Runware platform through our unified API, providing access to foundation-level 3D reconstruction technology that produces high-fidelity 3D meshes with realistic texture from single RGB images, even in cluttered and occluded real-world scenes.

SAM 3D Objects is part of Meta's broader SAM 3D family, enabling 2D-to-3D reconstruction workflows for visualization, AR/VR, robotics, and digital content creation. This page documents the technical specifications, parameter requirements, and input configurations for all Meta models available through our platform.

3D models

SAM 3D Objects

SAM 3D Objects is a foundation 3D model from Meta that reconstructs full 3D shape geometry, realistic texture, and scene layout of objects from a single RGB image. It produces high-fidelity 3D meshes robustly even in cluttered, occluded real-world scenes, and significantly outperforms prior single-image 3D methods.

Model AIR ID: meta:sam@3d.

Supported workflows: Image-to-3D.

Technical specifications:

  • Input image: Required via inputs.image.
  • Input mask: Required via inputs.mask. Defines the object region for 3D reconstruction.
  • Positive prompt: Optional. Guides the reconstruction with descriptive text.
  • Output format: Supports 3D output formats via outputFormat.
  • Seed: Optional. For reproducible generation results.
{
  "taskType": "3dInference",
  "taskUUID": "f47ac10b-58cc-4372-a567-0e02b2c3d479",
  "model": "meta:sam@3d",
  "inputs": {
    "image": "c64351d5-4c59-42f7-95e1-eace013eddab",
    "mask": "d7e8f9a0-2b5c-4e7f-a1d3-9c8b7a6e5d4f"
  }
}
{
  "taskType": "3dInference",
  "taskUUID": "6ba7b810-9dad-11d1-80b4-00c04fd430c8",
  "model": "meta:sam@3d",
  "positivePrompt": "A ceramic coffee mug with a smooth matte finish",
  "inputs": {
    "image": "c64351d5-4c59-42f7-95e1-eace013eddab",
    "mask": "d7e8f9a0-2b5c-4e7f-a1d3-9c8b7a6e5d4f"
  }
}
{
  "taskType": "3dInference",
  "taskUUID": "550e8400-e29b-41d4-a716-446655440000",
  "model": "meta:sam@3d",
  "positivePrompt": "A detailed wooden chair with carved armrests",
  "seed": 42,
  "inputs": {
    "image": "c64351d5-4c59-42f7-95e1-eace013eddab",
    "mask": "d7e8f9a0-2b5c-4e7f-a1d3-9c8b7a6e5d4f"
  }
}
{
  "taskType": "3dInference",
  "taskUUID": "a770f077-f413-47de-9dac-be0b26a35da7",
  "model": "meta:sam@3d",
  "inputs": {
    "image": "c64351d5-4c59-42f7-95e1-eace013eddab",
    "mask": "d7e8f9a0-2b5c-4e7f-a1d3-9c8b7a6e5d4f"
  },
  "outputFormat": "glb"
}