Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

DOCS-2599: Add MIME type step to image how-to and address feedback #3116

Merged
merged 1 commit into from
Jul 10, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 10 additions & 2 deletions docs/use-cases/image-data.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,9 @@ Configure a camera component, such as a [webcam](/components/camera/webcam/), on
**2. Enable the data management service**

In your camera component configuration panel, find the **Data capture** section.
Click **Add method** and follow the prompt to **Create a data management service**.
Click **Add method**.

When the **Create a data management service** prompt appears, click it to add the service to your machine.
You can leave the default data manager settings.

{{% /tablestep %}}
Expand All @@ -59,7 +61,13 @@ You can leave the default data manager settings.
**3. Capture data**

With the data management service configured on your machine, you can continue configuring how the camera component itself captures data.
In the **Data capture** panel of your camera's config, select **Read image** from the method selector, and set your desired capture frequency.

In the **Data capture** panel of your camera's config, select **Read image** from the method selector.

Set your desired capture frequency.
For example, set it to `0.05` to capture an image every 20 seconds.

Set the MIME type to your desired image format, for example `image/jpeg`.

{{% /tablestep %}}
{{% tablestep %}}
Expand Down
Loading