Belle II Software development
QuadraticLegendre< AHitPointerType, AHitDecisionAlgorithm, pDivisions, qDivisions > Class Template Reference

Hough Tree for finding StereoHits with using CDCRecoHit3D as the item type. More...

#include <QuadraticLegendre.h>

Inheritance diagram for QuadraticLegendre< AHitPointerType, AHitDecisionAlgorithm, pDivisions, qDivisions >:
DebugableSimpleBoxDivisionHoughTree< AHitPointerType, AHitDecisionAlgorithm, 3, 3 > SimpleBoxDivisionHoughTree< AHitPointerType, AHitDecisionAlgorithm, divisionX, divisionY > BoxDivisionHoughTree< AHitPointerType, AHitDecisionAlgorithm::HoughBox, divisionX, divisionY >

Public Types

using DecisionAlgorithm = AHitDecisionAlgorithm
 typedef of the templated AHitDecisionAlgorithm; used to reach methods defined in the algorithm e.g. debugLine, centerX, centerY etc.
 
using BoxDivision
 Type of the box division strategy.
 
using HoughTree
 Type of the fast hough tree structure.
 
using Type
 Type of the coordinate I.
 
using HasType
 Predicate that the given type is indeed a coordinate of the hough space.
 
using TypeIndex
 Function to get the coordinate index from its type.
 
using Node
 Type of the nodes used in the tree for the search.
 

Public Member Functions

 QuadraticLegendre ()
 Constructor using the given maximal level setting the maximal values.
 
void writeDebugInfoToFile (const std::string &filename)
 Write out some debug information to a ROOT file with the given name.
 
void initialize ()
 Initialize the tree with the given values.
 
std::vector< std::pair< HoughBox, std::vector< AHitPointerType > > > findSingleBest (const TrackingUtilities::Weight &minWeight)
 Find only the leave with the highest weight = number of items.
 
float getMaximumX () const
 Return the maximum value in x direction.
 
float getMaximumY () const
 Return the maximum value in y direction.
 
Width< 0 > getOverlapX () const
 Return the overlap in x direction.
 
Width< 1 > getOverlapY () const
 Return the overlap in y direction.
 
size_t getDivision (size_t i) const
 Getter the number of divisions at each level for coordinate index I.
 
void constructArray (double lowerBound, double upperBound, Width< I > nBinOverlap=0, Width< I > nBinWidth=0)
 Construct the discrete value array at coordinate index I.
 
void assignArray (Array< I > array, Width< I > overlap=0)
 Provide an externally constructed array by coordinate index.
 
std::enable_if_t< HasType< T >::value, void > assignArray (Array< TypeIndex< T >::value > array, Width< TypeIndex< T >::value > overlap=0)
 Provide an externally constructed array by coordinate type.
 
void seed (const AItemPtrs &items)
 Prepare the leave finding by filling the top node with given hits.
 
void fell ()
 Terminates the processing by striping all hit information from the tree.
 
void raze ()
 Release all memory that the tree acquired during the runs.
 
HoughTreegetTree () const
 Getter for the tree used in the search in the hough plane.
 
int getMaxLevel () const
 Getter for the currently set maximal level.
 
void setMaxLevel (int maxLevel)
 Setter maximal level of the hough tree.
 
int getSectorLevelSkip () const
 Getter for number of levels to skip in first level to form a finer sectored hough space.
 
void setSectorLevelSkip (int sectorLevelSkip)
 Setter for number of levels to skip in first level to form a finer sectored hough space.
 
const Array< I > & getArray () const
 Getter for the array of discrete value for coordinate I.
 

Static Public Member Functions

static void drawDebugPlot (const std::vector< TrackingUtilities::CDCRecoHit3D > &allHits, const std::vector< TrackingUtilities::CDCRecoHit3D > &foundHits, const typename AHitDecisionAlgorithm::HoughBox &node)
 Draw the results to a ROOT TCanvas.
 

