cv :: Rect的异常处理

时间:2014-02-17 16:18:15

标签: c++ exception opencv exception-handling rect

我有边框,我想用这个边界框裁剪图像。

但是我想增加边界框的大小,所以我做

if ((roi_.x - 5) > 0) // i test here in case the component at the left near border we do not minus otherwise it will be error
{
    roi_.x += (-5);
}
if ((roi_.y - 5) > 0) // i test here in case the component at the left near border we do not minus otherwise it will be error
{
    roi_.y += (-5);
}
if (&(roi_ + cv::Size(10, 0)) != NULL)
{
    roi_.width += 10;
}
if (&(roi_ + cv::Size(0, 10)) != NULL)
{
    roi_.height += 10;
}

对于边框附近最右边的组件,如果我增加宽度,则会出错。如果组件位于边框附近的底部

,则高度相同

有没有办法处理此异常?

1 个答案:

答案 0 :(得分:2)

您收到错误是因为&需要 l值,而roi_ + cv::Size(10, 0)roi_ + cv::Size(0, 10)都不是。

您需要更改

if (&(roi_ + cv::Size(10, 0)) != NULL)
...
if (&(roi_ + cv::Size(0, 10)) != NULL)

if ((roi_.x + roi_.width + 10) < img.cols)
...
if ((roi_.y + roi_.height + 10) < img.rows)