tesseract  4.00.00dev
tesseract::LineHypothesis Struct Reference

#include <paragraphs_internal.h>

Public Member Functions

 LineHypothesis ()
 
 LineHypothesis (LineType line_type, const ParagraphModel *m)
 
 LineHypothesis (const LineHypothesis &other)
 
bool operator== (const LineHypothesis &other) const
 

Public Attributes

LineType ty
 
const ParagraphModelmodel
 

Detailed Description

Definition at line 79 of file paragraphs_internal.h.

Constructor & Destructor Documentation

◆ LineHypothesis() [1/3]

tesseract::LineHypothesis::LineHypothesis ( )
inline

◆ LineHypothesis() [2/3]

tesseract::LineHypothesis::LineHypothesis ( LineType  line_type,
const ParagraphModel m 
)
inline

Definition at line 81 of file paragraphs_internal.h.

82  : ty(line_type), model(m) {}
const ParagraphModel * model

◆ LineHypothesis() [3/3]

tesseract::LineHypothesis::LineHypothesis ( const LineHypothesis other)
inline

Definition at line 83 of file paragraphs_internal.h.

84  : ty(other.ty), model(other.model) {}
const ParagraphModel * model

Member Function Documentation

◆ operator==()

bool tesseract::LineHypothesis::operator== ( const LineHypothesis other) const
inline

Definition at line 86 of file paragraphs_internal.h.

86  {
87  return ty == other.ty && model == other.model;
88  }
const ParagraphModel * model

Member Data Documentation

◆ model

const ParagraphModel* tesseract::LineHypothesis::model

Definition at line 91 of file paragraphs_internal.h.

◆ ty

LineType tesseract::LineHypothesis::ty

Definition at line 90 of file paragraphs_internal.h.


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