Private Types

using Super
 Super type.
 
using HoughBox
 The HoughBox we use.
 
using Width
 Type of the width in coordinate I.
 
using Array
 Type of the discrete value array to coordinate index I.
 
using Arrays
 Tuple type of the discrete value arrays.
 

Private Member Functions

void fillAll ()
 Fill the tree till all nodes are touched once.
 
HoughBox constructHoughPlaneImpl (const std::index_sequence< Is... > &is)
 Construct the box of the top node of the tree. Implementation unroling the indices.
 
HoughBox constructHoughPlane ()
 Construct the box of the top node of the tree.
 

Private Attributes

float m_maximumX
 The maximum value in X direction.
 
float m_maximumY
 The maximum value in y direction.
 
Width< 0 > m_overlapX
 The overlap in X direction.
 
Width< 1 > m_overlapY
 The overlap in Y direction.
 
const std::array< size_t, sizeof ...(divisions)> m_divisions
 Array of the number of divisions at each level.
 
std::unique_ptr< HoughTreem_houghTree
 Dynamic hough tree structure traversed in the leaf search.
 
int m_maxLevel
 Number of the maximum tree level.
 
int m_sectorLevelSkip
 Number of levels to skip in first level to form a finer sectored hough space.
 
HoughBox::Delta m_overlaps
 An tuple of division overlaps in each coordinate.
 
Arrays m_arrays
 A tuple of value arrays providing the memory for the discrete bin bounds.
 

Detailed Description

template<class AHitPointerType, class AHitDecisionAlgorithm, size_t pDivisions = 3, size_t qDivisions = 3>
class Belle2::TrackFindingCDC::QuadraticLegendre< AHitPointerType, AHitDecisionAlgorithm, pDivisions, qDivisions >

Hough Tree for finding StereoHits with using CDCRecoHit3D as the item type.

This implementation uses the HitInQuadraticBox decision algorithm with 3 divisions for each step. This class is only an alias. The real algorithm can be found in SimpleBoxDivisionHoughTree.

Definition at line 27 of file QuadraticLegendre.h.

Member Typedef Documentation

◆ Array

using Array
privateinherited

Type of the discrete value array to coordinate index I.

Definition at line 77 of file BoxDivisionHoughTree.h.

◆ Arrays

using Arrays
privateinherited

Tuple type of the discrete value arrays.

Definition at line 80 of file BoxDivisionHoughTree.h.

◆ BoxDivision

using BoxDivision
inherited

Type of the box division strategy.

Definition at line 41 of file BoxDivisionHoughTree.h.

◆ DecisionAlgorithm

template<class AHitPointerType, class AHitDecisionAlgorithm, size_t pDivisions = 3, size_t qDivisions = 3>
using DecisionAlgorithm = AHitDecisionAlgorithm

typedef of the templated AHitDecisionAlgorithm; used to reach methods defined in the algorithm e.g. debugLine, centerX, centerY etc.

Definition at line 41 of file QuadraticLegendre.h.

◆ HasType

using HasType
inherited

Predicate that the given type is indeed a coordinate of the hough space.

Definition at line 52 of file BoxDivisionHoughTree.h.

◆ HoughBox

using HoughBox
privateinherited

The HoughBox we use.

Definition at line 27 of file SimpleBoxDivisionHoughTree.h.

◆ HoughTree

using HoughTree
inherited

Type of the fast hough tree structure.

Definition at line 44 of file BoxDivisionHoughTree.h.

◆ Node

using Node
inherited

Type of the nodes used in the tree for the search.

Definition at line 63 of file BoxDivisionHoughTree.h.

◆ Super

template<class AHitPointerType, class AHitDecisionAlgorithm, size_t pDivisions = 3, size_t qDivisions = 3>
using Super
private
Initial value:
AHitDecisionAlgorithm,
pDivisions,
qDivisions>
A convenience class for adding debug information to a Simple Hough Tree.

