SegGray=sbw(rowtop:rowbot,cleft:cright); SegBw1=sbw(rowtop:rowbot,cleft:cright);也出现同样的警告,该怎么解决,并且第二个代码显示索引超出矩阵维度
时间: 2024-02-25 21:51:36 浏览: 128
2021年中国线控系统系列报告:转向控制系统及自动驾驶.pdf
同样的警告和索引超出矩阵维度的问题,可能是由于变量 `rowtop`、`rowbot`、`cleft`、`cright` 不是整数类型所导致的。
为了解决这个问题,你可以使用 `round`、`floor`、`ceil` 等函数将这些变量转换为整数类型。例如:
```
SegGray = sbw(round(rowtop):round(rowbot), round(cleft):round(cright));
SegBw1 = sbw(round(rowtop):round(rowbot), round(cleft):round(cright));
```
这样可以将变量 `rowtop`、`rowbot`、`cleft`、`cright` 转换为整数类型,并使用 `round` 函数将它们四舍五入为最接近的整数。这样就可以解决警告问题。
如果出现索引超出矩阵维度的问题,可能是因为变量 `rowtop`、`rowbot`、`cleft`、`cright` 超出了图像的边界。你可以检查一下这些变量的值是否在图像的尺寸范围内,如果超出了范围,就需要调整这些变量的值。
阅读全文