16 lines
382 B
C++
16 lines
382 B
C++
#pragma once
|
|||
|
|
|
||
|
|
#include "pdfengine/document/raw_ocr_document.hpp"
|
||
|
|
|
||
|
|
namespace pdfengine::document {
|
||
|
|
|
||
|
|
class DocumentNormalizer {
|
||
|
|
public:
|
||
|
|
DocumentNormalizer() = default;
|
||
|
|
|
||
|
|
// Normalizes coordinates, scales pixel boxes to PDF points, fixes negative dimensions and cleans duplicates
|
||
|
|
RawOCRPage normalize(const RawOCRPage& rawPage) const;
|
||
|
|
};
|
||
|
|
|
||
|
|
} // namespace pdfengine::document
|