Public Member Functions | Public Attributes | List of all members
houghCorner Struct Reference

#include <HoughBaseAlg.h>

Public Member Functions

 houghCorner (double strengthTemp=0, double p0Temp=0, double p1Temp=0)
 
bool operator< (const houghCorner &houghCornerComp) const
 

Public Attributes

double strength = 0
 
double p0 = 0
 
double p1 = 0
 

Detailed Description

Definition at line 152 of file HoughBaseAlg.h.

Constructor & Destructor Documentation

houghCorner::houghCorner ( double  strengthTemp = 0,
double  p0Temp = 0,
double  p1Temp = 0 
)
inline

Definition at line 156 of file HoughBaseAlg.h.

157  {
158  strength = strengthTemp;
159  p0 = p0Temp;
160  p1 = p1Temp;
161  }
double strength
Definition: HoughBaseAlg.h:153

Member Function Documentation

bool houghCorner::operator< ( const houghCorner houghCornerComp) const
inline

Definition at line 164 of file HoughBaseAlg.h.

165  {
166  return (strength < houghCornerComp.strength);
167  }
double strength
Definition: HoughBaseAlg.h:153

Member Data Documentation

double houghCorner::p0 = 0

Definition at line 154 of file HoughBaseAlg.h.

double houghCorner::p1 = 0

Definition at line 155 of file HoughBaseAlg.h.

double houghCorner::strength = 0

Definition at line 153 of file HoughBaseAlg.h.


The documentation for this struct was generated from the following file: