> For clean Markdown of any page, append .md to the page URL.
> For a complete documentation index, see https://docs.nvidia.com/holoscan/sdk-user-guide/llms.txt.
> For AI client integration (Claude Code, Cursor, etc.), connect to the MCP server at https://docs.nvidia.com/holoscan/sdk-user-guide/_mcp/server.

# holoscan::is_pose_almost_identity

> Check if given pose is almost identity.

#### Check if given pose is almost identity (1)

```cpp showLineNumbers={false}
template <typename K>
bool holoscan::is_pose_almost_identity(
    const Pose2<K> &pose
)
```

Check if given pose is almost identity.

**Returns:** True if the pose is very close to the identity transformation.

**Template parameters**

**`K`** `typename`

Scalar type.

---

**Parameters**

**`pose`** `const Pose2<K> &`

Pose to check.

---

#### Check if given pose is almost identity (2)

```cpp showLineNumbers={false}
template <typename K>
bool holoscan::is_pose_almost_identity(
    const Pose3<K> &pose
)
```

Check if given pose is almost identity.

**Returns:** True if the pose is very close to the identity transformation.

**Template parameters**

**`K`** `typename`

Scalar type.

---

**Parameters**

**`pose`** `const Pose3<K> &`

Pose to check.

---