上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 62 下一页
  2023年5月26日
摘要: HALCON error # 1201: Wrong type of control parameter 1 源码: HObject rgbImage; const int iRow = 1; const int iCol = 1; const char sz[3 * iRow*iCol] = {  阅读全文
posted @ 2023-05-26 16:34 闻缺陷则喜何志丹 阅读(9) 评论(0) 推荐(0) 编辑
  2023年5月18日
摘要: LINK : fatal error LNK1181: 无法打开输入文件“a.lib,b.lib” 可能原因是什么? a.lib和b.lib 应该用;隔开, 不小心分号写成了逗号 如果a.lib b.lib都找不到,只会提示a.lib找不到。 阅读全文
posted @ 2023-05-18 23:33 闻缺陷则喜何志丹 阅读(133) 评论(0) 推荐(0) 编辑
  2023年5月17日
摘要: lib的目标文件夹必须手动创建。 exe和obj的目标文件会自动创建。 阅读全文
posted @ 2023-05-17 16:11 闻缺陷则喜何志丹 阅读(2) 评论(0) 推荐(0) 编辑
摘要: 软件架构师何志丹  AcDbObjectId id = CAddEntity().AddCircle(0,0,300); AcDbObjectIdArray ids; ids.append(id); AcDbHatch* hatch = new AcDbHatch(); hatch->setPa 阅读全文
posted @ 2023-05-17 14:50 闻缺陷则喜何志丹 阅读(26) 评论(0) 推荐(0) 编辑
  2023年5月10日
摘要:  软件架构师何志丹 virtual AcRx::AppRetCode On_kInitAppMsg (void *pkt) { AcRx::AppRetCode retCode =AcRxArxApp::On_kInitAppMsg (pkt) ; acutPrintf(_T("a")); ac 阅读全文
posted @ 2023-05-10 10:32 闻缺陷则喜何志丹 阅读(12) 评论(0) 推荐(0) 编辑
摘要: 软件架构师需要评审概要设计并检查概要设计是否落实,所以设计模式是重点内容之一。 由于是演示程序,不考虑内存泄露 现实中,每个公司的产品,都封装成dll或exe中,其他公司是无法查看和修改的。 公司一定义了类库的标准,公司二和公司三,分别实现了此类库。公司四建立一个产品,公司五在公司四的产品上二次开发 阅读全文
posted @ 2023-05-10 10:18 闻缺陷则喜何志丹 阅读(2) 评论(0) 推荐(0) 编辑
  2023年5月9日
摘要: 软件架构师何志丹  AcDbDimStyleTableRecord* p = oo.GetEnt<AcDbDimStyleTableRecord>(); if( NULL != p ) { AcCmColor suiceng; suiceng.setColorIndex(colorIndex); 阅读全文
posted @ 2023-05-09 18:24 闻缺陷则喜何志丹 阅读(17) 评论(0) 推荐(0) 编辑
  2023年5月6日
摘要: FastReport以xml为数据源,有些xml节点可以提取表,有些节点不可以。能提取表的xml节点权且称为表节点。我观察了一下:表节点至少有一 个非表节点的子节点(如:<n1></n1>,不能是</n1>)或属性。 如果配置了schema,则以schema为准。 阅读全文
posted @ 2023-05-06 09:14 闻缺陷则喜何志丹 阅读(6) 评论(0) 推荐(0) 编辑
  2023年5月5日
摘要: StretchDIBits(hDC, 0, 0, img.cols,//drect.right, //显示窗口宽度 img.rows,//drect.bottom, //显示窗口高度 0, 0, img.cols, //图像宽度 img.rows, //图像高度 img.data, bitMapin 阅读全文
posted @ 2023-05-05 17:02 闻缺陷则喜何志丹 阅读(26) 评论(0) 推荐(0) 编辑
  2023年5月4日
摘要: threshold 16000行,16000列,用时13ms threshold 16000行,3列,大约1.3ms 某个算法,我优化后反而大大变慢 才发现的。 VC2013 halcon10。 可能原因: halcon进行了加速。 阅读全文
posted @ 2023-05-04 21:27 闻缺陷则喜何志丹 阅读(2) 评论(0) 推荐(0) 编辑
上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 62 下一页