3#if _MSC_VER >= 1900 && defined(_M_X64)
5#include "ComputationalGraphAugmentationBase.h"
14 class CInternalAugmentationForAnomalyDetectionTrain;
17 class FL_EXPORT CComputationalGraphAugmentationForAnomalyDetectionTrain :
public CComputationalGraphAugmentationBase<T>
20 CComputationalGraphAugmentationForAnomalyDetectionTrain();
23 CComputationalGraphAugmentationForAnomalyDetectionTrain(
const CComputationalGraphAugmentationForAnomalyDetectionTrain<T>& cg);
27 CComputationalGraphAugmentationForAnomalyDetectionTrain(
const CComputationalBase<T>& cbOperand,
const CAugmentationParameters& apParams);
28 CComputationalGraphAugmentationForAnomalyDetectionTrain(
const CComputationalBase<T>& cbOperand,
const CAugmentationParameters* pApParams);
29 virtual ~CComputationalGraphAugmentationForAnomalyDetectionTrain();
31 virtual CComputationalBase<T>* Clone()
const override;
33 virtual const CResult GetBinaryData(Base::CFLData& fldBinary,
bool bSuperClass =
false, int32_t i32Version = -1,
bool bDumpMode =
false)
const override;
34 virtual const CResult GetBinaryData(Base::CFLData* pFldBinary,
bool bSuperClass =
false, int32_t i32Version = -1,
bool bDumpMode =
false)
const override;
36 virtual const CResult SetBinaryData(
const Base::CFLData& fldBinary, int64_t* pI64Offset =
nullptr)
override;
37 virtual const CResult SetBinaryData(
const Base::CFLData* pFldBinary, int64_t* pI64Offset =
nullptr)
override;
39 DeclareGetClassType();
40 SupportToDuplicateObjectWithoutCreateNewObject(CComputationalGraphAugmentationForAnomalyDetectionTrain, *
this);
44 DeclareGetSignletonObject(CComputationalGraphAugmentationForAnomalyDetectionTrain);
48 template <
typename T>
friend class CInternalAugmentationForAnomalyDetectionTrain;
51 #define CCGFAugmentationADTrain(...) (*(new CComputationalGraphAugmentationForAnomalyDetectionTrain<float>(__VA_ARGS__)))
52 #define CCGDAugmentationADTrain(...) (*(new CComputationalGraphAugmentationForAnomalyDetectionTrain<double>(__VA_ARGS__)))
54 #define CCGTAugmentationADTrain(T, ...) (*(new CComputationalGraphAugmentationForAnomalyDetectionTrain<T>(__VA_ARGS__)))
Augmentation Parameter Class By transforming the images, it increases the diversity of training image...
Definition AugmentationParameters.h:69
Definition AlgorithmAIBase.h:18