* [task#127427] fix issues of rows.

This commit is contained in:
wangzemei
2024-09-13 09:29:16 +08:00
committed by 刘刚
parent 90b579afd0
commit 454d7b645f
+1 -1
View File
@@ -275,7 +275,7 @@ function findRegions(pixels, width, height)
if(region.area > 100)
{
region.rows.forEach((row, key) => {
row = processRegionRows(row);
region.rows[key] = processRegionRows(row);
});
regions.push(region);
}