how to detect areas within a binary image with vision.BlobAnalysis ?

조회 수: 3 (최근 30일)
Marco Pillon
Marco Pillon 2021년 5월 18일
답변: Image Analyst 2021년 5월 25일
Hello,
someone could tell me why the following code written as a script gives me, in the Command windows, the error "Unable to resolve the name vision.BlobAnalysis.".
% BW = im2bw(I,level) is a binary image
hBlobAnalysis = vision.BlobAnalysis('MinimumBlobArea',2, 'MaximumBlobArea',50);
[objArea,objCentroid,bboxOut] = step(hBlobAnalysis,BW);
and what to modify / correct to detect more areas within a binary image.
Thanks
Marco

답변 (2개)

Tarunbir Gambhir
Tarunbir Gambhir 2021년 5월 25일
Can you check if you have the Computer Vision Toolbox installed with your MATLAB software. You can execute the following command to do so
ver vision
Alternatively you can also check whether your account has License for Computer Vision Toolbox or not by checking the License Centre.

Image Analyst
Image Analyst 2021년 5월 25일
You can do blob analysis with the Image Processing Toolbox, which is much more common than the Computer Vision Toolbox. You can use the regionprops() function. See my Image Segmentation Tutorial in my File Exchange for a full demo.

카테고리

Help CenterFile Exchange에서 Image Processing and Computer Vision에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by