应用开发---VTK放大镜(区域放大)功能实现

 VTK 医学图像处理---放大镜/区域放大功能

 本博文主要内容为:实现放大镜的源代码;实现思路;具体代码说明。

目录

 VTK 医学图像处理---放大镜/区域放大功能

简介:

1  放大镜源代码

1 wxInteractorStyleImage 类源代码

2 wxMagnifierAcotor类源代码

3 Magnifier.cpp 源代码

 2 放大镜实现思路

 总结:


简介:

       放大镜(局部放大)在医学图像处理软件中是一个常用的功能,本博文基于VTK实现放大镜功能,该功能主要涉及到交互和放大镜功能实现,具体实现过程中(源代码中),wxInteractorStyleImage类主要实现左键按下、移动到抬起这个过程中局部图像放大的交互;wxMagnifierAcotor类实现局部图像方法功能的实现和显示。

1  放大镜源代码

Main函数入口和主体在 <021_Magnifier.cpp>文件中,wxInteractorStyleImage类主要实现鼠标的交互功能,wxMagnifierAcotor类实现局部图像方法功能的实现和显示。项目工程组织如下图:

在自己的项目中添加 wxInteractorStyleImage 和 wxMagnifierAcotor 两个类的源码(可以自己新建类,把下面代码拷贝进来,然后修改下文件名称即可),然后将Magnifier.cpp文件中的内容拷贝到自己项目main函数所在文件,就可以直接运行。

1 wxInteractorStyleImage 类源代码

头文件如下:


#ifndef wxInteractorStyleImage_h
#define wxInteractorStyleImage_h#include "vtkInteractorStyleTrackballCamera.h"// Motion flags#define VTKIS_WINDOW_LEVEL 1024
#define VTKIS_SLICE        1025
#define VTKIS_MAGNIFIER    1026  /* 添加放大镜事件 ID */// Style flags#define VTKIS_IMAGE2D 2
#define VTKIS_IMAGE3D 3
#define VTKIS_IMAGE_SLICING 4class vtkImageProperty;
class wxMagnifierAcotor;class wxInteractorStyleImage : public vtkInteractorStyleTrackballCamera
{
public:static wxInteractorStyleImage *New();vtkTypeMacro(wxInteractorStyleImage, vtkInteractorStyleTrackballCamera);void PrintSelf(ostream& os, vtkIndent indent) override;virtual void SetMagnifier(wxMagnifierAcotor* pActor);//@{/*** Some useful information for handling window level*/vtkGetVector2Macro(WindowLevelStartPosition, int);vtkGetVector2Macro(WindowLevelCurrentPosition, int);//@}//@{/*** Event bindings controlling the effects of pressing mouse buttons* or moving the mouse.*/void OnMouseMove() override;void OnLeftButtonDown() override;void OnLeftButtonUp() override;void OnMiddleButtonDown() override;void OnMiddleButtonUp() override;void OnRightButtonDown() override;void OnRightButtonUp() override;//@}/*** Override the "fly-to" (f keypress) for images.*/void OnChar() override;// These methods for the different interactions in different modes// are overridden in subclasses to perform the correct motion. Since// they might be called from OnTimer, they do not have mouse coord parameters// (use interactor's GetEventPosition and GetLastEventPosition)virtual void WindowLevel();virtual void Pick();virtual void Slice();// Interaction mode entry points used internally.virtual void StartWindowLevel();virtual void EndWindowLevel();virtual void StartPick();virtual void EndPick();virtual void StartSlice();virtual void EndSlice();virtual void StartMagnifier();virtual void EndMagnifier();virtual void Magnifier();//@{/*** Set/Get current mode to 2D or 3D.  The default is 2D.  In 3D mode,* it is possible to rotate the camera to view oblique slices.  In Slicing* mode, it is possible to slice through the data, but not to generate oblique* views by rotating the camera.*/vtkSetClampMacro(InteractionMode, int, VTKIS_IMAGE2D, VTKIS_IMAGE_SLICING);vtkGetMacro(InteractionMode, int);void SetInteractionModeToImage2D() {this->SetInteractionMode(VTKIS_IMAGE2D);}void SetInteractionModeToImage3D() {this->SetInteractionMode(VTKIS_IMAGE3D);}void SetInteractionModeToImageSlicing() {this->SetInteractionMode(VTKIS_IMAGE_SLICING);}//@}//@{/*** Set the orientations that will be used when the X, Y, or Z* keys are pressed.  See SetImageOrientation for more information.*/vtkSetVector3Macro(XViewRightVector, double);vtkGetVector3Macro(XViewRightVector, double);vtkSetVector3Macro(XViewUpVector, double);vtkGetVector3Macro(XViewUpVector, double);vtkSetVector3Macro(YViewRightVector, double);vtkGetVector3Macro(YViewRightVector, double);vtkSetVector3Macro(YViewUpVector, double);vtkGetVector3Macro(YViewUpVector, double);vtkSetVector3Macro(ZViewRightVector, double);vtkGetVector3Macro(ZViewRightVector, double);vtkSetVector3Macro(ZViewUpVector, double);vtkGetVector3Macro(ZViewUpVector, double);//@}/*** Set the view orientation, in terms of the horizontal and* vertical directions of the computer screen.  The first* vector gives the direction that will correspond to moving* horizontally left-to-right across the screen, and the* second vector gives the direction that will correspond to* moving bottom-to-top up the screen.  This method changes* the position of the camera to provide the desired view.*/void SetImageOrientation(const double leftToRight[3],const double bottomToTop[3]);/*** Set the image to use for WindowLevel interaction.* Any images for which the Pickable flag is off are ignored.* Images are counted back-to-front, so 0 is the rearmost image.* Negative values can be used to count front-to-back, so -1 is* the frontmost image, -2 is the image behind that one, etc.* The default is to use the frontmost image for interaction.* If the specified image does not exist, then no WindowLevel* interaction will take place.*/virtual void SetCurrentImageNumber(int i);int GetCurrentImageNumber() { return this->CurrentImageNumber; }/*** Get the current image property, which is set when StartWindowLevel* is called immediately before StartWindowLevelEvent is generated.* This is the image property of the topmost vtkImageSlice in the* renderer or nullptr if no image actors are present.*/vtkImageProperty *GetCurrentImageProperty() {return this->CurrentImageProperty;}protected:wxInteractorStyleImage();~wxInteractorStyleImage() override;wxMagnifierAcotor* MagnifierAcotor;int WindowLevelStartPosition[2];int WindowLevelCurrentPosition[2];double WindowLevelInitial[2];vtkImageProperty *CurrentImageProperty;int CurrentImageNumber;int InteractionMode;double XViewRightVector[3];double XViewUpVector[3];double YViewRightVector[3];double YViewUpVector[3];double ZViewRightVector[3];double ZViewUpVector[3];private:wxInteractorStyleImage(const wxInteractorStyleImage&) = delete;void operator=(const wxInteractorStyleImage&) = delete;
};#endif

