/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Details and path tracking information for a single time a person's path is
* tracked in a video. Amazon Rekognition operations that track people's paths
* return an array of For more information, see
* GetPersonTracking in the Amazon Rekognition Developer Guide. PersonDetection
objects with elements for each
* time a person's path is tracked in a video. See
* Also:
AWS
* API Reference
The time, in milliseconds from the start of the video, that the person's path
* was tracked. Note that Timestamp
is not guaranteed to be accurate
* to the individual frame where the person's path first appears.
The time, in milliseconds from the start of the video, that the person's path
* was tracked. Note that Timestamp
is not guaranteed to be accurate
* to the individual frame where the person's path first appears.
The time, in milliseconds from the start of the video, that the person's path
* was tracked. Note that Timestamp
is not guaranteed to be accurate
* to the individual frame where the person's path first appears.
The time, in milliseconds from the start of the video, that the person's path
* was tracked. Note that Timestamp
is not guaranteed to be accurate
* to the individual frame where the person's path first appears.
Details about a person whose path was tracked in a video.
*/ inline const PersonDetail& GetPerson() const{ return m_person; } /** *Details about a person whose path was tracked in a video.
*/ inline bool PersonHasBeenSet() const { return m_personHasBeenSet; } /** *Details about a person whose path was tracked in a video.
*/ inline void SetPerson(const PersonDetail& value) { m_personHasBeenSet = true; m_person = value; } /** *Details about a person whose path was tracked in a video.
*/ inline void SetPerson(PersonDetail&& value) { m_personHasBeenSet = true; m_person = std::move(value); } /** *Details about a person whose path was tracked in a video.
*/ inline PersonDetection& WithPerson(const PersonDetail& value) { SetPerson(value); return *this;} /** *Details about a person whose path was tracked in a video.
*/ inline PersonDetection& WithPerson(PersonDetail&& value) { SetPerson(std::move(value)); return *this;} private: long long m_timestamp; bool m_timestampHasBeenSet = false; PersonDetail m_person; bool m_personHasBeenSet = false; }; } // namespace Model } // namespace Rekognition } // namespace Aws