i want to know the pixel intensity value in an image but it gives different results using data cursor and command.which one is correct? and why it is showing differently?
이전 댓글 표시
let A is image
i want to know intensity value at (25,170).so by using command A(25,170) we can find intensity value but,using data cursor it shows different intensity value
채택된 답변
추가 답변 (1개)
Image Analyst
2014년 7월 29일
0 개 추천
It might use what's on the screen instead of the actual image - I don't know. Why don't you use impixelinfo(), which is meant for that sort of thing?
댓글 수: 2
Mahesh Kumar
2014년 7월 29일
Image Analyst
2014년 7월 29일
See Alex's answer. I should have thought of that. It's a very common mistake people make - using (x,y) when they should use (y,x) or using (row, column) when they should be using (column, row). Remember x = column, and y = row.
카테고리
도움말 센터 및 File Exchange에서 Images에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!