打印
[AVR单片机]

用数组做的环形链表,用于高斯滤波器!

[复制链接]
2085|1
手机看帖
扫描二维码
随时随地手机跟帖
跳转到指定楼层
楼主
glen_cao|  楼主 | 2007-8-29 07:47 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式
#include <avr/io.h>

typedef unsigned char uchar;
typedef unsigned int  uint;

typedef struct list
{
     struct bit
    {
        unsigned i:4;
        unsigned :0;
    }last;
    // uchar last;
    uint Data[16];
}List;

static List GaussFilter;


int main (void)
{    
    uint n = 0;    
    
    while (1)
    {
         GaussFilter.Data[GaussFilter.last.i++] = n++;
    }
    
    return 0;
}

相关帖子

沙发
glen_cao|  楼主 | 2007-8-29 12:22 | 只看该作者

注释一下吧:

typedef struct list
{
     struct bit
    {
        unsigned i:4;  // 可根据需要设置窗口值2的n次方,此处设置为2的4次方
        unsigned :0;
    }last;             // last.i为指向最后一次Data[]
    // uchar last;
    uint Data[16];     // 此处16为窗口值
}List;

static List GaussFilter;// 定义高斯滤波器实体

//下面的是测试,这里就不用说了

使用特权

评论回复
发新帖 我要提问
您需要登录后才可以回帖 登录 | 注册

本版积分规则

20

主题

61

帖子

0

粉丝