How to detect an image in Matlab?

How to hide watermark of an image via MATLAB?

  • Hi, I am new in MATLAB, I have been given a code which hides the watermark image into the bit0 of the original image: orig = imread('lennagray.bmp'); wm = imread('watermark.gif'); [h w] = size(orig); subplot(121), imshow(orig); subplot(122), imshow(wm, [0 1]); img = bitand(orig, uint8(254*ones(w,h))); img = img + wm; imwrite(img, 'lennawm00.bmp'); I need to hide the watermark into bit5 instead of bit0. Can anyone help me out please?

  • Answer:

    is the image yours??? and therefore the watermark is yours??? if not, then any changes you make are considered illegal and you could find someone taking legal action against you...

amin_cci... at Yahoo! Answers Visit the source

Was this solution helpful to you?

Related Q & A:

Just Added Q & A:

Find solution

For every problem there is a solution! Proved by Solucija.

  • Got an issue and looking for advice?

  • Ask Solucija to search every corner of the Web for help.

  • Get workable solutions and helpful tips in a moment.

Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.