diff --git a/AlgorithmModule/include/BlobBase.h b/AlgorithmModule/include/BlobBase.h index f321251..7669957 100644 --- a/AlgorithmModule/include/BlobBase.h +++ b/AlgorithmModule/include/BlobBase.h @@ -10,8 +10,8 @@ enum ERR_DOT_TYPE_ENUM #define Value_ERR_TYPE_2 128 //-----------------------sxg added -#define _MAX_ERROR_SCAN_LINE_PER_ROW 300 -#define _MAX_ERROR_DOT_BLOB 80 +#define _MAX_ERROR_SCAN_LINE_PER_ROW 1000 +#define _MAX_ERROR_DOT_BLOB 1000 #define _MAX_MACRO_COUNT 4 #define _MAX_ERR_CLASS ERR_TYPE_COUNT diff --git a/AlgorithmModule/include/ImgCheckConfig.h b/AlgorithmModule/include/ImgCheckConfig.h index 412209f..561a026 100644 --- a/AlgorithmModule/include/ImgCheckConfig.h +++ b/AlgorithmModule/include/ImgCheckConfig.h @@ -18,7 +18,7 @@ #include // unordered_map #define RESULT_VERSION 31 -#define MAX_BLOB_NUM 200 +#define MAX_BLOB_NUM 1000 // 输入模型图片尺寸 #define SRCIMG_WIDTH 14200 diff --git a/AlgorithmModule/src/ImgCheckAnalysisy.cpp b/AlgorithmModule/src/ImgCheckAnalysisy.cpp index 399da76..a861ff7 100644 --- a/AlgorithmModule/src/ImgCheckAnalysisy.cpp +++ b/AlgorithmModule/src/ImgCheckAnalysisy.cpp @@ -1726,9 +1726,9 @@ int ImgCheckAnalysisy::GetALLBlob() long t5 = CheckUtil::getcurTime(); re = GetBlob_BQ(); - if (blobs.blobCount > 100) + if (blobs.blobCount > 1000) { - blobs.blobCount = 100; + blobs.blobCount = 1000; /* code */ }