IPSDK  4_1_0_2
IPSDK : Image Processing Software Development Kit
Line2d.h
Go to the documentation of this file.
1 // Line2d.h:
3 // ---------
4 //
14 
15 #ifndef __IPSDKMATH_LINE2D_H__
16 #define __IPSDKMATH_LINE2D_H__
17 
19 #include <IPSDKUtil/BaseTypes.h>
20 
21 namespace ipsdk {
22 namespace math {
23 
26 
29 IPSDKMATH_API bool
30 lineFromPoints(const ipReal64 x0, const ipReal64 y0,
31  const ipReal64 x1, const ipReal64 y1,
32  ipReal64& rho, ipReal64& theta);
33 
36 
37 } // end of namespace math
38 } // end of namespace ipsdk
39 
40 #endif // __IPSDKMATH_LINE2D_H__
Definition of import/export macro for library.
Main namespace for IPSDK library.
Definition: AlgorithmFunctionEfficiency.h:22
double ipReal64
Base types definition.
Definition: BaseTypes.h:57
IPSDKMATH_API bool lineFromPoints(const ipReal64 x0, const ipReal64 y0, const ipReal64 x1, const ipReal64 y1, ipReal64 &rho, ipReal64 &theta)
computation of line parameters from two points
Base types for multiplatform compatibility.
#define IPSDKMATH_API
Import/Export macro for library IPSDKMath.
Definition: IPSDKMathExports.h:27