码迷,mamicode.com
首页 > 其他好文 > 详细

在图像中随机更改像素值程序——matlab

时间:2017-11-09 19:48:40      阅读:304      评论:0      收藏:0      [点我收藏+]

标签:数组   user   生成   bsp   nbsp   for   blog   程序   rgb2gray   

I=imread(C:\Users\wangd\Desktop\result3.png);
% m = rgb2gray(I);
% r = unidrnd(255,1,100); %产生一个1*100的数组,数组中的值为1至255中的随机值
% r1 = randi([2,7],10,100); %在开区间(27)生成10 * 100型随机矩阵
subplot(2,2,1);imshow(I);
title(原始图像);
for w=1:200
    j= randi([1,350],1,1);
    i= randi([1,400],1,1);
    x= randi([200,255],1,1);
    I(j,i)=x;
end
subplot(2,2,2);imshow(I);
title(图像);
imwrite(I,C:\Users\wangd\Desktop\1.png);

 

在图像中随机更改像素值程序——matlab

标签:数组   user   生成   bsp   nbsp   for   blog   程序   rgb2gray   

原文地址:http://www.cnblogs.com/warmbeast/p/7810848.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!