Squeeze Command - RGB
6 ビュー (過去 30 日間)
古いコメントを表示
I am trying to use the Squeeze command to determine the RGB value of a point, but I keep getting the wrong results. For the point (205, 107) the squeeze command returns the RGB value (57 133 95), but the Image Tool shows for the same point the RGB value (108 164 137)

.
0 件のコメント
採用された回答
Walter Roberson
2015 年 11 月 5 日
The row of a matrix is its Y coordinate, and the column is its X coordinate. You need to look at a(107,205,:)
その他の回答 (1 件)
John D'Errico
2015 年 11 月 5 日
This has ABSOLUTELY nothing to do with squeeze, UNLESS you have created your own squeeze function by accident. It is not at all uncommon for new users to do something like that.
What is a(205,107,:)? Then tell us what is a(107,205,:). As I recall, MATLAB uses the first index for the horizontal coordinate with an image. So you may be getting that index swapped in what you have done.
参考
カテゴリ
Help Center および File Exchange で Matrix Indexing についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!