how can I USE bwlabel command, please.....

3 ビュー (過去 30 日間)
Muhammad Bayero
Muhammad Bayero 2018 年 2 月 1 日
コメント済み: Muhammad Bayero 2018 年 2 月 1 日
I am on a project .... and hooked. Below is a command I used and the error message I get. Please help.
filteredThresh = threshImage;
figure; imshow(filteredThresh); title('After median filter')
labeledImage1 = bwlabel(filteredThresh, 8);
Error:Undefined function 'bwlabel' for input arguments of type 'double'.

回答 (2 件)

Guillaume
Guillaume 2018 年 2 月 1 日
Have you got the image processing toolbox? What does
ver
says?
You'd typically get this error if you don't have the toolbox installed and licensed
  3 件のコメント
Guillaume
Guillaume 2018 年 2 月 1 日
You do not have the image processing toolbox installed. You need to install it, assuming it's included in your license.
Muhammad Bayero
Muhammad Bayero 2018 年 2 月 1 日
Okay. thanks

サインインしてコメントする。


Image Analyst
Image Analyst 2018 年 2 月 1 日
It appears from your title that filteredThresh might be a gray scale image (like uint8), not a binary image (like logical). bwlabel() expects a binary image. What does this show:
whos filteredThresh
It should say logical.
  1 件のコメント
Muhammad Bayero
Muhammad Bayero 2018 年 2 月 1 日
this is the response..... whos filteredThresh Name Size Bytes Class Attributes
filteredThresh 251x201 50451 logical

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeComputer Vision Toolbox についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by