上一页 1 2 3 4 5 6 7 8 9 10 ··· 15 下一页
  2012年9月5日
摘要: * clip.hdev: Orientation of clips * dev_update_window ('off') read_image (Clip, 'clip') get_image_size (Clip, Width, Height) dev_close_window () dev_open_window (0, 0, Width/2, Height/2, 'black', WindowID) dev_display (Clip) set_display_font (WindowID, 14, 'mono',  阅读全文
posted @ 2012-09-05 21:15 _song 阅读(526) 评论(0) 推荐(0) 编辑
  2012年9月4日
摘要: * Lead Measurement: Example for the application of the measure object * including a lot of visualization operators. * First, the length of the leads is measured, then, their width and distance from each other. * * * First, read in the image and initialize the program read_image (Image, 'ic_pin&# 阅读全文
posted @ 2012-09-04 23:18 _song 阅读(566) 评论(0) 推荐(0) 编辑
  2012年9月3日
摘要: * fuse.hdev: measuring the width of a fuse wire * dev_update_window ('off') dev_close_window () * **** * step: acquire image * **** read_image (Fuse, 'fuse') get_image_size (Fuse, Width, Height) dev_open_window_fit_image (Fuse, 0, 0, Width, Height, WindowID) set_display_font (WindowI 阅读全文
posted @ 2012-09-03 22:05 _song 阅读(496) 评论(0) 推荐(0) 编辑
  2012年8月22日
摘要: micro2440-s3c2440 仅一个存储器接口 addr0-26 data0-31 此存储器接口所接资源: nand(64MB SLC) nor(2MB) dm9000 sdram(32x2 MB) ************ tiny6410-s3c6410 两个存储器接口 xm0 xm0addr0-15 xm0data0-15 此存储器接口所接资源: nand(2GB MLC2) dm9000 ************ xm1 xm1addr0-15 xm1data0-31 此存储器接口所接资源: ddr(128x2 MB) ************ tiny210- 三个存储... 阅读全文
posted @ 2012-08-22 16:12 _song 阅读(237) 评论(0) 推荐(0) 编辑
  2012年8月17日
摘要: count_objselect_obj工具栏里有几个按钮在图像分析中比较方便第一个是灰度直方图,用于将灰度图像变成二值图像里面有个插入代码,点击一下会插入代码比如threshold (Image, Regions, 0, 93),即阈值处理函数。当然自动阈值函数也可以使用bin_threshold (Image, Regions)第二个是特征直方图,用于根据某个图形特征选择区域 ---Choose regions with the aid of shape features。比如选择面积大于3000小于10000的区域,点击插入代码即生成select_shape (Single, Select 阅读全文
posted @ 2012-08-17 22:06 _song 阅读(1427) 评论(0) 推荐(0) 编辑
  2012年8月14日
摘要: 接收#include #include #include #include #include #include #include #include #include #include #include #include #define DEBUG #ifdef DEBUG #define DBG(...) fprintf(stderr, " DBG(%s, %s(), %d): ", __FILE__, __FUNCTION__, __LINE__); fprintf(stderr, __VA_ARGS__) #e... 阅读全文
posted @ 2012-08-14 15:25 _song 阅读(488) 评论(0) 推荐(0) 编辑
  2012年8月12日
摘要: 触摸芯片瀚瑞http://www.pixcir.com.cn/汇顶http://www.goodix.com/http://www.sztctd.com/about/about85.shtmltiny210配置的电容屏芯片goodix GT801http://www.goodix.com/technical-support/download/http://www.arm9home.net/read.php?tid=20239http://www.arm9home.net/read.php?tid-24538.htmlgoodix触摸屏驱动以模块形式提供,如下,在板子的文件系统中搜索/ # fi 阅读全文
posted @ 2012-08-12 22:28 _song 阅读(384) 评论(0) 推荐(0) 编辑
  2012年8月11日
摘要: 1http://www.topoint.com.cn/html/article/2012/02/325965.html在设置wlan端口映射时,tp-link只有一个设置端口号,其实它只允许外部端口和内部端口的端口号一致。internet上面某台机器连接wlan的12345(外部端口)时,路由器会将所有数据发送给192.168.1.100的12345(内部端口)有的路由器允许设置不同的外部端口和内部端口,比如2tplink路由器接入宽带能上外网,水星路由器桥接tplink,使得电脑通过水星路由器上外网tplink路由器不用设置,水星ip设置在tplink路由器同一网段内(如tplink是192 阅读全文
posted @ 2012-08-11 08:32 _song 阅读(403) 评论(0) 推荐(0) 编辑
  2012年7月20日
摘要: spi/** * struct spi_transfer - a read/write buffer pair * @tx_buf: data to be written (dma-safe memory), or NULL * @rx_buf: data to be read (dma-safe memory), or NULL * @tx_dma: DMA address of tx_buf, if @spi_message.is_dma_mapped * @rx_dma: DMA address of rx_buf, if @spi_message.is_dma_mapped ... 阅读全文
posted @ 2012-07-20 07:05 _song 阅读(846) 评论(0) 推荐(0) 编辑
  2012年7月12日
摘要: 根据te6410移植mcp2515到tiny6410,将tiny按照te的连线如下tiny6410,linux2.6.38移植mcp251x 使用spi1,eint8 1.修改板子文件mach-mini6410.c,加入plateform平台设备 先加入头文件 //for spi add by medconn #include #include #include //for mcp251x add by medconn #include #include 在static struct platform_device *mini6410_devices[] __initda... 阅读全文
posted @ 2012-07-12 20:15 _song 阅读(754) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 10 ··· 15 下一页