摘要: /// <summary> /// 获取视频采集设备列表 /// </summary> private void GetCameraList() { try { videoDeviceCoolection = new FilterInfoCollection(FilterCategory.VideoInputDevice); if (videoDeviceCoolection.Count == 0) { ... 阅读全文
posted @ 2013-01-22 12:42 louiskoo 阅读(2034) 评论(1) 推荐(0) 编辑
摘要: https://github.com/rcd/fo-dicom 阅读全文
posted @ 2013-01-22 10:36 louiskoo 阅读(2125) 评论(0) 推荐(0) 编辑
摘要: http://www.vision.caltech.edu/bouguetj/calib_doc/ 阅读全文
posted @ 2013-01-22 10:34 louiskoo 阅读(1061) 评论(0) 推荐(0) 编辑
摘要: http://www.albahari.com/threading/ 阅读全文
posted @ 2013-01-22 10:32 louiskoo 阅读(125) 评论(0) 推荐(0) 编辑
摘要: //第一种方法 DataClasses3DataContext con = new DataClasses3DataContext(); var qu = from c in con.FeeMain select c; if (textBox1.Text != "") qu = qu.Where(c => c.wtdw == textBox1.Text); if (textBox2.Text != "") ... 阅读全文
posted @ 2013-01-22 10:31 louiskoo 阅读(398) 评论(0) 推荐(0) 编辑
摘要: http://aspnetresources.com/articles/CustomErrorPages 阅读全文
posted @ 2013-01-22 10:31 louiskoo 阅读(155) 评论(0) 推荐(0) 编辑
摘要: var query = from f in db.TField join fw in db.TFieldWel on f.emp_no equals fw.emp_no where f.fy_no == fy_no && fw.fy_no == fy_no && (string.IsNullOrEmpty(brd_no) ? true : f.brd_no.Equals(brd_no)) && (string.IsNullOrEmpty(area_no) ? true : f.area_no.Equals(area_no)) && 阅读全文
posted @ 2013-01-22 10:29 louiskoo 阅读(201) 评论(0) 推荐(0) 编辑
摘要: http://hi.baidu.com/comeon/item/adb078ce82a7750e0bd93a38 阅读全文
posted @ 2013-01-22 10:24 louiskoo 阅读(106) 评论(0) 推荐(0) 编辑
摘要: public bool DeleteFiles(string path) { if (Directory.Exists(path)==false) { MessageBox.Show("Path is not Existed!"); return false; } DirectoryInfo dir = new DirectoryInfo(path); FileInfo[] files = dir.GetFile... 阅读全文
posted @ 2013-01-21 22:44 louiskoo 阅读(16645) 评论(0) 推荐(0) 编辑
摘要: private void btnStartNDI_Click(object sender, EventArgs e) { myTimer1.Tick += new EventHandler(TimerEventProcessor); myTimer1.Interval = 1000; myTimer1.Start(); while (exitFlag == false) { ... 阅读全文
posted @ 2013-01-21 20:21 louiskoo 阅读(2188) 评论(0) 推荐(0) 编辑