Super type.

Definition at line 34 of file QuadraticLegendre.h.

◆ Type

using Type
inherited

Type of the coordinate I.

Definition at line 48 of file BoxDivisionHoughTree.h.

◆ TypeIndex

using TypeIndex
inherited

Function to get the coordinate index from its type.

Definition at line 56 of file BoxDivisionHoughTree.h.

◆ Width

using Width
privateinherited

Type of the width in coordinate I.

Definition at line 31 of file SimpleBoxDivisionHoughTree.h.

Constructor & Destructor Documentation

◆ QuadraticLegendre()

template<class AHitPointerType, class AHitDecisionAlgorithm, size_t pDivisions = 3, size_t qDivisions = 3>
QuadraticLegendre ( )
inline

Constructor using the given maximal level setting the maximal values.

Definition at line 44 of file QuadraticLegendre.h.

45 : Super(2, 2, 1, 1)
46 {
47 }

Member Function Documentation

◆ assignArray() [1/2]

void assignArray ( Array< I > array,
Width< I > overlap = 0 )
inlineinherited

Provide an externally constructed array by coordinate index.

Definition at line 128 of file BoxDivisionHoughTree.h.

129 {
130 std::get<I>(m_arrays) = std::move(array);
131 std::get<I>(m_overlaps) = overlap;
132
133 // In case of a discrete axes, check whether the size of the array is sensible
134 // such that the bin width at the highest granularity level is a whole number given the overlap.
135 if (std::is_integral<Width<I> >::value) {
136 const int division = getDivision(I);
137 const int granularityLevel = m_maxLevel + m_sectorLevelSkip;
138 const long int nBins = std::pow(division, granularityLevel);
139 const long int nPositions = std::get<I>(m_arrays).size();
140 const long int nWidthTimeNBins = nPositions - 1 + (nBins - 1) * overlap;
141
142 B2ASSERT("Not enough positions in array to cover all bins.\n"
143 "Expected: positions = " << nBins - (nBins - 1) * overlap + 1 << " at least.\n"
144 "Actual: positions = " << nPositions << " (overlap = " << overlap << ", bins = " << nBins << ")\n",
145 nWidthTimeNBins >= nBins);
146
147 B2ASSERT("Number of positions in array introduces inhomogeneous width at the highest granularity level.\n"
148 "Expected: positions = 'width * bins - (bins - 1) * overlap + 1'\n"
149 "Actual: positions = " << nPositions << " (overlap = " << overlap << ", bins = " << nBins << ")\n",
150 nWidthTimeNBins % nBins == 0);
151 }
152 }

◆ assignArray() [2/2]

std::enable_if_t< HasType< T >::value, void > assignArray ( Array< TypeIndex< T >::value > array,
Width< TypeIndex< T >::value > overlap = 0 )
inlineinherited

Provide an externally constructed array by coordinate type.

Definition at line 157 of file BoxDivisionHoughTree.h.

158 {
159 assignArray<TypeIndex<T>::value>(std::move(array), overlap);
160 }

◆ constructArray()

void constructArray ( double lowerBound,
double upperBound,
Width< I > nBinOverlap = 0,
Width< I > nBinWidth = 0 )
inlineinherited

Construct the discrete value array at coordinate index I.

This function is only applicable for discrete axes. For continuous axes assignArray should be call with an array containing only the lower and upper bound of the axes range and an optional overlap.

Parameters
lowerBoundLower bound of the value range
upperBoundUpper bound of the value range
nBinOverlapOverlap of neighboring bins. Default is no overlap. Usually this is counted in number of discrete values
nBinWidthWidth of the bins at lowest level. Default is width of 1. Usually this is counted in numbers of discrete values

Definition at line 104 of file BoxDivisionHoughTree.h.

