• 大小: 994B
    文件类型: .cpp
    金币: 1
    下载: 0 次
    发布日期: 2021-06-08
  • 语言: C/C++
  • 标签: 高斯噪声  

资源简介

供图像处理初学者参考用,用随机数方法对原图像加高斯噪声

资源截图

代码片段和文件信息

#include
#include
#define w 64
#define h 64
unsigned char Trans(float o);//像素值变为0-255的char //
float GauseNoise(float D);//产生均值为0,标准差为D的高斯噪声//
void main()
{ static unsigned char Image[h][w];
    static float Image1[h][w];
int ij;
float phi=1.5;
FILE *fp1*fp2;
fp1=fopen(“f:\\geman.raw““rb“);
fread(Image1w*hfp1);
for(i=0;i for(j=0;j Image1[i][j]=(float)Image[i][j];
            //abc=GauseNoise(13);
//printf(“%f\n“

评论

共有 条评论