フィルターのクリア

How to display pixel values on the image and label on the region I want?

1 回表示 (過去 30 日間)
Atifah Samuri
Atifah Samuri 2021 年 12 月 18 日
コメント済み: Image Analyst 2021 年 12 月 20 日
My project is want to enhance the hand vein image. The problem is I need to display some values on the vein. For example, pixel values, SNR and MSE. Below I attached the code to get the pixel values but I don't understand why the value have 3.
imshow 'hazirah.jpg';
pixel_values = impixel;

採用された回答

Image Analyst
Image Analyst 2021 年 12 月 18 日
You have 3 values because it's a color image. Those are the red, green, and blue intensity values.
rgbImage = imread('hazirah.jpg');
imshow(rgbImage);
impixelinfo; % Mouse around and see values.
row = 1; % whatever you want.
collumn = 4; % whatever you want.
pixel_values = impixel(rgbImage, row, column);
  2 件のコメント
Atifah Samuri
Atifah Samuri 2021 年 12 月 20 日
how about the MSE and SNR values sir? Can i get the value to do the comparison between the original image with CLAHE image?
Image Analyst
Image Analyst 2021 年 12 月 20 日
There are built in functions psnr() and immse(). Try those.

サインインしてコメントする。

その他の回答 (0 件)

製品


リリース

R2016b

Community Treasure Hunt

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

Start Hunting!

Translated by