108 {
109 static_assert(std::is_integral<Width<I> >::value, "Method only applicable to discrete axes");
110 const size_t division = getDivision(I);
111 const int granularityLevel = m_maxLevel + m_sectorLevelSkip;
112 const size_t nBins = std::pow(division, granularityLevel);
113
114 if (nBinWidth == 0) {
115 nBinWidth = nBinOverlap + 1;
116 }
117
118 B2ASSERT("Width " << nBinWidth << "is not bigger than overlap " << nBinOverlap,
119 nBinOverlap < nBinWidth);
120
121 const auto nPositions = (nBinWidth - nBinOverlap) * nBins + nBinOverlap + 1;
122 std::get<I>(m_arrays) = TrackingUtilities::linspace<float>(lowerBound, upperBound, nPositions);
123 std::get<I>(m_overlaps) = nBinOverlap;
124 }

◆ constructHoughPlane()

HoughBox constructHoughPlane ( )
inlineprivateinherited

Construct the box of the top node of the tree.

Definition at line 245 of file BoxDivisionHoughTree.h.

246 {
247 return constructHoughPlaneImpl(std::make_index_sequence<sizeof...(divisions)>());
248 }

◆ constructHoughPlaneImpl()

HoughBox constructHoughPlaneImpl ( const std::index_sequence< Is... > & is)
inlineprivateinherited

Construct the box of the top node of the tree. Implementation unroling the indices.

Definition at line 239 of file BoxDivisionHoughTree.h.

240 {
241 return HoughBox(Type<Is>::getRange(std::get<Is>(m_arrays))...);
242 }

◆ drawDebugPlot()

static void drawDebugPlot ( const std::vector< TrackingUtilities::CDCRecoHit3D > & allHits,
const std::vector< TrackingUtilities::CDCRecoHit3D > & foundHits,
const typename AHitDecisionAlgorithm::HoughBox & node )
inlinestaticinherited

Draw the results to a ROOT TCanvas.

Definition at line 92 of file DebugableSimpleBoxDivisionHoughTree.h.

95 {
96 TGraph* allHitsGraph = new TGraph();
97 allHitsGraph->SetLineWidth(2);
98 allHitsGraph->SetLineColor(9);
99
100 for (const TrackingUtilities::CDCRecoHit3D& recoHit3D : allHits) {
101 const ROOT::Math::XYZVector& recoPos3D = recoHit3D.getRecoPos3D();
102 const double R = std::sqrt(recoPos3D.x() * recoPos3D.x() + recoPos3D.y() * recoPos3D.y());
103 const double Z = recoPos3D.z();
104 allHitsGraph->SetPoint(allHitsGraph->GetN(), R, Z);
105 }
106
107 static int nevent(0);
108 TCanvas canv("trackCanvas", "CDC stereo hits in an event", 0, 0, 1600, 1200);
109 canv.cd();
110 allHitsGraph->Draw("APL*");
111 allHitsGraph->GetXaxis()->SetLimits(0, 120);
112 allHitsGraph->GetYaxis()->SetRangeUser(-180, 180);
113
114 TGraph* foundHitsGraph = new TGraph();
115 foundHitsGraph->SetMarkerStyle(8);
116 foundHitsGraph->SetMarkerColor(2);
117
118 for (const TrackingUtilities::CDCRecoHit3D& recoHit3D : foundHits) {
119 const ROOT::Math::XYZVector& recoPos3D = recoHit3D.getRecoPos3D();
120 const double R = std::sqrt(recoPos3D.x() * recoPos3D.x() + recoPos3D.y() * recoPos3D.y());
121 const double Z = recoPos3D.z();
122 foundHitsGraph->SetPoint(foundHitsGraph->GetN(), R, Z);
123 }
124 foundHitsGraph->Draw("P");
125
126 const double xMean = (node.getLowerX() + node.getUpperX()) / 2.0; //Z0 or Z1
127 const double yMean = (node.getLowerY() + node.getUpperY()) / 2.0; //tanLambda or Z2
128 const double xLow = node.getLowerX();
129 const double yLow = node.getLowerY();
130 const double xHigh = node.getUpperX();
131 const double yHigh = node.getUpperY();
132
133 TF1* candidateLL = new TF1("candLL", AInBoxAlgorithm::BoxAlgorithm::debugLine(), 0, 120);
134 TF1* candidateLH = new TF1("candLH", AInBoxAlgorithm::BoxAlgorithm::debugLine(), 0, 120);
135 TF1* candidateHL = new TF1("candHL", AInBoxAlgorithm::BoxAlgorithm::debugLine(), 0, 120);
136 TF1* candidateHH = new TF1("candHH", AInBoxAlgorithm::BoxAlgorithm::debugLine(), 0, 120);
137 TF1* candidateMean = new TF1("candMean", AInBoxAlgorithm::BoxAlgorithm::debugLine(), 0, 120);
138
139 candidateLL->SetParameters(xLow, yLow);
140 candidateLH->SetParameters(xLow, yHigh);
141 candidateHL->SetParameters(xHigh, yLow);
142 candidateHH->SetParameters(xHigh, yHigh);
143 candidateMean->SetParameters(xMean, yMean);
144
145 candidateLL->SetLineColor(9);
146 candidateLH->SetLineColor(30);
147 candidateHL->SetLineColor(46);
148 candidateHH->SetLineColor(41);
149 candidateMean->SetLineColor(2);
150
151 candidateLL->Draw("same");
152 candidateHL->Draw("same");
153 candidateLH->Draw("same");
154 candidateHH->Draw("same");
155 candidateMean->Draw("same");
156 canv.SaveAs(Form("CDCRLHits_%i.png", nevent));
157 nevent++;
158 }
double R
typedef autogenerated by FFTW

