フィルターのクリア

Read pixel by pixel value from two images simultaneously

4 ビュー (過去 30 日間)
Nataliya
Nataliya 2017 年 2 月 9 日
回答済み: Image Analyst 2017 年 2 月 11 日
I want to get pixel by pixel value from two images at once. For example, Get 1st pixel value of both images and so on. How can I do this?

採用された回答

Image Analyst
Image Analyst 2017 年 2 月 11 日
You can't get them simultaneously (unless you're using the Parallel Computing Toolbox). You can get one, then the other, like this:
grayLevel1 = grayImage1(row, column);
grayLevel2 = grayImage2(row, column);

その他の回答 (1 件)

KSSV
KSSV 2017 年 2 月 9 日
doc imread. imread reads your images. When you read two images, their dimensions can be different. You can make their dimensions equal using imresize.
  1 件のコメント
Nataliya
Nataliya 2017 年 2 月 9 日
I want to get pixel value of two images located at the same position.

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

カテゴリ

Help Center および File ExchangeImage Processing Toolbox についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by