FLImaging 7.8.25.3
C_FLImaging_ImageProcessing_CContrast.h
1#pragma once
2
3#include "DefinitionsImgProcBase.h"
4
5#ifdef __cplusplus
6extern "C"
7{
8 #endif
9
10 typedef size_t __H_FLImaging_ImageProcessing_CContrast;
11
12
13 FL_EXPORT __E_FLImaging_EResult __cdecl __C_FLImaging_ImageProcessing_CContrast_CreateHandle(__H_FLImaging_ImageProcessing_CContrast& hContrast);
14
15
16 FL_EXPORT __E_FLImaging_EResult __cdecl __C_FLImaging_ImageProcessing_CContrast_Execute(__H_FLImaging_ImageProcessing_CContrast hContrast);
17
18
19 FL_EXPORT __E_FLImaging_EResult __cdecl __C_FLImaging_ImageProcessing_CContrast_SetSourceImage(__H_FLImaging_ImageProcessing_CContrast hContrast, __H_FLImaging_Base_CFLImage hFLImage);
20 FL_EXPORT __E_FLImaging_EResult __cdecl __C_FLImaging_ImageProcessing_CContrast_SetSourceROI(__H_FLImaging_ImageProcessing_CContrast hContrast, __H_FLImaging_Foundation_CFLRectD hFlrROI);
21 FL_EXPORT __E_FLImaging_EResult __cdecl __C_FLImaging_ImageProcessing_CContrast_SetSourcePivot(__H_FLImaging_ImageProcessing_CContrast hContrast, __H_FLImaging_Foundation_CFLPointD hFlpPivot);
22
23
24 FL_EXPORT __E_FLImaging_EResult __cdecl __C_FLImaging_ImageProcessing_CContrast_SetDestinationImage(__H_FLImaging_ImageProcessing_CContrast hContrast, __H_FLImaging_Base_CFLImage hFLImage);
25 FL_EXPORT __E_FLImaging_EResult __cdecl __C_FLImaging_ImageProcessing_CContrast_SetDestinationROI(__H_FLImaging_ImageProcessing_CContrast hContrast, __H_FLImaging_Foundation_CFLRectD hFlrROI);
26 FL_EXPORT __E_FLImaging_EResult __cdecl __C_FLImaging_ImageProcessing_CContrast_SetDestinationPivot(__H_FLImaging_ImageProcessing_CContrast hContrast, __H_FLImaging_Foundation_CFLPointD hFlpPivot);
27
28
29 FL_EXPORT const __H_FLImaging_Base_CFLImage __cdecl __C_FLImaging_ImageProcessing_CContrast_GetSourceImage(__H_FLImaging_ImageProcessing_CContrast hContrast);
30 FL_EXPORT const __H_FLImaging_Foundation_CFLRectD __cdecl __C_FLImaging_ImageProcessing_CContrast_GetSourceROI(__H_FLImaging_ImageProcessing_CContrast hContrast);
31 FL_EXPORT const __H_FLImaging_Foundation_CFLPointD __cdecl __C_FLImaging_ImageProcessing_CContrast_GetSourcePivot(__H_FLImaging_ImageProcessing_CContrast hContrast);
32
33 FL_EXPORT const __H_FLImaging_Base_CFLImage __cdecl __C_FLImaging_ImageProcessing_CContrast_GetDestinationImage(__H_FLImaging_ImageProcessing_CContrast hContrast);
34 FL_EXPORT const __H_FLImaging_Foundation_CFLRectD __cdecl __C_FLImaging_ImageProcessing_CContrast_GetDestinationROI(__H_FLImaging_ImageProcessing_CContrast hContrast);
35 FL_EXPORT const __H_FLImaging_Foundation_CFLPointD __cdecl __C_FLImaging_ImageProcessing_CContrast_GetDestinationPivot(__H_FLImaging_ImageProcessing_CContrast hContrast);
36
37
38 FL_EXPORT __E_FLImaging_EResult __cdecl __C_FLImaging_ImageProcessing_CContrast_SetCoefficient(__H_FLImaging_ImageProcessing_CContrast hContrast, double f64Coefficient);
39 FL_EXPORT double __cdecl __C_FLImaging_ImageProcessing_CContrast_GetCoefficient(__H_FLImaging_ImageProcessing_CContrast hContrast);
40
41
42 #ifdef __cplusplus
43}
44#endif