Vetri - the error message is telling you that you haven't defined the variable (or function) segPic before trying to use it. Your code seems to suggest that this is a matrix and that you wish to find all zeros in it. What are you assuming that segPic is (segmented picture?) and what are you attempting?
Undefined function or variable 'segPic'.
3 次查看(过去 30 天)
显示 更早的评论
My code is
din=imread('Pic1.jpg');
[rows, columns, numberOfColorBands] = size(din)
if numberOfColorBands > 1 din = din(:, :, 2); % Take green channel.
end
figure(1); imshow(din) figure(2); imhist(din)
BW = roicolor(din, 75, 255); figure(3), imshow(BW)
dout = double(din < 70);
grass = double(segPic == 0)*100; figure (3); imagesc(grass)
road = double(bwareaopen(segPic, 1000))*255; figure(4); imshow(road)
tree = + road; figure(3); imagesc(tree); axis image axis off
I am getting an error as,
Undefined function or variable 'segPic'.
Error in segmentation1 (line 24) grass = double(segPic == 0)*100;
回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Interactive Control and Callbacks 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!