How to convert black and white image to a matrix 100 x 100 ?

3 ビュー (過去 30 日間)
sali
sali 2015 年 10 月 16 日
編集済み: Andrei Bobrov 2015 年 10 月 17 日
Dear all, I have a black and white image that I want to read it as a matrix of size 100 x 100, I need the elements of the matrix to be 1 for black pixels and -1 for the white pixels, could any one help me in how to have the size of the matrix to be 100 x 100 and its elements 1 and -1? thank you

回答 (1 件)

Andrei Bobrov
Andrei Bobrov 2015 年 10 月 16 日
c = [1 0 0 1 1 1 0 1 0 0]
out = ~c*2-1
  1 件のコメント
sali
sali 2015 年 10 月 16 日
編集済み: Andrei Bobrov 2015 年 10 月 17 日
Thanks Andrei for your answer, I could use this after reading the image and convert it to 100x 100 matrix which I did not yet figure it out!

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

カテゴリ

Help Center および File ExchangeConvert Image Type についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by