◆ fell()

void fell ( )
inlineinherited

Terminates the processing by striping all hit information from the tree.

Definition at line 181 of file BoxDivisionHoughTree.h.

182 {
183 HoughTree* const tree = this->m_houghTree.get();
184 if (tree != nullptr) {
185 tree->fell();
186 }
187 }

◆ fillAll()

void fillAll ( )
inlineprivateinherited

Fill the tree till all nodes are touched once.

This is not for finding results, but for debug reasons.

Definition at line 165 of file DebugableSimpleBoxDivisionHoughTree.h.

166 {
167 AInBoxAlgorithm inBoxAlgorithm;
168
169 auto isLeaf = [this](typename Super::Node * node) {
170 return (node->getLevel() > this->getMaxLevel());
171 };
172
173 this->getTree()->fillWalk(inBoxAlgorithm, isLeaf);
174 }

◆ findSingleBest()

std::vector< std::pair< HoughBox, std::vector< AHitPointerType > > > findSingleBest ( const TrackingUtilities::Weight & minWeight)
inlineinherited

Find only the leave with the highest weight = number of items.

Definition at line 58 of file SimpleBoxDivisionHoughTree.h.

59 {
60 AInBoxAlgorithm inBoxAlgorithm;
61 auto skipLowWeightNode = [minWeight](const typename Super::Node * node) {
62 return not(node->getWeight() >= minWeight);
63 };
64 auto found = this->getTree()->findHeaviestLeafSingle(inBoxAlgorithm, this->getMaxLevel(), skipLowWeightNode);
65
66 std::vector<std::pair<HoughBox, std::vector<AHitPtr>>> result;
67 if (found) {
68 // Move the found content over. unique_ptr still destroys the left overs.
69 result.push_back(std::move(*found));
70 }
71 return result;
72 }

◆ getArray()

const Array< I > & getArray ( ) const
inlineinherited

Getter for the array of discrete value for coordinate I.

Definition at line 231 of file BoxDivisionHoughTree.h.

232 {
233 return std::get<I>(m_arrays);
234 }

