フィルターのクリア

Help "index matrix not consistent"?

1 回表示 (過去 30 日間)
PRIYANGA
PRIYANGA 2012 年 12 月 12 日
I have to writhe matlab code for image compression.
i got the three values domr, domg, domb
domr=[6 7];
domg=[3 4];
domb=[1];
dom=cat(3,domr,domg,domb); ??? Error using ==>cat CAT arguments dimensions are not consistent.
Error in ==>
FVQLOWCOMPWMINCOLOR at 295
dom=cat(1,domr,domg,domb);
But I can't concatenate the values.I got the Error result " Cat argument not consistent" how can I concatenate that element? any body please help me?
  2 件のコメント
Walter Roberson
Walter Roberson 2012 年 12 月 12 日
Walter Roberson
Walter Roberson 2012 年 12 月 12 日
We already asked you to explain your desired results when you posted this before in http://www.mathworks.co.uk/matlabcentral/answers/55485-how-can-i-cancate-the-array-r-g-b-values

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

採用された回答

Azzi Abdelmalek
Azzi Abdelmalek 2012 年 12 月 12 日
編集済み: Azzi Abdelmalek 2012 年 12 月 12 日
domr=[6 7];
domg=[3 4];
domb=[1];
dom=[domr,domg,domb]
%or
dom=cat(2,domr,domg,domb)

その他の回答 (1 件)

Muruganandham Subramanian
Muruganandham Subramanian 2012 年 12 月 12 日
編集済み: Muruganandham Subramanian 2012 年 12 月 12 日
The problem is size(domr), size(domg) & size(domb) is not equal..
or
you can try like this:
dom=cat(1,domr(1),domg(1),domb(1));
dom=cat(1,domr(2),domg(2),domb(1));
  1 件のコメント
PRIYANGA
PRIYANGA 2012 年 12 月 13 日
Thank you sir,

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

カテゴリ

Help Center および File ExchangeImages についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by