Files
pdf/engine/include/pdfengine/ocr/ocr_importer.hpp
T

23 lines
459 B
C++
Raw Normal View History

2026-08-07 19:09:44 +05:30
#pragma once
#include "pdfengine/document/raw_ocr_document.hpp"
#include <vector>
namespace pdfengine::ocr {
class OCRImporter {
public:
OCRImporter() = default;
pdfengine::document::RawOCRPage importOCRPage(
int pageIndex,
double imgWidth,
double imgHeight,
double pdfWidth,
double pdfHeight,
const std::vector<pdfengine::document::RawOCRLine>& lines
) const;
};
} // namespace pdfengine::ocr