Re-formulate the image into a vector of zeros and ones.

7 ビュー (過去 30 日間)
kush
kush 2012 年 3 月 23 日
i am working on a project of image processing & i need to convert an image into vector of 0 & 1.in this each pixel needs to be replaced by its binary equivalent
if anyone knows plz help

回答 (2 件)

faraz.a
faraz.a 2013 年 5 月 25 日
can you please tell me how to convert binary image in to 0's and 1's matrix were 0 is white pixel and 1 is a black pixel. i need the code for that
  1 件のコメント
Image Analyst
Image Analyst 2013 年 5 月 25 日
Did you see Matt's answer above?

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


Matt Kindig
Matt Kindig 2012 年 3 月 23 日
If your image is an indexed or grayscale image, it is just a matter of comparing the image to a pre-defined threshold. You will need to adjust this threshold based on which features of the image you want to be a 1.
threshold = 0.5; %or some other threshold
BW = (myImage >= threshold); %this will be a matrix of ones and zeros.

カテゴリ

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

Community Treasure Hunt

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

Start Hunting!

Translated by