Fix the bug about raising error when reading image failed

This commit is contained in:
gaotingquan 2021-02-24 11:15:30 +00:00
parent add9faa822
commit 1751be75b0
1 changed files with 5 additions and 0 deletions

View File

@ -50,6 +50,11 @@ int main(int argc, char **argv) {
cv::Mat srcimg = cv::imread(img_path, cv::IMREAD_COLOR);
if (!srcimg.data) {
std::cerr << "[ERROR] image read failed! image path: " << img_path << "\n";
exit(1);
}
DBDetector det(config.det_model_dir, config.use_gpu, config.gpu_id,
config.gpu_mem, config.cpu_math_library_num_threads,
config.use_mkldnn, config.max_side_len, config.det_db_thresh,