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

4 Ansichten (letzte 30 Tage)
Marco Pillon
Marco Pillon am 18 Mai 2021
Beantwortet: Image Analyst am 25 Mai 2021
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

Antworten (2)

Tarunbir Gambhir
Tarunbir Gambhir am 25 Mai 2021
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 am 25 Mai 2021
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.

Kategorien

Mehr zu Image Processing and Computer Vision finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by