Submodule: proximity_checks

Check camera proximity to other objects in the room

Define the minimum and maximum distance a camera can be from any given object within a room.

        "proximity_checks": {
          "min": 1,
          "max": 20.0,
        }

An example implementation of proximity checks within a camera .RoomCamera module.

    {
      "module": "camera.RoomCamera",
      "config": {

        "num": 1,
        "height": [1.2, 1.8],
        "proximity_checks": {
          "min": 1,
          "max": 20.0,
        }
      }
    }

Last updated