Finding Values From Arrays
2 ビュー (過去 30 日間)
古いコメントを表示
Hi Experts,
I have the following lines of code
I =
I = imread(abc.jpg)
[idx,C] = adaptcluster_kmeans(I);
idx =
a = unique(idx); //Unique values from idx e.g 1 2 3
out = [a,histc(idx(:),a)];//Frequency of unique value
e.g
1 18221
2 28383
3 18080
[a,ix]= max(out(:,2)); //max unique value and its index
a = 28383 ix = 2
Now what i want to do is to use this 'ix' and extract the corresponding pixel values and store them in an excel file....
e.g ix = 2 in this case then i want to extract
Can any help how i can achieve this
Regards & Thanks
0 件のコメント
採用された回答
Mahdiyar
2015 年 4 月 4 日
Hi rizwan
You can simply use the "find" command line.
[row column] = find(idx == ix)
Regards
3 件のコメント
Mahdiyar
2015 年 4 月 5 日
Hi
As I understood you just want to store the found pixel in the new variable in the exactly the same position (Row and Column). If so, you may follow the code below.
New_Variable = zeros(n, m); % n and m are the row and column of the matrix in which the original image is saved
for i=1:lenght(Row)
New_Variable(Row(i), Col(i)) = Original_Image(Row(i), Col(i));
end
I think now it works. Regards,
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Matrices and Arrays についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!