how do you add bit error rate after applying noise to an image, the code below explains it.?
6 views (last 30 days)
Show older comments
I = imread('C:\Users\Vinayak Shukla\Documents\MATLAB\MATLAB PROJECTS\MASTER THESIS FOLDER 2023\happy15_encrpted4.bmp');
imshow(I);
J = imnoise(I,'gaussian',0.05);
imshow(J)
var = "message 1.txt";
double(char(var))
dec2bin('message 1.txt');
fid=fopen("message 1.txt","w");
fprintf(fid,"message1\n");
fclose(fid);
3 Comments
Divyansh
on 5 Apr 2023
Hey Pranav, can you please exlplain your issue? Are there any errors that are getting with this code?
Answers (0)
See Also
Categories
Find more on Get Started with MATLAB 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!