上一页 1 ··· 39 40 41 42 43 44 45 46 47 ··· 79 下一页
摘要: using System; using System.IO; namespace ConsoleApplication { class Program { static void Main(string[] args) { FileStream file = new FileStream("log.txt", FileMo... 阅读全文
posted @ 2017-08-27 15:07 Dsp Tian 阅读(401) 评论(0) 推荐(0)
摘要: using System; using System.Collections.Generic; namespace ConsoleApplication { class Program { static void Main(string[] args) { LinkedList a = new LinkedList(); ... 阅读全文
posted @ 2017-08-27 15:06 Dsp Tian 阅读(8367) 评论(0) 推荐(0)
摘要: using System; using System.Collections.Generic; namespace ConsoleApplication { class Program { static void Main(string[] args) { List a = new List(); ... 阅读全文
posted @ 2017-08-27 15:05 Dsp Tian 阅读(1950) 评论(0) 推荐(0)
摘要: using System; namespace ConsoleApplication { struct _st { public string name; public int age; } class Program { static void Print(_st a) { ... 阅读全文
posted @ 2017-08-27 15:04 Dsp Tian 阅读(444) 评论(0) 推荐(0)
摘要: using System; namespace ConsoleApplication { class Program { static void Main(string[] args) { //int[] a=new int[3]; //一维数组 int[,] a = new int[3,3]... 阅读全文
posted @ 2017-08-27 15:02 Dsp Tian 阅读(390) 评论(0) 推荐(0)
摘要: using System; namespace ConsoleApplication { class Program { static int Add(int a, int b) { return a + b; } static void Main(string[] args) ... 阅读全文
posted @ 2017-08-27 15:02 Dsp Tian 阅读(675) 评论(0) 推荐(0)
摘要: using System; namespace ConsoleApplication { class Program { static void Main(string[] args) { Console.Write("Hello World!"); Console.Read(); ... 阅读全文
posted @ 2017-08-27 15:01 Dsp Tian 阅读(436) 评论(0) 推荐(0)
摘要: 差不多有一年多没有更新这个博客了,并不是我不想更新,的确是原因比较多。 第一个原因是工作比较忙,经常性出差,从去年七月到今天差不多有250天以上的出差,并且疯狂加班,后面和大家说说出差都在做什么,绝对是件利国利民很有意义的事情。 第二个原因是生活上买房,装修,结婚占据了很大的精力,本人今年七夕领证, 阅读全文
posted @ 2017-08-18 13:20 Dsp Tian 阅读(842) 评论(3) 推荐(1)
摘要: 这个算法是对photoshop中滤镜->像素化->碎片这个功能的学习。PS这个功能好像不带参数,不过我这里有滤波半径r可以进行控制。因为我是看效果猜算法的,效果肯定有所区别。我的想法是对图像以r为长度,在上下左右四个方向做位移,然后进行混合。代码还是很简单,就不详细介绍了。处理效果如下:原图:处理后... 阅读全文
posted @ 2016-01-03 13:35 Dsp Tian 阅读(3370) 评论(0) 推荐(0)
摘要: 我手机上有一个软件实现了很多图像滤镜,挺有意思,我打算都尝试一下。这个滤镜主要是实现老照片效果。代码很短,我就不详细介绍了。原图:处理后效果:matlab代码如下:clear all;close all;clc;img=imread('lena_rgb.jpg');[h w k]=size(img)... 阅读全文
posted @ 2016-01-01 10:08 Dsp Tian 阅读(5956) 评论(0) 推荐(0)
上一页 1 ··· 39 40 41 42 43 44 45 46 47 ··· 79 下一页