3 #if _MSC_VER >= 1900 && defined(_M_X64)
5 #include "ComputationalGraphAugmentationBase.h"
12 class FL_EXPORT CBackendLabel;
16 class CInternalAugmentationMaskOperationForSegmentation;
19 class FL_EXPORT CComputationalGraphAugmentationForSegmentation :
public CComputationalGraphAugmentationBase<T>
22 CComputationalGraphAugmentationForSegmentation();
25 CComputationalGraphAugmentationForSegmentation(
const CComputationalGraphAugmentationForSegmentation<T>& cg);
29 CComputationalGraphAugmentationForSegmentation(
const CComputationalBase<T>& cbOperand,
const CAugmentationParameters& apParams);
30 CComputationalGraphAugmentationForSegmentation(
const CComputationalBase<T>& cbOperand,
const CAugmentationParameters* pApParams);
31 virtual ~CComputationalGraphAugmentationForSegmentation();
33 virtual CComputationalBase<T>* Clone()
const override;
36 DeclareGetClassType();
37 SupportToDuplicateObjectWithoutCreateNewObject(CComputationalGraphAugmentationForSegmentation, *
this);
40 DeclareGetSignletonObject(CComputationalGraphAugmentationForSegmentation);
44 template <
typename T>
friend class CInternalAugmentationForSegmentation;
47 #define CCGFAugmentationSS(...) (*(new CComputationalGraphAugmentationForSegmentation<float>(__VA_ARGS__)))
48 #define CCGDAugmentationSS(...) (*(new CComputationalGraphAugmentationForSegmentation<double>(__VA_ARGS__)))
50 #define CCGTAugmentationSS(T, ...) (*(new CComputationalGraphAugmentationForSegmentation<T>(__VA_ARGS__)))
증강 파라미터 클래스 이미지를 변형하여 학습이미지에 다양성을 증가시켜 overfitting을 방지하고, 일반화된 특성을 학습할 수 있도록 합니다....
Definition AugmentationParameters.h:67
Definition AlgorithmAIBase.h:16