Updated include paths for consistent structure under the `db` directory. Added `AccountInfoScreener` for parsing card data using Tesseract OCR and enhanced related models. Removed unused code and simplified main workflow.
9 lines
161 B
C++
9 lines
161 B
C++
#pragma once
|
|
|
|
#include "android/Card.h"
|
|
|
|
class AccountInfoScreener {
|
|
public:
|
|
[[nodiscard]] static QList<Card> parseCardData(const QByteArray &imageData);
|
|
};
|