Camera Pose Visualizer
KJNodes/misc
CameraPoseVisualizerVisualizes 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
| Name | Type | Status | Constraints | Default |
|---|---|---|---|---|
pose_file_path | STRINGURL: File | required | - | "" |
base_xval | FLOAT | required | min: 0, max: 100, step: 0.01 | 0.2 |
zval | FLOAT | required | min: 0, max: 100, step: 0.01 | 0.3 |
scale | FLOAT | required | min: 0.01, max: 10, step: 0.01 | 1 |
use_exact_fx | BOOLEAN | required | - | false |
relative_c2w | BOOLEAN | required | - | true |
use_viewer | BOOLEAN | required | - | false |
cameractrl_poses | CAMERACTRL_POSES | optional | - | - |
Outputs
| Index | Name | Type | Is List | Connection Reference |
|---|---|---|---|---|
0 | IMAGE | IMAGE | No | ["{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?