123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202 |
- #include "opencv2/core.hpp"
- #include "opencv2/imgcodecs.hpp"
- #include "opencv2/imgproc.hpp"
- #include <iostream>
- #include <vector>
- #include <include/args.h>
- #include <include/paddleocr.h>
- #include <include/paddlestructure.h>
- using namespace PaddleOCR;
- void check_params() {
- if (FLAGS_det) {
- if (FLAGS_det_model_dir.empty() || FLAGS_image_dir.empty()) {
- std::cout << "Usage[det]: ./ppocr "
- "--det_model_dir=/PATH/TO/DET_INFERENCE_MODEL/ "
- << "--image_dir=/PATH/TO/INPUT/IMAGE/" << std::endl;
- exit(1);
- }
- }
- if (FLAGS_rec) {
- std::cout
- << "In PP-OCRv3, rec_image_shape parameter defaults to '3, 48, 320',"
- "if you are using recognition model with PP-OCRv2 or an older "
- "version, "
- "please set --rec_image_shape='3,32,320"
- << std::endl;
- if (FLAGS_rec_model_dir.empty() || FLAGS_image_dir.empty()) {
- std::cout << "Usage[rec]: ./ppocr "
- "--rec_model_dir=/PATH/TO/REC_INFERENCE_MODEL/ "
- << "--image_dir=/PATH/TO/INPUT/IMAGE/" << std::endl;
- exit(1);
- }
- }
- if (FLAGS_cls && FLAGS_use_angle_cls) {
- if (FLAGS_cls_model_dir.empty() || FLAGS_image_dir.empty()) {
- std::cout << "Usage[cls]: ./ppocr "
- << "--cls_model_dir=/PATH/TO/REC_INFERENCE_MODEL/ "
- << "--image_dir=/PATH/TO/INPUT/IMAGE/" << std::endl;
- exit(1);
- }
- }
- if (FLAGS_table) {
- if (FLAGS_table_model_dir.empty() || FLAGS_det_model_dir.empty() ||
- FLAGS_rec_model_dir.empty() || FLAGS_image_dir.empty()) {
- std::cout << "Usage[table]: ./ppocr "
- << "--det_model_dir=/PATH/TO/DET_INFERENCE_MODEL/ "
- << "--rec_model_dir=/PATH/TO/REC_INFERENCE_MODEL/ "
- << "--table_model_dir=/PATH/TO/TABLE_INFERENCE_MODEL/ "
- << "--image_dir=/PATH/TO/INPUT/IMAGE/" << std::endl;
- exit(1);
- }
- }
- if (FLAGS_layout) {
- if (FLAGS_layout_model_dir.empty() || FLAGS_image_dir.empty()) {
- std::cout << "Usage[layout]: ./ppocr "
- << "--layout_model_dir=/PATH/TO/LAYOUT_INFERENCE_MODEL/ "
- << "--image_dir=/PATH/TO/INPUT/IMAGE/" << std::endl;
- exit(1);
- }
- }
- if (FLAGS_precision != "fp32" && FLAGS_precision != "fp16" &&
- FLAGS_precision != "int8") {
- std::cout << "precison should be 'fp32'(default), 'fp16' or 'int8'. "
- << std::endl;
- exit(1);
- }
- }
- void ocr(std::vector<cv::String> &cv_all_img_names) {
- PPOCR ocr = PPOCR();
- if (FLAGS_benchmark) {
- ocr.reset_timer();
- }
- std::vector<cv::Mat> img_list;
- std::vector<cv::String> img_names;
- for (int i = 0; i < cv_all_img_names.size(); ++i) {
- cv::Mat img = cv::imread(cv_all_img_names[i], cv::IMREAD_COLOR);
- if (!img.data) {
- std::cerr << "[ERROR] image read failed! image path: "
- << cv_all_img_names[i] << std::endl;
- continue;
- }
- img_list.push_back(img);
- img_names.push_back(cv_all_img_names[i]);
- }
- std::vector<std::vector<OCRPredictResult>> ocr_results =
- ocr.ocr(img_list, FLAGS_det, FLAGS_rec, FLAGS_cls);
- for (int i = 0; i < img_names.size(); ++i) {
- std::cout << "predict img: " << cv_all_img_names[i] << std::endl;
- Utility::print_result(ocr_results[i]);
- if (FLAGS_visualize && FLAGS_det) {
- std::string file_name = Utility::basename(img_names[i]);
- cv::Mat srcimg = img_list[i];
- Utility::VisualizeBboxes(srcimg, ocr_results[i],
- FLAGS_output + "/" + file_name);
- }
- }
- if (FLAGS_benchmark) {
- ocr.benchmark_log(cv_all_img_names.size());
- }
- }
- void structure(std::vector<cv::String> &cv_all_img_names) {
- PaddleOCR::PaddleStructure engine = PaddleOCR::PaddleStructure();
- if (FLAGS_benchmark) {
- engine.reset_timer();
- }
- for (int i = 0; i < cv_all_img_names.size(); i++) {
- std::cout << "predict img: " << cv_all_img_names[i] << std::endl;
- cv::Mat img = cv::imread(cv_all_img_names[i], cv::IMREAD_COLOR);
- if (!img.data) {
- std::cerr << "[ERROR] image read failed! image path: "
- << cv_all_img_names[i] << std::endl;
- continue;
- }
- std::vector<StructurePredictResult> structure_results = engine.structure(
- img, FLAGS_layout, FLAGS_table, FLAGS_det && FLAGS_rec);
- for (int j = 0; j < structure_results.size(); j++) {
- std::cout << j << "\ttype: " << structure_results[j].type
- << ", region: [";
- std::cout << structure_results[j].box[0] << ","
- << structure_results[j].box[1] << ","
- << structure_results[j].box[2] << ","
- << structure_results[j].box[3] << "], score: ";
- std::cout << structure_results[j].confidence << ", res: ";
- if (structure_results[j].type == "table") {
- std::cout << structure_results[j].html << std::endl;
- if (structure_results[j].cell_box.size() > 0 && FLAGS_visualize) {
- std::string file_name = Utility::basename(cv_all_img_names[i]);
- Utility::VisualizeBboxes(img, structure_results[j],
- FLAGS_output + "/" + std::to_string(j) +
- "_" + file_name);
- }
- } else {
- std::cout << "count of ocr result is : "
- << structure_results[j].text_res.size() << std::endl;
- if (structure_results[j].text_res.size() > 0) {
- std::cout << "********** print ocr result "
- << "**********" << std::endl;
- Utility::print_result(structure_results[j].text_res);
- std::cout << "********** end print ocr result "
- << "**********" << std::endl;
- }
- }
- }
- }
- if (FLAGS_benchmark) {
- engine.benchmark_log(cv_all_img_names.size());
- }
- }
- int main(int argc, char **argv) {
-
- google::ParseCommandLineFlags(&argc, &argv, true);
- check_params();
- if (!Utility::PathExists(FLAGS_image_dir)) {
- std::cerr << "[ERROR] image path not exist! image_dir: " << FLAGS_image_dir
- << std::endl;
- exit(1);
- }
- std::vector<cv::String> cv_all_img_names;
- cv::glob(FLAGS_image_dir, cv_all_img_names);
- std::cout << "total images num: " << cv_all_img_names.size() << std::endl;
- if (!Utility::PathExists(FLAGS_output)) {
- Utility::CreateDir(FLAGS_output);
- }
- if (FLAGS_type == "ocr") {
- ocr(cv_all_img_names);
- } else if (FLAGS_type == "structure") {
- structure(cv_all_img_names);
- } else {
- std::cout << "only value in ['ocr','structure'] is supported" << std::endl;
- }
- }
|