◆ getDivision()

size_t getDivision ( size_t i) const
inlineinherited

Getter the number of divisions at each level for coordinate index I.

Definition at line 84 of file BoxDivisionHoughTree.h.

85 {
86 return m_divisions[i];
87 }

◆ getMaximumX()

float getMaximumX ( ) const
inlineinherited

Return the maximum value in x direction.

Definition at line 75 of file SimpleBoxDivisionHoughTree.h.

76 {
77 return m_maximumX;
78 }

◆ getMaximumY()

float getMaximumY ( ) const
inlineinherited

Return the maximum value in y direction.

Definition at line 81 of file SimpleBoxDivisionHoughTree.h.

82 {
83 return m_maximumY;
84 }

◆ getMaxLevel()

int getMaxLevel ( ) const
inlineinherited

Getter for the currently set maximal level.

Definition at line 206 of file BoxDivisionHoughTree.h.

207 {
208 return m_maxLevel;
209 }

◆ getOverlapX()

Width< 0 > getOverlapX ( ) const
inlineinherited

Return the overlap in x direction.

Definition at line 87 of file SimpleBoxDivisionHoughTree.h.

88 {
89 return m_overlapX;
90 }

◆ getOverlapY()

Width< 1 > getOverlapY ( ) const
inlineinherited

Return the overlap in y direction.

Definition at line 93 of file SimpleBoxDivisionHoughTree.h.

94 {
95 return m_overlapY;
96 }

◆ getSectorLevelSkip()

int getSectorLevelSkip ( ) const
inlineinherited

Getter for number of levels to skip in first level to form a finer sectored hough space.

Definition at line 218 of file BoxDivisionHoughTree.h.

219 {
220 return m_sectorLevelSkip;
221 }

◆ getTree()

HoughTree * getTree ( ) const
inlineinherited

Getter for the tree used in the search in the hough plane.

Definition at line 200 of file BoxDivisionHoughTree.h.

201 {
202 return m_houghTree.get();
203 }

◆ initialize()

void initialize ( )
inlineinherited

Initialize the tree with the given values.

Definition at line 48 of file SimpleBoxDivisionHoughTree.h.

49 {
50 Super::template constructArray<0>(-getMaximumX(), getMaximumX(), getOverlapX());
51 Super::template constructArray<1>(-getMaximumY(), getMaximumY(), getOverlapY());
52
53 Super::initialize();
54 }

◆ raze()

void raze ( )
inlineinherited

Release all memory that the tree acquired during the runs.

Definition at line 190 of file BoxDivisionHoughTree.h.

191 {
192 HoughTree* const tree = this->m_houghTree.get();
193 if (tree != nullptr) {
194 tree->raze();
195 }
196 }

◆ seed()

void seed ( const AItemPtrs & items)
inlineinherited

Prepare the leave finding by filling the top node with given hits.

Definition at line 174 of file BoxDivisionHoughTree.h.

175 {
176 if (not m_houghTree) initialize();
177 m_houghTree->seed(items);
178 }

◆ setMaxLevel()

void setMaxLevel ( int maxLevel)
inlineinherited

Setter maximal level of the hough tree.

Definition at line 212 of file BoxDivisionHoughTree.h.

213 {
214 m_maxLevel = maxLevel;
215 }

◆ setSectorLevelSkip()

void setSectorLevelSkip ( int sectorLevelSkip)
inlineinherited

Setter for number of levels to skip in first level to form a finer sectored hough space.

Definition at line 224 of file BoxDivisionHoughTree.h.

225 {
226 m_sectorLevelSkip = sectorLevelSkip;
227 }

◆ writeDebugInfoToFile()

void writeDebugInfoToFile ( const std::string & filename)
inlineinherited

Write out some debug information to a ROOT file with the given name.

This must be done before felling the tree. Attention: This will delete a ROOT file with the same name if already present.

