can any one send me a code?

2 ビュー (過去 30 日間)
vilva
vilva 2012 年 10 月 12 日
i want matlab code for visible watermarking

採用された回答

Image Analyst
Image Analyst 2012 年 10 月 12 日
You can just average the images,
markedImage = uint8((single(image1) + single(image2))/2);
though it gets tricky if your watermark is smaller than the image because you have to decide where to place it. You might take a look at Stitch which blends images in addition to stitching them, and handles the size mismatches.
  4 件のコメント
vilva
vilva 2012 年 10 月 14 日
secure reversible visible image watermarking with authentication is my project...i want to select the center region of the image...i want proper matlab code sir..
Image Analyst
Image Analyst 2012 年 10 月 14 日
[rows columns numberOfColorChannels = size(imageArray);
[rowsWM columnsWM numberOfColorChannelsWM = size(watermarkImageArray);
middleRow = floor(rows/2);
middleColumn = floor(columns/2);
row1 = middleRow - floor(rowsWM/2);
row2 = row1 + rowsWM;
and so on.....

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

その他の回答 (1 件)

Babak
Babak 2012 年 10 月 12 日
Look into the File Exchange section.
  1 件のコメント
vilva
vilva 2012 年 10 月 14 日
visible watermarking matlab code is not available in the file exchange section sir..

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

Community Treasure Hunt

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

Start Hunting!

Translated by