6 #include <fsdk/Types/Image.h> 7 #include <fsdk/Types/Result.h> 8 #include <fsdk/Types/Span.h> 12 #ifndef DOXYGEN_SHOULD_SKIP_THIS #define DECLARE_SMARTPTR(X)
Smart ptr declaration helper macro.
Definition: Def.h:70
SDK namespace.
Definition: IAGSEstimator.h:8
LightColoredClothesEstimator estimator interface. The estimator determines if the person wears light-...
Definition: ILightColoredClothesEstimator.h:50
A structure that encapsulates an action result enumeration.
Definition: Result.h:27
LightColoredClothesEstimator output structure. This structure contains.
Definition: ILightColoredClothesEstimator.h:28
Object system types and interfaces.
Base strong reference counted object interface.
Definition: IRefCounted.h:37
float lightScore
the score that the person wears light-colored clothes
Definition: ILightColoredClothesEstimator.h:39
virtual Result< FSDKError > validate(Span< const Image > images, Span< const Detection > detections, Span< Result< FSDKError >> errors) const noexcept=0
Validate input of multiple frames in a single call.
the person wears dark-colored clothes
float darkScore
the score that the person wears dark-colored clothes
Definition: ILightColoredClothesEstimator.h:40
virtual Result< FSDKError > estimate(const Image &image, const Detection &detection, LightColoredClothesEstimation &estimation) const noexcept=0
Estimate if the person wears light-colored clothes.
Type result
estimation result (
Definition: ILightColoredClothesEstimator.h:43
float unknownScore
the score that the estimator cannot determine if clothes are light or dark
Definition: ILightColoredClothesEstimator.h:41
Image.
Definition: Image.h:38
Type
LightColoredClothesEstimator output enum. This enum contains all possible estimation results...
Definition: ILightColoredClothesEstimator.h:33
the person wears light-colored clothes
could not determine if clothes are light or dark
Detection structure. Stores a detected bounding box within a source image rect.
Definition: Detection.h:10
Span. Not owning data view. It incapsulated pointer to the continuous array with one or more T objec...
Definition: Span.h:14