Skip to content

Commit

Permalink
doxygen ccmain/cubeclassifier.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
jimregan committed Jul 20, 2015
1 parent f842850 commit 5c94f12
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions ccmain/cubeclassifier.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@ CubeClassifier::CubeClassifier(tesseract::Tesseract* tesseract)
CubeClassifier::~CubeClassifier() {
}

// Classifies the given [training] sample, writing to results.
// See ShapeClassifier for a full description.
/// Classifies the given [training] sample, writing to results.
/// See ShapeClassifier for a full description.
int CubeClassifier::UnicharClassifySample(
const TrainingSample& sample, Pix* page_pix, int debug,
UNICHAR_ID keep_this, GenericVector<UnicharRating>* results) {
Expand Down Expand Up @@ -70,7 +70,7 @@ int CubeClassifier::UnicharClassifySample(
return results->size();
}

// Provides access to the ShapeTable that this classifier works with.
/** Provides access to the ShapeTable that this classifier works with. */
const ShapeTable* CubeClassifier::GetShapeTable() const {
return &shape_table_;
}
Expand All @@ -84,8 +84,8 @@ CubeTessClassifier::~CubeTessClassifier() {
delete pruner_;
}

// Classifies the given [training] sample, writing to results.
// See ShapeClassifier for a full description.
/// Classifies the given [training] sample, writing to results.
/// See ShapeClassifier for a full description.
int CubeTessClassifier::UnicharClassifySample(
const TrainingSample& sample, Pix* page_pix, int debug,
UNICHAR_ID keep_this, GenericVector<UnicharRating>* results) {
Expand Down Expand Up @@ -123,7 +123,7 @@ int CubeTessClassifier::UnicharClassifySample(
return results->size();
}

// Provides access to the ShapeTable that this classifier works with.
/** Provides access to the ShapeTable that this classifier works with. */
const ShapeTable* CubeTessClassifier::GetShapeTable() const {
return &shape_table_;
}
Expand Down

0 comments on commit 5c94f12

Please sign in to comment.