Skip to main content

Camera Pose Visualizer

KJNodes/misc
CameraPoseVisualizer

Visualizes the camera poses, from Animatediff-Evolved CameraCtrl Pose or a .txt file with RealEstate camera intrinsics and coordinates, in a 3D plot.

Example

JSON Example
{
  "class_type": "CameraPoseVisualizer",
  "inputs": {
    "pose_file_path": "https://example.com/path/to/file.bin",
    "base_xval": 0.2,
    "zval": 0.3,
    "scale": 1,
    "use_exact_fx": false,
    "relative_c2w": true,
    "use_viewer": false
  }
}

This example shows required inputs only. Connection values like ["node_id", 0] should reference actual node IDs from your workflow.

Inputs

NameTypeStatusConstraintsDefault
pose_file_pathSTRINGURL: Filerequired-""
base_xvalFLOATrequiredmin: 0, max: 100, step: 0.010.2
zvalFLOATrequiredmin: 0, max: 100, step: 0.010.3
scaleFLOATrequiredmin: 0.01, max: 10, step: 0.011
use_exact_fxBOOLEANrequired-false
relative_c2wBOOLEANrequired-true
use_viewerBOOLEANrequired-false
cameractrl_posesCAMERACTRL_POSESoptional--

Outputs

IndexNameTypeIs ListConnection Reference
0IMAGEIMAGENo["{node_id}", 0]
How to connect to these outputs

To connect another node's input to an output from this node, use the connection reference format:

["node_id", output_index]

Where node_id is the ID of this CameraPoseVisualizer node in your workflow, and output_index is the index from the table above.

Example

If this node has ID "5" in your workflow:

  • IMAGE (IMAGE): ["5", 0]
Was this page helpful?