- 博客(69)
- 资源 (2)
- 收藏
- 关注

转载 彻底删除Ubuntu EFI分区及启动项
此篇为转载因为多次使用,有时候找的比较麻烦,故直接转载。此篇推荐给双系统的朋友们======================== 转载地址 ===================彻底删除Ubuntu EFI分区及启动项\n\n\n\n\n\n1、查看电脑分区信息电脑分区信息如我上一篇博客所示,打开win10磁盘管理器,可以看到相应分区信息,具体如下图(根据个人分区方式会不同)...
2019-09-30 15:44:07
670
1
原创 torch.clamp()函数不奏效
算子对a并没有限制住, a并不是标准的1.,在数据中是会存在一定偏差的。今天在训练网络的过程中,存在以前没有遇到过的问题。
2023-11-06 14:12:24
262
1
原创 交互式分割: Interactive Object Segmentation with Inside-Outside Guidance
交互式分割
2022-12-12 14:43:03
1014
原创 Could not run ‘aten::slow_conv3d_forward‘ with arguments from the ‘CUDA‘ bac
torch输入到模型
2022-08-04 10:03:06
1509
转载 MFC--对话框模式下实现ListControl控件中动态创建ComboBox
mfc ListControl+动态创建下拉框, 附 资源!!!
2022-07-13 09:37:10
1716
原创 c++ fstream创建文件
// 实现文件的写入和读取#include <stdio.h>#include <string>#include <iostream>#include <fstream>using namespace std;int main(){ string input_filename = "D:\\MVCVAE\\input.txt"; ifstream input(input_filename); // 定义一个ifstream并打开给定文
2022-05-08 23:27:02
1716
原创 mfc140ud.dll debug模式下报错
查看winnocc.cpp 303行大概是moveWindow函数问题对项目中的moveWindow函数进行debug, 找到问题,已解决
2022-03-30 11:32:19
587
原创 cuda编程--全局内存、共享内存、动态共享内存的使用
// error.cuh#pragma once#include <stdio.h>#include <cuda_runtime_api.h>#include <cuda_runtime.h>#define CHECK(call) \do \{
2022-01-29 10:05:02
1143
原创 cuda编程--获取设备信息
#include "error.cuh"#include <stdio.h>#include <cuda_runtime.h>#include <cuda_runtime_api.h>int main(){ int device_id = 0; CHECK(cudaSetDevice(device_id)); cudaDeviceProp prop; CHECK(cudaGetDeviceProperties(&prop, device_id
2022-01-15 14:35:20
401
原创 cuda编程-cudaMemcheck检查内存错误
(c) Microsoft Corporation。保留所有权利。C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.3\bin>cuda-memcheck.exe F:\VsProject\CudaProject\add1_gpu\x64\Debug\add1_gpu.exe========= CUDA-MEMCHECKCUDA Error: File: F:\VsProject\CudaProject\add1_
2022-01-15 11:18:57
1984
3
原创 CUDA编程--检查和函数
// error.cuh#pragma once#include <stdio.h>#define CHECK(call) \do \{ \ const cudaError_t error_code =
2022-01-15 11:11:22
1549
原创 CUDA编程出现未定义标识符blockDim
cu文件–属性–常规–生成文件 cuda c/c++添加头文件 #include <device_launch_parameters.h>
2022-01-13 09:50:09
1043
原创 keras遇到DLL load failed: 找不到指定的模块。
Using TensorFlow backend.Traceback (most recent call last): File "C:\ProgramData\Anaconda3\envs\tf1.13\lib\site-packages\tensorflow\python\pywrap_tensorflow.py", line 58, in <module> from tensorflow.python.pywrap_tensorflow_internal import *
2021-12-15 14:11:17
2619
原创 VTk-Delaunay表面重建方法
#include "vtkAutoInit.h" VTK_MODULE_INIT(vtkRenderingOpenGL2);VTK_MODULE_INIT(vtkInteractionStyle);VTK_MODULE_INIT(vtkRenderingFreeType);#include <vtkSmartPointer.h>#include <vtkProperty.h>#include <vtkPoints.h>#include <vtkPo
2021-12-04 16:17:57
362
原创 VTK-模型细化
#include "vtkAutoInit.h" VTK_MODULE_INIT(vtkRenderingOpenGL2);VTK_MODULE_INIT(vtkInteractionStyle);VTK_MODULE_INIT(vtkRenderingFreeType);#include <vtkSmartPointer.h>#include <vtkCellData.h>#include <vtkCellArray.h>#include <vt
2021-12-04 16:13:33
254
原创 VTK-模型简化
#include "vtkAutoInit.h" VTK_MODULE_INIT(vtkRenderingOpenGL2);VTK_MODULE_INIT(vtkInteractionStyle);VTK_MODULE_INIT(vtkRenderingFreeType);#include <vtkPolyData.h>#include <vtkSphereSource.h>#include <vtkDecimatePro.h>#include <
2021-12-04 15:17:57
405
原创 VTK连通域检测并保存
#include "vtkAutoInit.h" VTK_MODULE_INIT(vtkRenderingOpenGL2);VTK_MODULE_INIT(vtkInteractionStyle);VTK_MODULE_INIT(vtkRenderingFreeType);#include <vtkSmartPointer.h>#include <vtkSphereSource.h>#include <vtkConeSource.h>#include &
2021-12-04 15:14:46
295
原创 VTK-区域闭合检测与填充
#include "vtkAutoInit.h" VTK_MODULE_INIT(vtkRenderingOpenGL2);VTK_MODULE_INIT(vtkInteractionStyle);VTK_MODULE_INIT(vtkRenderingFreeType);#include <vtkSmartPointer.h>#include <vtkSelectionNode.h>#include <vtkInformation.h>#include
2021-12-04 14:38:23
1090
原创 vtk拉普拉斯平滑
#include "vtkAutoInit.h" VTK_MODULE_INIT(vtkRenderingOpenGL2);VTK_MODULE_INIT(vtkInteractionStyle);VTK_MODULE_INIT(vtkRenderingFreeType);#include <vtkSmartPointer.h>#include <vtkPolyDataReader.h>#include <vtkPolyData.h>#include &
2021-12-04 14:26:44
284
转载 vtk曲率可视化显示
#include "vtkAutoInit.h" VTK_MODULE_INIT(vtkRenderingOpenGL2);VTK_MODULE_INIT(vtkInteractionStyle);VTK_MODULE_INIT(vtkRenderingFreeType);#include <vtkSmartPointer.h>#include <vtkCurvatures.h>#include <vtkPolyDataReader.h>#include
2021-12-04 14:19:07
240
原创 vtk计算点数据在cell表面上的距离
#include <vtkAutoInit.h>VTK_MODULE_INIT(vtkRenderingOpenGL2);#include <vtkSphereSource.h>#include <vtkProperty.h>#include <vtkPolyData.h>#include <vtkSmartPointer.h>#include <vtkPolyDataMapper.h>#include <vtkA
2021-12-04 13:28:24
395
1
原创 vtk计算cell的属性
#include <vtkAutoInit.h>VTK_MODULE_INIT(vtkRenderingOpenGL2);#include <vtkSmartPointer.h>#include <vtkPointData.h>#include <vtkPolyDataMapper.h>#include <vtkActor.h>#include <vtkScalarBarActor.h>#include <vtkR
2021-12-04 13:24:37
288
原创 vtkPolyData点集的颜色数据
#include <vtkAutoInit.h>VTK_MODULE_INIT(vtkRenderingOpenGL2);/********************************************************************** 文件名: 6.1_PolyDataAttribute.cpp Copyright (c) 张晓东, 罗火灵. All rights reserved. 更多信息请访问: http://www.vtkchina.o
2021-12-04 13:09:47
516
原创 vtk平面交互
#include <vtkAutoInit.h>VTK_MODULE_INIT(vtkRenderingOpenGL2);#include <vtkSmartPointer.h>#include <vtkMetaImageReader.h>#include <vtkDicomImageReader.h>#include <vtkMatrix4x4.h>#include <vtkLookupTable.h>#include
2021-12-01 22:52:03
1883
原创 vtk提取切面
#include <vtkAutoInit.h>VTK_MODULE_INIT(vtkRenderingOpenGL2);#include <vtkSmartPointer.h>#include <vtkImageData.h>#include <vtkMetaImageReader.h>#include <vtkMatrix4x4.h> //#include <vtkImageReslice.h>#includ...
2021-12-01 22:23:36
2197
原创 torch安装tensorboardX记录
tensorboardX安装前请务必安装tensorflowtensorboardX安装前请务必安装tensorflowtensorboardX安装前请务必安装tensorflowconda install torchconda install tensorflow-gpuconda install tensorboardX假如报 h5py的 错误pip uninstall h5py...
2021-11-19 16:09:18
1684
原创 去除edge浏览器最近的小菜单
最近edge浏览器莫名其妙的出现…的操作, 类似这样在设置中关闭这些开关就去除了 。== 关闭选择文本时显示迷你菜单 ==
2021-11-19 14:12:45
2220
原创 python根据点生成heatmap函数
来源: verse-冠军方案 def generate_heatmap(self, coords, sigma_scale_factor, dtype=np.float32): """ Generates a numpy array of the landmark image for the specified point and parameters. :param coords: numpy coordinates ([x], [x, y] or
2021-11-17 14:00:18
1906
原创 小米手机解锁 usb3.0状态下
手机usb调试开启, 绑定设备也搞定下载小米的解锁工具手机关机,到fastboost下登录解锁工具,大概率出现解锁按钮是灰色的打开我的电脑–设备管理器–找到Android对这个Android右击更新驱动–手动更新–目录在搞机工具–driver文件夹–对应win10安装成功解锁–等待168小时...
2021-11-11 22:54:34
4757
原创 python广播机制应用
原因遇到一个小问题:假如有一个数组shape = (320,320),我想复制5遍这个数组,变成(5,320,320)。原先的做法是for _ in range(5): out_array[_,:,:] = intput_array[:,:]感觉写的太烦了后来想起来python有个广播机制改成如下代码: # [5,1,1] * [1,320,320] out_array = np.ones([5,1,1]) * np.expand_dims(input_array, axis=-1)
2021-09-28 16:49:45
164
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人