3#if _MSC_VER >= 1900 && defined(_M_X64)
5#include "ComputationalGraphAugmentationBase.h"
11 class CAugmentationParameters;
14 class CInternalAugmentationForObjectDetection;
17 class FL_EXPORT CComputationalGraphAugmentationForObjectDetection :
public CComputationalGraphAugmentationBase<T>
20 CComputationalGraphAugmentationForObjectDetection();
23 CComputationalGraphAugmentationForObjectDetection(
const CComputationalGraphAugmentationForObjectDetection<T>& cg);
27 CComputationalGraphAugmentationForObjectDetection(
const CComputationalBase<T>& cbOperand,
const CAugmentationParameters& apParams);
28 CComputationalGraphAugmentationForObjectDetection(
const CComputationalBase<T>& cbOperand,
const CAugmentationParameters* pApParams);
29 virtual ~CComputationalGraphAugmentationForObjectDetection();
31 virtual CComputationalBase<T>* Clone()
const override;
34 DeclareGetClassType();
35 SupportToDuplicateObjectWithoutCreateNewObject(CComputationalGraphAugmentationForObjectDetection, *
this);
39 DeclareGetSignletonObject(CComputationalGraphAugmentationForObjectDetection);
43 template <
typename T>
friend class CInternalAugmentationForObjectDetection;
46 #define CCGFAugmentationOD(...) (*(new CComputationalGraphAugmentationForObjectDetection<float>(__VA_ARGS__)))
47 #define CCGDAugmentationOD(...) (*(new CComputationalGraphAugmentationForObjectDetection<double>(__VA_ARGS__)))
49 #define CCGTAugmentationOD(T, ...) (*(new CComputationalGraphAugmentationForObjectDetection<T>(__VA_ARGS__)))