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

4 visualizaciones (últimos 30 días)
Marco Pillon
Marco Pillon el 18 de Mayo de 2021
Respondida: Image Analyst el 25 de Mayo de 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

Respuestas (2)

Tarunbir Gambhir
Tarunbir Gambhir el 25 de Mayo de 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 el 25 de Mayo de 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.

Categorías

Más información sobre Image Processing and Computer Vision en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by