一杯清酒邀明月
天下本无事,庸人扰之而烦耳。
posts - 3121,comments - 209,views - 578万

随笔分类 -  VTK

上一页 1 2 3 4 5 6 ··· 10 下一页
VTK 实例48:巴沃斯特高通滤波器(频域处理)
摘要:1 #include "vtkAutoInit.h" 2 VTK_MODULE_INIT(vtkRenderingOpenGL2); 3 VTK_MODULE_INIT(vtkInteractionStyle); 4 5 #include <vtkSmartPointer.h> 6 #include 阅读全文
posted @ 2023-08-15 13:22 一杯清酒邀明月 阅读(64) 评论(0) 推荐(0) 编辑
VTK 实例47:理想高通滤波器(频域处理)
摘要:1 #include "vtkAutoInit.h" 2 VTK_MODULE_INIT(vtkRenderingOpenGL2); 3 VTK_MODULE_INIT(vtkInteractionStyle); 4 5 #include <vtkSmartPointer.h> 6 #include 阅读全文
posted @ 2023-08-15 13:22 一杯清酒邀明月 阅读(45) 评论(0) 推荐(0) 编辑
VTK 实例46:巴特沃斯低通滤波器(频域处理)
摘要:1 #include "vtkAutoInit.h" 2 VTK_MODULE_INIT(vtkRenderingOpenGL2); 3 VTK_MODULE_INIT(vtkInteractionStyle); 4 5 #include <vtkSmartPointer.h> 6 #include 阅读全文
posted @ 2023-08-15 13:21 一杯清酒邀明月 阅读(91) 评论(0) 推荐(0) 编辑
VTK 实例45:理想低通滤波器(频域处理)
摘要:1 #include "vtkAutoInit.h" 2 VTK_MODULE_INIT(vtkRenderingOpenGL2); 3 VTK_MODULE_INIT(vtkInteractionStyle); 4 5 #include <vtkSmartPointer.h> 6 #include 阅读全文
posted @ 2023-08-15 13:20 一杯清酒邀明月 阅读(47) 评论(0) 推荐(0) 编辑
VTK 实例44:二维图像快速傅里叶变换(频域处理)
摘要:1 #include "vtkAutoInit.h" 2 VTK_MODULE_INIT(vtkRenderingOpenGL2); 3 VTK_MODULE_INIT(vtkInteractionStyle); 4 5 #include <vtkSmartPointer.h> 6 #include 阅读全文
posted @ 2023-08-15 11:59 一杯清酒邀明月 阅读(65) 评论(0) 推荐(0) 编辑
VTK 实例43:各向异性滤波(图像光滑)
摘要:1 #include "vtkAutoInit.h" 2 VTK_MODULE_INIT(vtkRenderingOpenGL2); 3 VTK_MODULE_INIT(vtkInteractionStyle); 4 5 #include <vtkSmartPointer.h> 6 #include 阅读全文
posted @ 2023-08-15 11:59 一杯清酒邀明月 阅读(36) 评论(0) 推荐(0) 编辑
VTK 实例42:中值滤波(图像光滑)
摘要:1 #include "vtkAutoInit.h" 2 VTK_MODULE_INIT(vtkRenderingOpenGL2); 3 VTK_MODULE_INIT(vtkInteractionStyle); 4 5 #include <vtkSmartPointer.h> 6 #include 阅读全文
posted @ 2023-08-15 11:58 一杯清酒邀明月 阅读(40) 评论(0) 推荐(0) 编辑
VTK 实例41:高斯平滑(图像光滑)
摘要:1 #include "vtkAutoInit.h" 2 VTK_MODULE_INIT(vtkRenderingOpenGL2); 3 VTK_MODULE_INIT(vtkInteractionStyle); 4 5 #include <vtkSmartPointer.h> 6 #include 阅读全文
posted @ 2023-08-15 11:55 一杯清酒邀明月 阅读(141) 评论(0) 推荐(0) 编辑
VTK 实例40:均值滤波(图像光滑)
摘要:1 #include "vtkAutoInit.h" 2 VTK_MODULE_INIT(vtkRenderingOpenGL2); 3 VTK_MODULE_INIT(vtkInteractionStyle); 4 5 #include <vtkSmartPointer.h> 6 #include 阅读全文
posted @ 2023-08-15 11:49 一杯清酒邀明月 阅读(45) 评论(0) 推荐(0) 编辑
VTK 实例39:拉普拉斯算子(边缘检测)
摘要:1 #include "vtkAutoInit.h" 2 VTK_MODULE_INIT(vtkRenderingOpenGL2); 3 VTK_MODULE_INIT(vtkInteractionStyle); 4 5 #include <vtkSmartPointer.h> 6 #include 阅读全文
posted @ 2023-08-15 11:46 一杯清酒邀明月 阅读(89) 评论(0) 推荐(0) 编辑
VTK 实例38:Sobel梯度算子(边缘检测)
摘要:1 #include "vtkAutoInit.h" 2 VTK_MODULE_INIT(vtkRenderingOpenGL2); 3 VTK_MODULE_INIT(vtkInteractionStyle); 4 5 #include <vtkSmartPointer.h> 6 #include 阅读全文
posted @ 2023-08-15 11:44 一杯清酒邀明月 阅读(62) 评论(0) 推荐(0) 编辑
VTK 实例37:梯度算子(边缘检测)
摘要:1 #include "vtkAutoInit.h" 2 VTK_MODULE_INIT(vtkRenderingOpenGL2); 3 VTK_MODULE_INIT(vtkInteractionStyle); 4 5 #include <vtkSmartPointer.h> 6 #include 阅读全文
posted @ 2023-08-15 11:43 一杯清酒邀明月 阅读(53) 评论(0) 推荐(0) 编辑
VTK 实例36:图像二值化
摘要:1 #include "vtkAutoInit.h" 2 VTK_MODULE_INIT(vtkRenderingOpenGL2); 3 VTK_MODULE_INIT(vtkInteractionStyle); 4 5 #include <vtkSmartPointer.h> 6 #include 阅读全文
posted @ 2023-08-15 11:42 一杯清酒邀明月 阅读(44) 评论(0) 推荐(0) 编辑
VTK 实例35:图像运算(逻辑运算)
摘要:1 #include "vtkAutoInit.h" 2 VTK_MODULE_INIT(vtkRenderingOpenGL2); 3 VTK_MODULE_INIT(vtkInteractionStyle); 4 5 #include <vtkSmartPointer.h> 6 #include 阅读全文
posted @ 2023-08-15 11:40 一杯清酒邀明月 阅读(31) 评论(0) 推荐(0) 编辑
VTK 实例34:图像运算(数字运算)
摘要:1 #include "vtkAutoInit.h" 2 VTK_MODULE_INIT(vtkRenderingOpenGL2); 3 VTK_MODULE_INIT(vtkInteractionStyle); 4 5 #include <vtkMath.h> 6 #include <vtkSma 阅读全文
posted @ 2023-08-15 11:40 一杯清酒邀明月 阅读(42) 评论(0) 推荐(0) 编辑
VTK 实例33:图像重采样(降和升采样)
摘要:1 #include "vtkAutoInit.h" 2 VTK_MODULE_INIT(vtkRenderingOpenGL2); 3 VTK_MODULE_INIT(vtkInteractionStyle); 4 5 #include <vtkSmartPointer.h> 6 #include 阅读全文
posted @ 2023-08-15 11:39 一杯清酒邀明月 阅读(132) 评论(0) 推荐(0) 编辑
VTK 实例32:图像重采样(降采样)
摘要:1 #include "vtkAutoInit.h" 2 VTK_MODULE_INIT(vtkRenderingOpenGL2); 3 VTK_MODULE_INIT(vtkInteractionStyle); 4 5 #include <vtkSmartPointer.h> 6 #include 阅读全文
posted @ 2023-08-15 11:35 一杯清酒邀明月 阅读(74) 评论(0) 推荐(0) 编辑
VTK 实例31:灰度图像直方图
摘要:1 #include "vtkAutoInit.h" 2 VTK_MODULE_INIT(vtkRenderingOpenGL2); 3 VTK_MODULE_INIT(vtkInteractionStyle); 4 5 #include <vtkActor.h> 6 #include <vtkBa 阅读全文
posted @ 2023-08-15 11:34 一杯清酒邀明月 阅读(79) 评论(0) 推荐(0) 编辑
VTK 实例30:提取BMP图像的感兴趣区域(区域提取)
摘要:1 #include "vtkAutoInit.h" 2 VTK_MODULE_INIT(vtkRenderingOpenGL2); 3 VTK_MODULE_INIT(vtkInteractionStyle); 4 5 #include <vtkSmartPointer.h> 6 #include 阅读全文
posted @ 2023-08-15 11:29 一杯清酒邀明月 阅读(62) 评论(0) 推荐(0) 编辑
VTK 实例29:多个灰度图像合成一个彩色图像(颜色合成)
摘要:1 #include "vtkAutoInit.h" 2 VTK_MODULE_INIT(vtkRenderingOpenGL2); 3 VTK_MODULE_INIT(vtkInteractionStyle); 4 5 #include <vtkSmartPointer.h> 6 #include 阅读全文
posted @ 2023-08-15 11:28 一杯清酒邀明月 阅读(87) 评论(0) 推荐(0) 编辑

上一页 1 2 3 4 5 6 ··· 10 下一页
< 2025年3月 >
23 24 25 26 27 28 1
2 3 4 5 6 7 8
9 10 11 12 13 14 15
16 17 18 19 20 21 22
23 24 25 26 27 28 29
30 31 1 2 3 4 5

点击右上角即可分享
微信分享提示