为什么我使用函数roicolor一直报错啊

2019-07-17 13:13发布

为什么我使用函数roicolor一直报错啊?图片像素为240*135
程序如下:I=imread('bird.jpg');
                  imshow(I);
                  BW=roicolor(I,100,55);
之后就会报“??? Error using ==> roicolor
Images with dimensions greater than two are not supported.“这个错误
友情提示: 此问题已得到解决,问题已经关闭,关闭后问题禁止继续编辑,回答。
3条回答
dongula
2019-07-17 14:14
BW = roicolor(A,LOW,HIGH) returns a region of interest
    selected as those pixels that lie within the colormap range
    [LOW HIGH]:

        BW = (A >= LOW) & (A <= HIGH);

应该是参数100和55设置错误,不在范围内

一周热门 更多>