
三方库
comedate
这个作者很懒,什么都没留下…
展开
-
OpenMesh 9.0 源码下载地址
OpenMesh 下载地址原创 2023-09-03 15:24:34 · 222 阅读 · 0 评论 -
VTK 中平滑 Mesh 的方法 - vtkWindowedSincPolyDataFilter
VTK 中有比较多的平滑 Mesh 的方法,其中比较有效的方法是:vtkWindowedSincPolyDataFilter原创 2022-11-09 23:14:14 · 1513 阅读 · 0 评论 -
CMakeLists 增加 OpenMP 的支持
1. CMakeLists 增加如下:find_package(OpenMP REQUIRED)if(OpenMP_FOUND) message(STATUS "found openmp") set(CMAKE_C_FLAGS ${CMAKE_C_FLAGS}, ${OPENMP_C_FLAGS}) set(CMAKE_CXX_FLAGS ${CMAKE_CXX_FLAGS}, ${OPENMP_CXX_FLAGS})else() message(FATAL_ERRO原创 2022-05-19 22:18:18 · 3875 阅读 · 3 评论 -
[论文共读] Marching Cube 经典的文章
marching cube 最经典的文章:Lorensen W E, Cline H E. Marching cubes: A high resolution 3D surface construction algorithm. ACM SIGGRAPH Computer Graphics. 1987;21(4)原创 2022-02-28 21:41:36 · 1007 阅读 · 0 评论 -
Json 读文件错误:Expecting property name enclosed
Json 读文件错误:Expecting property name enclosed 解决方式原创 2021-12-25 21:23:59 · 5132 阅读 · 0 评论 -
python Numpy 转成 QImage 显示出来
import sysimport numpy as npfrom PyQt5.QtWidgets import QApplication, QLabelfrom PyQt5.QtGui import QImage, QPixmapif __name__ == '__main__': # create numpy image h, w = 300, 600 np_img = np.random.randint(0, 255, [h, w, 3], np.uint8)原创 2021-11-10 23:15:31 · 5909 阅读 · 2 评论 -
python 版本的指定 GPUSwitcher
Python 可以指定显卡使用 Cuda, 进行加速或者深度学习。通常通过 设置环境变量的方式。环境变量为:"CUDA_VISIBLE_DEVICES"原创 2021-11-04 22:38:13 · 322 阅读 · 0 评论 -
Linux 下修改用户组 与 所有者 命令
Linux 下修改用户组 与 所有者 命令chgrp -R chown -R原创 2021-08-22 22:02:28 · 630 阅读 · 0 评论 -
使用 PIL 得到文字信息,并转成 numpy 数据
def put_overlay_tags(dcm, overlay_origin, cols, rows, data):“”" 构建 overlay 相关的 tag “”"assert isinstance(dcm, DcmFileFormat), r’输入的参数类型必须为 DcmFileFormat’overlay_origin = np.array(overlay_origin, dtype=np.int16)dcm.put_dicom_tag(‘overlay0_origin’, overla原创 2021-08-09 22:12:38 · 913 阅读 · 0 评论 -
Sanic 最简单的一个例子
from sanic import Sanicfrom sanic.response import textapp = Sanic(name)@app.route("/")async def test(request):return text(‘Hello world!’)app.run(host=“127.0.0.1”, port=8000, debug=True)原创 2021-07-06 22:41:47 · 381 阅读 · 0 评论 -
使用 numpy column_stack row_stack 填充矩阵
有时候,我们需要将图像进行扩边。使用 python numpy 可以很容易的实现这个功能。- numpy.full 返回一个给定形状和类型的新数组,填充了 fill_value- numpy.row_stack 垂直(按行)按顺序堆叠数组。- numpy.column_stack 将一维数组作为列堆叠到二维数组中。原创 2021-07-05 22:51:37 · 740 阅读 · 0 评论 -
python 实现统计图像上的椭圆(ellipse) 内的信息
python 实现统计图像上的椭圆(ellipse) 内的信息原创 2021-06-22 21:48:25 · 1687 阅读 · 0 评论 -
DCMTK 中源代码中使用 Overlay 的例子
/* * * Copyright (C) 1998-2018, OFFIS e.V. * All rights reserved. See COPYRIGHT file for details. * * This software and supporting documentation were developed by * * OFFIS e.V. * R&D Division Health * Escherweg 2 * D-26121 Ol原创 2021-06-16 22:34:34 · 495 阅读 · 0 评论 -
smallpt 源代码 - path tracer
#include <math.h> // smallpt, a Path Tracer by Kevin Beason, 2008#include <stdlib.h> // Make : g++ -O3 -fopenmp smallpt.cpp -o smallpt#include <stdio.h> // Remove "-fopenmp" for g++ version < 4.2struct Vec { // Usag原创 2021-04-24 23:20:18 · 467 阅读 · 0 评论 -
新 Linux 机器下安装 Python 的 Pip 包
通常情况下,如果我们使用Python时,直接 Anaconda 安装包,就可以使用Python 环境了。但是,有时候 Linux上觉得 Conda 包有点大,也可以通过 pip 的方式,安装自己需要的包。因此,可以直接使用 下载安装包的方式,进行安装。一般都有如下的几步:下载 tar.gz 包:在 https://pypi.org/project 网站上下载 pip 的 tar.gz 包解压包:解压命令tar -zxvf pip-21.0.1.tar.gz进入到解压包中:c原创 2021-03-27 10:37:12 · 249 阅读 · 1 评论 -
查看 pytorch 以及 torchvision 版本号
查看 pytorch 以及 torchvision 版本号原创 2021-02-08 07:37:30 · 5449 阅读 · 0 评论 -
VTK 的 Remote功能 SplineDrivenImageSlicer 修复
对于 VTK 使用者来说,在使用CMake编译VTK 9.0的时候,可以选择打开Remote 功能。如VTK_MODULE_ENALBE_VTK_SplineDrivenImageSlicer=YES 这个扩展功能的主要作用是:使用曲面重建的功能,如实现CPR的功能。原创 2021-02-08 06:43:13 · 849 阅读 · 3 评论 -
Linux 系统下配置 vim 的 python 环境
从 Windows 切换到 Linux 下Python 开发,可以使用 VSCode 这个IDE,也可以使用 vim + plugin 的方式开发。 下面是一些 linux 需要掌握的基本技能,记录下来。原创 2021-01-17 16:22:46 · 418 阅读 · 0 评论 -
python 实现对三维点的高斯平滑 gaussion smooth
python 实现对三维点的高斯平滑(gaussion smooth), 主要是使用 Python中的 scipy.stats 这个统计函数。原创 2021-01-17 15:57:29 · 2824 阅读 · 0 评论 -
GIT中 删除文件 方法介绍
# 删除 untracked filesgit clean -f # 连 untracked 的目录也一起删掉git clean -fd # 连 gitignore 的untrack 文件/目录也一起删掉 (慎用,一般这个是用来删掉编译出来的 .o之类的文件用的)git clean -xfd # 在用上述 git clean 前,墙裂建议加上 -n 参数来先看看会删掉哪些文件,防止重要文件被误删git clean -nxfdgit clean -nfgit clean -nfd原创 2020-12-11 22:14:43 · 321 阅读 · 0 评论 -
QT中Trackball的实现
Trackball 的原理图 以及 QT中实现的Trackball的交互原创 2020-12-10 21:37:19 · 824 阅读 · 0 评论 -
python 读取 Raw文件 生成 Numpy 数组
Python 读取 Raw 文件 生成 Numpy 的数组原创 2020-12-10 21:21:10 · 3137 阅读 · 0 评论 -
CodeBlocks 快速安装 与配色
最近 使用 VS2017 的社区版本,总是过期了。决定使用 CodeBlocks。CodeBlocks 安装网址: http://www.codeblocks.org/downloads/26编码颜色配置 vim颜色方案发现,CodeBlocks 编译速度,比VS2017 快多了。原创 2020-12-05 22:34:14 · 235 阅读 · 0 评论 -
C++的 pack 与 unpack的方法
// string::begin/end#include #include #include int main (){std::string str (“Test string”);for ( std::string::iterator it=str.begin(); it!=str.end(); ++it)std::cout << *it;std::cout << ‘\n’;int temp_1;int temp_2;std::vector<float原创 2020-11-29 22:03:53 · 3021 阅读 · 0 评论 -
Thrust 入门常用 网址 - Thrust Example
Thrust Example Thrust DocumentThrust 是一种使用Cuda 加速的三方库,比使用CPU的 TBB 加速效度更大。原创 2020-11-29 22:58:35 · 232 阅读 · 0 评论 -
Git 简明用法以及应用场景
git fetch origingit checkoutgit mergegit checkoutgit commitgit pullgit pushgit statusgit add原创 2020-11-22 22:37:12 · 237 阅读 · 0 评论 -
python numpy 中的 searchsorted 用法
Help on function searchsorted in module numpy:searchsorted(a, v, side=‘left’, sorter=None)Find indices where elements should be inserted to maintain order.Find the indices into a sorted array `a` such that, if thecorresponding elements in `v` were inse原创 2020-11-22 20:40:56 · 776 阅读 · 0 评论 -
Python 的 property 与 Setter 联合使用管理装饰器
property和setter装饰器 作用:调用方法改为调用对象, 比如 : p.set_name() 改为 p.set_name 区别: 前者改变get方法,后者改变set方法效果图:代码:复制代码class Person:def init(self,name):self._name = namedef get_name(self): return self._namedef set_name(self,name): self._name = n原创 2020-11-07 06:43:23 · 131 阅读 · 0 评论 -
Python中的 SciPy 样条曲线插值
def generate_cpr_pic(self, rot_angle, quality): """ 生成cpr image,numpy.ndarray的格式 """ begin_time = time.time() self.set_angle(rot_angle) radian = rot_angle * math.pi / 180 self.cpr.set_rot_angle(radian=radian) ...原创 2020-11-07 06:23:39 · 4489 阅读 · 1 评论 -
git 同步远程分支与本地分支
这时就需要更新下本地的git分支保持和远程分支一致,使用下面命令即可:git remote update origin --prune原创 2020-11-03 18:42:27 · 1491 阅读 · 0 评论 -
OpenGL实现Volume Rendering 大致步骤
OpenGL实现Volume Rendering 大致步骤GLSL 实现转载 2016-01-28 17:39:30 · 4004 阅读 · 2 评论 -
protobuf 嵌套协议使用方法
protobuf 嵌套协议使用方法原创 2016-01-28 17:23:22 · 8599 阅读 · 0 评论 -
使用LibJpg保存JPG图像或数据
使用LibJpg保存JPG图像或数据原创 2015-08-01 14:45:26 · 1117 阅读 · 0 评论 -
[转] HashMap
哈希表模板类转载 2015-08-01 16:15:15 · 750 阅读 · 0 评论