how to estimate the density of each pixel in the image?

조회 수: 5 (최근 30일)
sheno39
sheno39 2013년 9월 12일
댓글: Image Analyst 2019년 9월 13일
density for each pixel

채택된 답변

Image Analyst
Image Analyst 2013년 9월 12일
Define density. Isn't it just the pixel value, like
pixelValue = grayImage(row, column);
Please see my image segmentation tutorial and other demos: http://www.mathworks.com/matlabcentral/fileexchange/?term=authorid%3A31862
And what does parzen (your tag) have to do with anything?
  댓글 수: 4
Warid Islam
Warid Islam 2019년 9월 13일
Hi Image Analyst,
Does finding the MEAN value of the image corresponds to the PIXELVALUE?
Image Analyst
Image Analyst 2019년 9월 13일
No, in my code above pixelValue is just the gray level at (row, column) location (just one pixel), not the mean gray level over all pixels in the entire image.

댓글을 달려면 로그인하십시오.

추가 답변 (1개)

Laurent
Laurent 2013년 9월 12일
I am not sure what you mean, but if it is the intensity of a pixel, you can access that as follows:
intensity=yourimage(50,60);
gives you the intensity of pixel 50,60 in 'yourimage'.
If you want to know the pixel density of your image, you need to know the number of pixels in your image along each dimension and the 'real' size of your image along each dimension.

카테고리

Help CenterFile Exchange에서 3-D Volumetric Image Processing에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by