摘要:
/// <summary> /// 获取视频采集设备列表 /// </summary> private void GetCameraList() { try { videoDeviceCoolection = new FilterInfoCollection(FilterCategory.VideoInputDevice); if (videoDeviceCoolection.Count == 0) { ... 阅读全文
摘要:
https://github.com/rcd/fo-dicom 阅读全文
摘要:
http://www.vision.caltech.edu/bouguetj/calib_doc/ 阅读全文
摘要:
http://www.albahari.com/threading/ 阅读全文
摘要:
//第一种方法 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 != "") ... 阅读全文
摘要:
http://aspnetresources.com/articles/CustomErrorPages 阅读全文
摘要:
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)) && 阅读全文
摘要:
http://hi.baidu.com/comeon/item/adb078ce82a7750e0bd93a38 阅读全文