wxInteractorStyleImage类源代码 具体实现.cpp文件源码如下:

#include "wxInteractorStyleImage.h"#include "vtkAbstractPropPicker.h"
#include "vtkAssemblyPath.h"
#include "vtkPropCollection.h"#include "vtkCallbackCommand.h"
#include "vtkMath.h"
#include "vtkObjectFactory.h"
#include "vtkRenderer.h"
#include "vtkRenderWindow.h"
#include "vtkCamera.h"
#include "vtkRenderWindowInteractor.h"
#include "vtkImageSlice.h"
#include "vtkImageMapper3D.h"
#include "vtkImageProperty.h"
#include "wxMagnifierAcotor.h"vtkStandardNewMacro(wxInteractorStyleImage);//----------------------------------------------------------------------------
wxInteractorStyleImage::wxInteractorStyleImage()
{this->WindowLevelStartPosition[0] = 0;this->WindowLevelStartPosition[1] = 0;this->WindowLevelCurrentPosition[0] = 0;this->WindowLevelCurrentPosition[1] = 0;this->WindowLevelInitial[0] = 1.0; // Windowthis->WindowLevelInitial[1] = 0.5; // Levelthis->CurrentImageProperty = nullptr;this->CurrentImageNumber = -1;this->MagnifierAcotor = nullptr;this->InteractionMode = VTKIS_IMAGE2D;this->XViewRightVector[0] = 0;this->XViewRightVector[1] = 1;this->XViewRightVector[2] = 0;this->XViewUpVector[0] = 0;this->XViewUpVector[1] = 0;this->XViewUpVector[2] = -1;this->YViewRightVector[0] = 1;this->YViewRightVector[1] = 0;this->YViewRightVector[2] = 0;this->YViewUpVector[0] = 0;this->YViewUpVector[1] = 0;this->YViewUpVector[2] = -1;this->ZViewRig

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/pingmian/53163.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

速盾:低成本防御DDoS最佳方案是高防cdn吗?

随着互联网的快速发展&#xff0c;网络攻击也变得越来越普遍和严重。分布式拒绝服务攻击&#xff08;DDoS&#xff09;是一种常见的网络攻击方式&#xff0c;它利用大量的请求来淹没目标服务器&#xff0c;使其无法正常工作。为了保护服务器免受DDoS攻击的影响&#xff0c;使用…

2024高教杯数学建模A题思路

问题1:舞龙队沿螺距为55 cm 的等距螺线顺时针盘入 分析: 龙头速度:龙头前把手的行进速度始终保持1 m/s。螺线参数:螺距为55 cm,即0.55 m。初始条件:龙头位于螺线第16圈A点处。思路: 确定螺线方程:根据螺线的性质,建立极坐标方程,表示螺线各点的位置。计算时间步长:…

Android 打开 GBK项目如何设置成UTF-8

1.标题 今天打开一个eclipse老项目&#xff0c;编码格式为GBK&#xff0c;Android studio导入项目报错&#xff0c;本人想到一个方案就是批量修改文件格式从 GBK到 UTF-8&#xff0c;这样可以一键解决问题 2.开发脚本 使用前请备份代码 使用前请备份代码 使用前请备份代码…

构建STM32智能平衡车项目:PID控制算法与蓝牙通信技术

一、项目概述 项目目标和用途 本项目旨在设计和实现一款基于STM32单片机的平衡车。平衡车是一种新型的个人交通工具&#xff0c;广泛应用于短途出行、休闲娱乐等场景。通过本项目&#xff0c;我们希望能够实现一款具备良好稳定性和操控性的平衡车&#xff0c;能够在不同的地形…

vue-组件传值总结

Vue.js中实现组件间传值的方法有多种。以下是几种常见的传值方式的详细讲解和示例&#xff1a; 1.父组件向子组件传值&#xff08;props&#xff09; 父组件通过props向子组件传递数据&#xff0c;子组件可以接收并使用这些数据。当父组件重新渲染时&#xff0c;数据会被覆盖…

Python Opencv鼠标回调

使用 OpenCV 的 cv2.setMouseCallback() 方法来捕捉鼠标事件&#xff0c;并实现以下功能&#xff1a; 实时在鼠标指针附近显示其位置的像素坐标。通过左键双击&#xff0c;将像素坐标记录到数组中。通过右键点击&#xff0c;取消上一次添加的坐标。 下面是实现代码的示例&…

NLP从零开始------文本中阶处理之序列到序列模型(完整版)

1. 序列到序列模型简介 序列到序列( sequence to sequence, seq2seq) 是指输入和输出各为一个序列(如一句话) 的任务。本节将输入序列称作源序列&#xff0c;输出序列称作目标序列。序列到序列有非常多的重要应用&#xff0c; 其中最有名的是机器翻译( machine translation), 机…

WebRTC协议下的视频汇聚融合技术:EasyCVR视频技术构建高效视频交互体验

视频汇聚融合技术是指将来自不同源、不同格式、不同网络环境的视频流进行集中处理、整合和展示的技术。随着视频监控、远程会议、在线教育、直播娱乐等领域的快速发展&#xff0c;视频数据的规模急剧增长&#xff0c;对视频处理能力和效率提出了更高要求。视频汇聚融合技术通过…

思科IP访问控制列表3

#网络安全技术实现# #任务三扩展访问控制列表的控制3# #1配置计算机的IP 地址、子网掩码和网关 #2配置Switch-A的主机名称&#xff0c;创建vlan 10,20,30,并将Fa0/1划入vlan 10&#xff0c;Fa0/2划入vlan 20&#xff0c;G0/1划入vlan 30 Switch(config)#hostname Switch-A S…

「OC」iOS事件处理流程

「OC」初识iOS事件处理流程 文章目录 「OC」初识iOS事件处理流程触摸事件触摸事件的响应周期事件 响应者UIEventUITouchUIResponder 触摸流程系统响应阶段APP响应阶段寻找最佳响应者 构成响应链 寻找最佳响应者和响应链的区别总结参考资料 触摸事件 iOS的事件有好几种&#xf…

DriveLM的baseline复现

DriveLM是一篇很有意思的工作&#xff0c;把自动驾驶跟MLLM结合到一起了&#xff0c;实现端到端的感知or决策规划。 Repo&#xff1a;https://github.com/OpenDriveLab/DriveLM 该工作是基于nuScenes数据集做的&#xff0c;官方paper里给出了数据的具体构建方式&#xff0c;感…

ElasticSearch-关联关系

Elasticsearch并不擅长处理关联关系&#xff0c;一般会采用以下四种方法处理关联 对象类型嵌套对象 (Nested Object)父子关联关系 (Parent / Child)应用端关联 对象类型 在每一博客的文档中都保留作者的信息 如果作者信息发生变化&#xff0c;需要修改相关的博客文档 包含对象…

SpringBoot依赖之Spring Boot DevTools热部署开发增效工具

摘要&#xff1a;Spring项目又大又重&#xff0c;依赖多&#xff0c;编译启动慢&#xff0c;怎么提高研发效率呢&#xff1f;方法之一热部署&#xff01; 概念 Spring Boot DevTools 依赖名称: Spring Boot DevTools功能描述: Provides fast application restarts, LiveRelo…

softmax里边的exp用拟合验证精度。

文章目录 要验证Softmax函数中的指数运算&#xff08;exp函数&#xff09;对精度的影响&#xff0c;可以通过拟合一个函数来近似Softmax函数&#xff0c;并比较两者的输出结果。 import numpy as np import matplotlib.pyplot as plt# Softmax函数 def softmax(x):e_x np.exp…

25k的自动化测试面试题,原来都是这样~

小编热衷于收集整理资源&#xff0c;记录踩坑到爬坑的过程。希望能把自己所学&#xff0c;实际工作中使用的技术、学习方法、心得及踩过的一些坑&#xff0c;记录下来。也希望想做软件测试的你一样&#xff0c;通过我的分享可以少走一些弯路&#xff0c;可以形成一套自己的方法…

AI绘画时代的自媒体引流攻略:如何实现粉丝暴涨与盈利

一、AI绘画在自媒体引流和赚钱中的应用 创作独特视觉内容&#xff0c;吸引粉丝关注 AI绘画技术可以帮助自媒体从业者创作出独一无二的视觉内容&#xff0c;这些内容在社交媒体上具有很高的辨识度和吸引力。通过以下方式&#xff0c;AI绘画助力引流和赚钱&#xff1a; &#xf…

数学基础 -- 线性代数之伴随矩阵

伴随矩阵 1. 代数余子式 首先我们需要理解什么是代数余子式。对于一个 n n n \times n nn 的方阵 A A A&#xff0c;代数余子式 M i j M_{ij} Mij​ 是指从矩阵 A A A 中删除第 i i i 行和第 j j j 列后&#xff0c;剩下的子矩阵的行列式。 假设有一个 3 3 3 \time…

【软件】软件评审

目录 1. 说明2. 设计质量的评审内容3. 程序质量的评审内容3.1 软件结构3.2 功能的通用性3.3 模块的层次3.4 模块结构3.4 处理过程的结构 4. 与运行环境的接口5. 例题5.1 例题1 1. 说明 1.通常&#xff0c;把“质量”理解为“用户满意程度”。为了使得用户满意&#xff0c;有两…

SprinBoot+Vue图书馆预约与占座微信小程序的设计与实现

目录 1 项目介绍2 项目截图3 核心代码3.1 Controller3.2 Service3.3 Dao3.4 application.yml3.5 SpringbootApplication3.5 Vue3.6 uniapp代码 4 数据库表设计5 文档参考6 计算机毕设选题推荐7 源码获取 1 项目介绍 博主个人介绍&#xff1a;CSDN认证博客专家&#xff0c;CSDN平…

SpringBoot+Vue实现大文件上传(断点续传-后端控制(一))

SpringBootVue实现大文件上传&#xff08;断点续传&#xff09; 1 环境 SpringBoot 3.2.1&#xff0c;Vue 2&#xff0c;ElementUI&#xff0c;spark-md5 2 问题 在前一篇文章&#xff0c;我们写了通过在前端控制的断点续传&#xff0c;但是有两个问题&#xff0c;第一个问题&…