フィルターのクリア

How to convert two rgb images into grayscale? and then subtract ?

2 ビュー (過去 30 日間)
swati mane
swati mane 2019 年 3 月 18 日
回答済み: Image Analyst 2021 年 6 月 19 日
I have two images in jpg format(one as reference image and other is captured image) . I want to convert them to grayscale and want to subtract them. How to do this?
Thanks in Advance.
  3 件のコメント
Jan
Jan 2019 年 3 月 19 日
@swati mane: Does this comment concern my answer? Is your problem solved?
swati mane
swati mane 2019 年 3 月 19 日
Hello sir,
My problem resolved. thank you!!!

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

採用された回答

Jan
Jan 2019 年 3 月 18 日
img1 = imread('Image1.jpg');
img2 = imread('Image2.jpg');
D = rgb2gray(img1) - rgb2gray(img2)

その他の回答 (1 件)

Image Analyst
Image Analyst 2021 年 6 月 19 日
If you don't want negative numbers clipped to zero you can cast to double before subtracting
image1 = imread('Image1.jpg');
image2 = imread('Image2.jpg');
diffImage = double(rgb2gray(image1)) - double(rgb2gray(image2));
imshow(diffImage, []); % Make sure you use []
If you just want the absolute value of the difference, use imabsdiff():
diffImage = imabsdiff(image1, image2);
No need to cast to double in that case.

カテゴリ

Help Center および File ExchangeConvert Image Type についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by