mirror of
https://github.com/tesseract-ocr/tesseract.git
synced 2025-01-21 08:43:03 +08:00
Fix CID 1405673 (Uninitialized members)
Signed-off-by: Stefan Weil <sw@weilnetz.de>
This commit is contained in:
parent
85e8529a2e
commit
3b030b4aeb
@ -851,7 +851,7 @@ class ColPartition : public ELIST2_LINK {
|
|||||||
// Median width of blobs in this partition.
|
// Median width of blobs in this partition.
|
||||||
int median_width_ = 0;
|
int median_width_ = 0;
|
||||||
// blob_region_type_ for the blobs in this partition.
|
// blob_region_type_ for the blobs in this partition.
|
||||||
BlobRegionType blob_type_;
|
BlobRegionType blob_type_ = BRT_NOISE;
|
||||||
BlobTextFlowType flow_ = BTFT_NONE; // Quality of text flow.
|
BlobTextFlowType flow_ = BTFT_NONE; // Quality of text flow.
|
||||||
// Total of GoodTextBlob results for all blobs in the partition.
|
// Total of GoodTextBlob results for all blobs in the partition.
|
||||||
int good_blob_score_ = 0;
|
int good_blob_score_ = 0;
|
||||||
|
Loading…
Reference in New Issue
Block a user