how to inner product two images......

10 views (last 30 days)
Arul
Arul on 3 May 2013
inner product two images and then if each pixel value is greater than some threshold level put '1' in the pixel or else if it is zero then put '0'

Accepted Answer

Image Analyst
Image Analyst on 3 May 2013
I don't know what inner product has to do with it, but for the latter half of your question, you're describing thresholding. So to do that you do this:
binaryImage = grayImage > thresholdValue;

More Answers (1)

Bjorn Gustavsson
Bjorn Gustavsson on 3 May 2013
Inner product ought to be somethinhg like this (assuming gray-scale image):
img_inner_product = im1(:)'*im2(:);

Categories

Find more on Image Processing Toolbox in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!