Squeeze Command - RGB

7 次查看(过去 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)
.

采纳的回答

Walter Roberson
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
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.
  1 个评论
Pedro Minsk
Pedro Minsk 2015-11-5
a(205, 107, :) are the coordinates of the pixel in the image. That was exactly what was happening. The index was inverted. Thank you so much!

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Matrix Indexing 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by