how to generate random noise and fixed pattern noise in video

3 ビュー (過去 30 日間)
ANUPRIYA NALLUSAMY
ANUPRIYA NALLUSAMY 2015 年 8 月 25 日
コメント済み: Michael Bianchi 2020 年 11 月 3 日
how to add random and fixed pattern noise in video?
  3 件のコメント
ANUPRIYA NALLUSAMY
ANUPRIYA NALLUSAMY 2015 年 8 月 29 日
recorded video stored in a file
Michael Bianchi
Michael Bianchi 2020 年 11 月 3 日
How would one go about LIVE video?

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

回答 (2 件)

Dinesh Iyer
Dinesh Iyer 2015 年 8 月 25 日
Anupriya,
You can use the imnoise function in the Image Processing Toolbox to add noise to an image. You can follow these steps:
  1. Read video into MATLAB one frame at a time using VideoReader.
  2. Apply noise on each frame using imnoise;.
  3. Write out frames into a video file using VideoWriter.
Hope this helps.
Dinesh
  1 件のコメント
ANUPRIYA NALLUSAMY
ANUPRIYA NALLUSAMY 2015 年 8 月 25 日
In the image processing toolbox,there is no function avaliable for random(3D) and fixed pattern noise(3D) for to add in video...how to add noise in video?.with example code

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


Iftikhar Ahmad
Iftikhar Ahmad 2015 年 12 月 3 日
obj = mmreader('xylophone.mpg'); video = read(obj); nFrames = size(video,4);
for i = 1 : nFrames
I(:,:,:,i) = imnoise(video(:,:,:,i),'gaussian');
imshow(I(:,:,:,i));
drawnow;
end

Community Treasure Hunt

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

Start Hunting!

Translated by