# HandTrackerExtensions

```csharp
public static class HandTrackerExtensions
```

This is a static class.

### Methods

| Name                                                                                              | Return Type                          | Description                                  |
| ------------------------------------------------------------------------------------------------- | ------------------------------------ | -------------------------------------------- |
| Load([HandTracker](/api-reference/handtracker.md), [StreamSource](/ui-reference/streamsource.md)) | List<[Hand](/api-reference/hand.md)> | Static. Detects hands in the current stream. |

### Example

The example shows how to detect hands with the `StreamSourceExtensions` class.

#### Detect hands in StreamSource

First, create a [StreamSource](/ui-reference/streamsource.md) component and a [Handtracker](/api-reference/handtracker.md) object.

```csharp
[SerializeField] private StreamSource _source;
private readonly HandTracker handTracker = new HandTracker();
```

Then,  use the `HandTrackerExtensions` class to detect hands in the specified [StreamSource](/ui-reference/streamsource.md).

```csharp
List<Hand> hands = _handTracker.Load(_source);
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://handtracking.lightbuzz.com/ui-reference/handtrackerextensions.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