Parameters
filenameThe ROOT filename.

Definition at line 43 of file DebugableSimpleBoxDivisionHoughTree.h.

44 {
45 fillAll();
46
47 TFile openedRootFile(filename.c_str(), "RECREATE");
48 TTree weightTTree("weightTree", "A tree with the weights of the box items.");
49 TTree eventTTree("eventTree", "A tree with event information.");
50
51 double lowerX, upperX, lowerY, upperY, weight, level;
52 weightTTree.Branch("lowerX", &lowerX);
53 weightTTree.Branch("upperY", &upperY);
54 weightTTree.Branch("lowerY", &lowerY);
55 weightTTree.Branch("upperX", &upperX);
56 weightTTree.Branch("weight", &weight);
57 weightTTree.Branch("level", &level);
58
59 double lowerLimX = -Super::getMaximumX();
60 double upperLimX = Super::getMaximumX();
61 double lowerLimY = -Super::getMaximumY();
62 double upperLimY = Super::getMaximumY();
63 double maxLevel = Super::getMaxLevel();
64 eventTTree.Branch("lowerLimX", &lowerLimX);
65 eventTTree.Branch("upperLimX", &upperLimX);
66 eventTTree.Branch("lowerLimY", &lowerLimY);
67 eventTTree.Branch("upperLimY", &upperLimY);
68 eventTTree.Branch("maxLevel", &maxLevel);
69 eventTTree.Fill();
70 eventTTree.Write();
71
72 auto walker = [&](const typename Super::Node * node) -> bool {
73 lowerX = node->getLowerX();
74 upperX = node->getUpperX();
75 upperY = node->getUpperY();
76 weight = node->getWeight();
77 level = node->getLevel();
78
79 weightTTree.Fill();
80
81 // Always return true, as we want to access every node
82 return true;
83 };
84 Super::getTree()->walk(walker);
85
86 weightTTree.Write();
87 openedRootFile.Write();
88 openedRootFile.Close();
89 }

Member Data Documentation

◆ m_arrays

Arrays m_arrays
privateinherited

A tuple of value arrays providing the memory for the discrete bin bounds.

Definition at line 267 of file BoxDivisionHoughTree.h.

◆ m_divisions

const std::array<size_t, sizeof ...(divisions)> m_divisions
privateinherited

Array of the number of divisions at each level.

Definition at line 252 of file BoxDivisionHoughTree.h.

252{{divisions ...}};

◆ m_houghTree

std::unique_ptr<HoughTree> m_houghTree
privateinherited

Dynamic hough tree structure traversed in the leaf search.

Definition at line 255 of file BoxDivisionHoughTree.h.

◆ m_maximumX

float m_maximumX
privateinherited

The maximum value in X direction.

Definition at line 100 of file SimpleBoxDivisionHoughTree.h.

◆ m_maximumY

float m_maximumY
privateinherited

The maximum value in y direction.

Definition at line 103 of file SimpleBoxDivisionHoughTree.h.

◆ m_maxLevel

int m_maxLevel
privateinherited

Number of the maximum tree level.

Definition at line 258 of file BoxDivisionHoughTree.h.

◆ m_overlaps

HoughBox::Delta m_overlaps
privateinherited

An tuple of division overlaps in each coordinate.

Definition at line 264 of file BoxDivisionHoughTree.h.

◆ m_overlapX

Width<0> m_overlapX
privateinherited

The overlap in X direction.

Definition at line 106 of file SimpleBoxDivisionHoughTree.h.

◆ m_overlapY

Width<1> m_overlapY
privateinherited

The overlap in Y direction.

Definition at line 109 of file SimpleBoxDivisionHoughTree.h.

◆ m_sectorLevelSkip

int m_sectorLevelSkip
privateinherited

Number of levels to skip in first level to form a finer sectored hough space.

Definition at line 261 of file BoxDivisionHoughTree.h.


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