上一页 1 ··· 8 9 10 11 12 13 14 15 16 ··· 31 下一页
摘要: 1)VTK插件dll放置路径:QVTKWidgetPlugin.dll、QVTKWidgetPlugin.lib、QVTKWidgetPlugin.exp QT插件路径:D:\Qt\Qt5.9.1\Tools\QtCreator\bin\plugins\designer VS插件路径:D:\Qt\Q 阅读全文
posted @ 2021-10-12 10:52 kuaqi 阅读(141) 评论(0) 推荐(0)
摘要: 1、有一个CMakeLists.txt文件,编译时,就会生成对应的一个文件夹, 2、如何将编译生成文件与源文件区分开? cd "cmakelists.txt路径" mkdir build cd build cmake ...... .. #注意最后的两个点 3、cmake + nmake: 使用nm 阅读全文
posted @ 2021-09-29 23:43 kuaqi 阅读(58) 评论(0) 推荐(0)
摘要: https://www.zhihu.com/question/27455963/answer/36722992 1、CMakeLists.txt由用户完成 2、cmake根据CMakeList.txt文件生成makefile;makefile文件是基于平台的; 3、make工具:可以看成一个智能的批 阅读全文
posted @ 2021-09-26 13:48 kuaqi 阅读(764) 评论(0) 推荐(0)
摘要: uic - o ui_hellodialog.h hellodialog.uiqmake -project修改.pro文件,例如:greaterThan(QT_MAJOR_VERSION, 4): QT += widgets qmake mingw32-make uic - o ui_hellodi 阅读全文
posted @ 2021-09-10 15:08 kuaqi 阅读(358) 评论(0) 推荐(0)
摘要: 1、图片维度增减 tf.expand_dims(input, 0) #(256, 256, 3) -> (1, 256, 256, 3)input[tf.newaxis, ...] #(256, 256, 3) ->(1, 256, 256, 3) 阅读全文
posted @ 2021-08-01 15:46 kuaqi 阅读(147) 评论(0) 推荐(0)
摘要: 1、显示模型结构(model architecture) generator = Generator() tf.keras.utils.plot_model(generator, show_shapes = True, dpi=64) 2、 阅读全文
posted @ 2021-08-01 00:47 kuaqi 阅读(48) 评论(0) 推荐(0)
摘要: 安装环境tensorflow2.5+python3.8.8 https://blog.csdn.net/xubuhui/article/details/100915320 1、下载模型源码 下载地址:https://github.com/tensorflow/models 2、安装protoc 地址 阅读全文
posted @ 2021-07-28 19:03 kuaqi 阅读(393) 评论(0) 推荐(0)
摘要: 一 阅读全文
posted @ 2021-07-24 23:50 kuaqi 阅读(17) 评论(0) 推荐(0)
摘要: 一、 阅读全文
posted @ 2021-07-24 23:50 kuaqi 阅读(43) 评论(0) 推荐(0)
摘要: 一、一般模型搭建 1、使用sequential建立模型 data_augmentation = keras.Sequential([ layers.experimental.preprocessing.RandomFlip("horizontal", input_shape=(img_height, 阅读全文
posted @ 2021-07-24 23:47 kuaqi 阅读(341) 评论(0) 推荐(0)
上一页 1 ··· 8 9 10 11 12 13 14 15 16 ··· 31 下一页