随机噪声的公式w=F(z)中的参数都是什么意思  用不同的函数生成的直方图的横坐标纵坐标怎么也不同 为什么会这样 比如高斯横坐标有正有负其他的有的是0-1的  纵坐标的值也能达到很大  横坐标和纵坐标分别是什么意思
还有周期噪声 [r,R,S]=imnoise3(512,512,C,A);
公式中的参数还有r R S都代表什么意思  万分感谢!

解决方案 »

  1.   

    [r, R, S] = IMNOISE3(M, N, C, A, B), 
    generates a spatial sinusoidal noise pattern, r, of size M-by-N, its Fourier
     transform, R, and spectrum, S
      

  2.   

    那S还有C、A、B分别是什么意思呢  谢谢
      

  3.   

    %IMNOISE3 Generates periodic noise. 
    %    [r, R, S] = IMNOISE3(M, N, C, A, B), generates a spatial 
    %    sinusoidal noise pattern, r, of size M-by-N, its Fourier 
    %    transform, R, and spectrum, S.  The remaining parameters are: 

    %    C is a K-by-2 matrix with K pairs of freq. domain coordinates (u, 
    %    v) that define the locations of impulses in the freq. domain. The 
    %    locations are with respect to the frequency rectangle center at 
    %    (floor(M/2) + 1, floor(N/2) + 1).  The impulse locations are spe- 
    %    cified as increments with respect to the center. For ex, if M = 
    %    N = 512, then the center is at (257, 257). To specify an impulse 
    %    at (280, 300) we specify the pair (23, 43); i.e., 257 + 23 = 280, 
    %    and 257 + 43 = 300. Only one pair of coordinates is required for 
    %    each impulse.  The conjugate pairs are generated automatically.  

    %    A is a 1-by-K vector that contains the amplitude of each of the 
    %    K impulse pairs. If A is not included in the argument, the 
    %    default used is A = ONES(1, K).  B is then automatically set to 
    %    its default values (see next paragraph).  The value specified 
    %    for A(j) is associated with the coordinates in C(j, 1:2).  

    %    B is a K-by-2 matrix containing the Bx and By phase components 
    %    for each impulse pair.  The default values for B are B(1:K, 1:2) 
    %    = 0. 
      

  4.   

    在matlab里我打help imnoise3 为什么结果是找不到呢
      

  5.   

    有可能是你的matlab版本低或者你在安装matlab时装的不全
      

  6.   

    大家写图像算法都用什么写  只用c吗  用c的话是和opencv结合着写吗  那用matlab吗
      

  7.   

    比较喜欢matlab上仿真,matlab的资源真的很方便