6 #include <fsdk/Types/Image.h>
7 #include <fsdk/Types/Ref.h>
8 #include <fsdk/Types/Result.h>
9 #include <fsdk/Types/Span.h>
10 #include <fsdk/IPointBatch.h>
14 #ifndef DOXYGEN_SHOULD_SKIP_THIS
72 EstimationRequest request = EstimationRequest::estimateHeadCount) const noexcept = 0;
#define DECLARE_SMARTPTR(X)
Smart ptr declaration helper macro.
Definition: Def.h:56
A structure that encapsulates an action result enumeration.
Definition: Result.h:27
virtual CrowdEstimatorType getType() const noexcept=0
Returns a type of the estimator.
Get number of peoples (heads)
Definition: ICrowdEstimator.h:54
Crowd estimation structure.
Definition: ICrowdEstimator.h:37
size_t count
The number of peoples (heads) on the image.
Definition: ICrowdEstimator.h:38
virtual Result< FSDKError > estimate(const Image &image, const Rect &rect, CrowdEstimation &estimation, EstimationRequest request=EstimationRequest::estimateHeadCount) const noexcept=0
Estimates the crowd on the target image.
Single network mode - only Crowd estimation will be used.
Definition: ICrowdEstimator.h:28
Base strong reference counted object interface.
Definition: IRefCounted.h:37
Default type which is specified in config file.
Definition: ICrowdEstimator.h:27
Double network mode - Crowd + HeadDetector.
Definition: ICrowdEstimator.h:29
Crowd estimator interface.
Definition: ICrowdEstimator.h:48
Image.
Definition: Image.h:38
EstimationRequest
EstimationRequest lists all possible estimation types that ICrowdEstimator can estimate.
Definition: ICrowdEstimator.h:53
Get number of people (heads) and head coordinates.
Definition: ICrowdEstimator.h:55
FSDKError
Common SDK error codes.
Definition: FSDKError.h:17
virtual Result< FSDKError > validate(Span< const Image > images, Span< const Rect > rects, Span< Result< FSDKError >> errors, EstimationRequest request=EstimationRequest::estimateHeadCount) const noexcept=0
Validate input of multiple frames in a single function call.
Span. Not owning data view. It incapsulated pointer to the continuous array with one or more T objec...
Definition: Span.h:14
IPointBatchPtr points
Coordinates of people heads. Empty if not requested.
Definition: ICrowdEstimator.h:39
Reference counted object interface.
CrowdEstimatorType
CrowdEstimator type enumeration.
Definition: ICrowdEstimator.h:26