CN109919987B - Three-dimensional medical image registration similarity calculation method based on GPU - Google Patents

Three-dimensional medical image registration similarity calculation method based on GPU Download PDF

Info

Publication number
CN109919987B
CN109919987B CN201910010146.7A CN201910010146A CN109919987B CN 109919987 B CN109919987 B CN 109919987B CN 201910010146 A CN201910010146 A CN 201910010146A CN 109919987 B CN109919987 B CN 109919987B
Authority
CN
China
Prior art keywords
thread
image
information
matrix
memory
Prior art date
Legal status (The legal status is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the status listed.)
Active
Application number
CN201910010146.7A
Other languages
Chinese (zh)
Other versions
CN109919987A (en
Inventor
冯远静
李思琦
谭志豪
张驰
曾庆润
陈余凯
诸葛启钏
Current Assignee (The listed assignees may be inaccurate. Google has not performed a legal analysis and makes no representation or warranty as to the accuracy of the list.)
Yuenaoyunfu medical information technology (Zhejiang) Co.,Ltd.
Original Assignee
Zhejiang University of Technology ZJUT
First Affiliated Hospital of Wenzhou Medical University
Priority date (The priority date is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the date listed.)
Filing date
Publication date
Application filed by Zhejiang University of Technology ZJUT, First Affiliated Hospital of Wenzhou Medical University filed Critical Zhejiang University of Technology ZJUT
Priority to CN201910010146.7A priority Critical patent/CN109919987B/en
Publication of CN109919987A publication Critical patent/CN109919987A/en
Application granted granted Critical
Publication of CN109919987B publication Critical patent/CN109919987B/en
Active legal-status Critical Current
Anticipated expiration legal-status Critical

Links

Images

Abstract

A GPU-based three-dimensional medical image registration similarity calculation method uses an operation platform with an NVIDIA GeForce series display card, performs a kernel function through reasonable thread distribution, combines a CPU and serial-parallel combination to calculate and process three-dimensional image gray information to obtain regional mutual information, and can perform similarity measurement on three-dimensional medical image registration. Compared with a common mutual information method, the method can obtain more accurate evaluation data, greatly improves the processing speed through GPU parallel computation, and can provide an accurate, stable and repeatable method for the three-dimensional medical image registration process.

Description

Three-dimensional medical image registration similarity calculation method based on GPU
Technical Field
The invention relates to the field of medical imaging and medical image registration in information technology computer imaging, in particular to a three-dimensional medical image registration similarity calculation method based on a GPU.
Background
With the development of medical imaging technology and the innovation of computer equipment, the resolution and imaging precision of medical images are continuously improved, so that the medical images are widely applied to clinical and medical research. The image registration technology is an indispensable important technology in a plurality of medical image applications, and various types of information are matched in the same space, so that disease analysis and diagnosis are facilitated.
The three-dimensional medical image registration process mainly comprises five parts of image preprocessing, image transformation, gray interpolation, target function optimization and similarity measure calculation. The ultimate goal of image registration is to maximize the similarity between the two images to be registered, which is usually determined quantitatively using a similarity measure. Common similarity measurement methods include sum of squares of errors, mean square error, root mean square error, cross-correlation coefficient, mutual information amount, and the like. The mutual information concept is derived from information theory and is used for expressing the amount of information contained in one system and the information contained in another system. In image registration, mutual information is often used to express the degree of correlation between one image and another image, and when two images are geometrically aligned, the statistical correlation (i.e., mutual information) of the gray values of the pixels corresponding to the images is maximized. Mutual information is widely applied to image registration technology because of the advantages of no need of preprocessing images, high registration accuracy, good robustness and the like.
Mutual information is a common similarity measurement method at present, and when the joint entropy is calculated by the traditional mutual information, only the probability that the same gray level appears in the same coordinate of a single pixel point in two images is considered, but the relative relation between the pixel and other pixels in the neighborhood space of the pixel is ignored, and the image space information is not grasped. Under the condition that the image has noise or is incomplete and the resolution ratio is low, the calculation of mutual information is easy to cause the image to fall into a local extremum. Therefore, in order to better solve the problem of similarity measurement, a method for registering images by using a regional mutual information measurement concept is provided, and the gray information of the image field space is also used as an important measurement standard to introduce mutual information calculation, so that the registration accuracy and robustness are improved. Compared with the traditional method for directly reading the gray level occurrence times of a single point by using mutual information, the method for calculating and counting the gray level image and the probability density has the advantages that the calculation process of the regional mutual information is more complicated, a large number of high-dimensional matrix calculations exist, the time consumption is far larger than that of the traditional mutual information, the cost of the paid time is very large, and how to calculate the high-dimensional matrix more quickly is the key for solving the problem.
Disclosure of Invention
In order to solve the problem that the time consumption for calculating the high-dimensional matrix in the regional mutual information measurement is long, the invention provides a three-dimensional medical image registration similarity calculation method based on a GPU, which can greatly shorten the running time, thereby improving the registration accuracy and robustness and enabling the regional mutual information measurement method to be better applied to the registration technology.
The technical scheme adopted by the invention for solving the technical problems is as follows:
a three-dimensional medical image registration similarity calculation method based on a GPU comprises the following steps:
reading data, opening a memory space in a CPU memory, reading two three-dimensional medical image data with the same resolution, marking the two images as a reference image R and a floating image F respectively, and marking the three-dimensional medical image, wherein the total pixel number N of the three-dimensional image is (x-2R) (y-2R) (z-2R), wherein x, y and z are the resolution of the three-dimensional image, and R is the radius of an adjacent point; creating column vector arrays based on neighborhood space information in a CPU memory, wherein each column vector array comprises d-2 (2r +1)3The voxels of the reference image R and the floating image F are R, respectively, 54 elementsi,j,kAnd Fi,j,kConnecting each corresponding voxel point of the two images with the information of the neighborhood voxel points to obtain a combined voxel Vi,j,kRepresents a d-dimensional space point PiAll of PiA joint distribution, i.e. a d × N sized matrix P, denoted P ═ P1,…,PN];
Opening a space in the video memory, and transmitting data to the video memory;
opening up a video memory space for data to be operated and variables needing to store results in a video memory, reading image data into a system memory by a CPU (central processing unit), obtaining the size of an image, opening up a memory space with the same size on a GPU (graphics processing unit) by using a cudaMalloc function, initializing the memory space, and opening up two d × N-sized video memory spaces for storing a combined gray-scale histogram P and an average value
Figure BDA0001935861720000021
And a space of d × d size for storing a covariance matrix C, using a cudaMemcpy function to convert image information data to be operated in a CPU memoryCopying to a GPU video memory;
step three, calculating the average value of the joint voxels
Figure BDA0001935861720000022
Using atomic operations in GPU, statistics
Figure BDA0001935861720000023
To obtain
Figure BDA0001935861720000024
Step four, distributing threads, executing kernel function and calculating the average value of the joint voxels
Figure BDA0001935861720000025
Difference P from joint distribution P0
Each thread block is allocated with nthreamedPerBlock 16 × 16 256 threads, and each thread grid is allocated with
Figure BDA0001935861720000026
The thread index in the thread block is threadedIndex, x + threadedX, y + blockDim, the thread index in the thread grid is blockIndex, x + blockIdx, y grid Dim, the thread index is i threadedIndex, blockDim, x blockDim, and each thread i is responsible for calculating:
Figure BDA0001935861720000028
after all threads finish computing, KiForm d × N matrix P0
Step five, calculating the covariance of each point in the neighborhood:
Figure BDA0001935861720000027
decomposing a large matrix into a plurality of sub-matrixes by introducing a shared memory and a matrix blocking concept, wherein each thread block only reads the sub-matrixes in the shared memory in the block for calculation, and then the matrixes in the shared memory are combined to obtain a final result, so as to obtain a covariance C, wherein C is a d x d matrix;
step six, transmitting the calculation result to a CPU memory by using a cudaMemcpy function, and calculating the joint entropy based on the CPU;
Rdthe information entropy of the covariance matrix for a set of positive-distribution points in space is calculated as follows:
Figure BDA0001935861720000031
substituting the covariance C obtained in the fifth step into the formula to obtain a joint information entropy H (R, F);
seventhly, solving the information entropies H (R), H (F) of the reference image and the floating image
Get CRAs a covariance matrix of the reference image, CFAnd (4) substituting the covariance matrix of the floating image into a formula to obtain the information entropy H (R) and H (F) of the two images respectively. Wherein C isRIs the upper left part of the covariance matrix C
Figure BDA0001935861720000032
Size submatrix, CFIs the lower right part of the covariance matrix C
Figure BDA0001935861720000033
A sub-matrix of size;
step eight, calculating the region mutual information RMI
And the final region mutual information is RMI (R, F) ═ H (R) + H (F) -H (R, F), and the similarity degree of the two three-dimensional medical images, namely the similarity degree of the reference image and the floating image, can be quantitatively analyzed and judged according to the RMI value of the region mutual information.
It can be seen from the above steps that the region mutual information needs to be calculated by using d × N54 × (x-2) (y-2) (z-2) data to perform joint information entropy, a large amount of matrix calculation needs to be performed, the complexity is high, and due to independence of a data processing process, GPU multithreading parallel processing can be used, and the registration efficiency, accuracy and robustness can be greatly improved by the GPU-based three-dimensional medical image registration similarity calculation method.
Further, the third stepIn the method, the kernel function thread index of the atomic operation is (threadidx.x + threadidx.y × blockdim.x) + (blockidx.x + blockidx.y × gridddim.x) × blockdim.x × blockdim.y, wherein threadidx.x and threadidx.y are thread indexes in the thread blocks in the x and y dimensions, respectively, blockidx.x and blockidx.y are thread block indexes in the x and y dimensions, respectively, blockdim.x and blockidx.y are thread block numbers in the x and y dimensions, respectively, and griddim.x and griddim.y are thread block numbers in the y dimension, respectively
Figure BDA0001935861720000035
Still further, in the fourth step, dim3 type thread blocks are set, each thread block has a dimension of 16 × 16, that is, 256 threads in total, and in order to ensure that the total prime number and the number of allocated threads are in an integer multiple relationship, and the number of bus thread blocks required by the allocated threads is solved by an upward rounding strategy to be equal to or greater than the total prime number
Figure BDA0001935861720000034
And ensuring that each voxel point has a unique corresponding thread and kernel function parameter and calculation, each thread performs independent and same operation, and acquiring data and processing the data according to the thread index i to complete calculation.
Due to the adoption of the technical scheme, the invention has the following advantages: the registration accuracy and robustness of the three-dimensional medical image can be effectively improved; the registration efficiency can be improved through GPU parallel acceleration; the method can provide a stable, efficient and repeatable analysis method for the research of the three-dimensional medical image.
Drawings
Fig. 1 is a flowchart of implementation steps of a three-dimensional medical image registration similarity calculation method based on a GPU.
FIG. 2 is a graph of the relationship between image data and high-dimensional voxels and associated voxels in the mutual regional information, where the conventional mutual information calculates the image gray scale information based on one-dimensional voxel value distribution, while the mutual regional information treats the image as a joint distribution of N d-dimensional points, where each of the associated voxel points contains the gray scale distribution of the same coordinate point and its unit neighborhood in two images.
Fig. 3 is a diagram illustrating the reading and storage of high-dimensional voxel information in the GPU, where each thread corresponds to a GPU video memory storage area for data storage and modification, the data has independence, and no conflict occurs between threads.
Detailed Description
The invention will be further explained with reference to the drawings.
Referring to fig. 1 to 3, a method for calculating the registration similarity of three-dimensional medical images based on a GPU includes the following steps:
reading data, opening a memory space in a CPU memory, reading two three-dimensional medical image data with the same resolution, marking the two images as a reference image R and a floating image F respectively, marking the three-dimensional medical image, neglecting the influence of an image edge voxel point on final information entropy as the main information of the image in the medical image is positioned in the center of the image, and obtaining the total pixel number N of the three-dimensional image which is (x-2R) (y-2R) (z-2R), wherein x, y and z are the resolution of the three-dimensional image and R is the radius of an adjacent point;
creating column vector arrays based on neighborhood space information in a CPU memory, wherein each column vector array comprises d-2 (2r +1)3The voxels of the reference image R and the floating image F are R, respectively, 54 elementsi,j,kAnd Fi,j,kConnecting each corresponding voxel point of the two images with the information of the neighborhood voxel points to obtain a combined voxel Vi,j,kRepresents a d-dimensional space point PiAll of PiA joint distribution, i.e. a d × N sized matrix P, denoted P ═ P1,…,PN];
Opening a space in the video memory, and transmitting data to the video memory;
opening up the video memory space for the data to be operated and the variable of the result to be stored in the video memory, and reading the image data into the system memory by the CPU to obtain the image size, so that the image size is ensuredOpening up memory spaces with the same size on a GPU by using a cudaMalloc function, initializing the memory spaces, and opening up two d × N-sized memory spaces for storing a combined gray-scale histogram matrix P and an average value
Figure BDA0001935861720000041
A space with the size of d × d is used for storing a covariance matrix C, and image information data to be operated in a CPU memory is copied to a GPU video memory by using a cudaMemcpy function;
step three, calculating the average value of the joint voxels
Figure BDA00019358617200000510
Using atomic operations in GPU, statistics
Figure BDA0001935861720000051
To obtain
Figure BDA0001935861720000052
Step four, distributing threads, executing kernel function and calculating the average value of the joint voxels
Figure BDA0001935861720000053
Difference P from joint distribution P0
Each thread block is allocated with nthreamedPerBlock 16 × 16 256 threads, and each thread grid is allocated with
Figure BDA0001935861720000054
The thread index in the thread block is threadedIndex, x + threadedX, y + blockDim, the thread index in the thread grid is blockIndex, x + blockIdx, y grid Dim, the thread index is i threadedIndex, blockDim, x blockDim, and each thread i is responsible for calculating:
Figure BDA0001935861720000055
after all threads finish computing, KiForm d × N matrix P0
Step five, calculating the covariance of each point in the neighborhood:
Figure BDA0001935861720000056
The covariance calculation is matrix multiplication, a large matrix is decomposed into a plurality of sub-matrixes by introducing a shared memory and a matrix blocking concept, each thread block only reads the sub-matrixes in the shared memory in the block for calculation, and then the matrixes in the shared memory are combined to obtain a final result, so that the covariance C is obtained, wherein C is a d x d matrix;
step six, transmitting the calculation result to a CPU memory by using a cudaMemcpy function, and calculating the joint entropy based on the CPU;
Rdthe information entropy of the covariance matrix for a set of positive-distribution points in space is calculated as follows:
Figure BDA0001935861720000057
substituting the covariance C obtained in the fifth step into the formula to obtain a joint information entropy H (R, F);
step seven, solving the information entropies H (R), H (F) of the reference image and the floating image;
get CRAs a covariance matrix of the reference image, CFAnd (4) substituting the covariance matrix of the floating image into a formula to obtain the information entropy H (R) and H (F) of the two images respectively. Wherein C isRIs the upper left part of the covariance matrix C
Figure BDA0001935861720000058
Size submatrix, CFIs the lower right part of the covariance matrix C
Figure BDA0001935861720000059
A sub-matrix of size;
step eight, calculating the region mutual information RMI;
and the final region mutual information is RMI (R, F) ═ H (R) + H (F) -H (R, F), and the similarity degree of the two three-dimensional medical images, namely the similarity degree of the reference image and the floating image, can be quantitatively analyzed and judged according to the RMI value of the region mutual information.
It can be seen from the above steps that the region mutual information needs to be calculated by using d × N54 × (x-2) (y-2) (z-2) data to perform joint information entropy, a large amount of matrix calculation needs to be performed, the complexity is high, and due to independence of a data processing process, GPU multithreading parallel processing can be used, and the registration efficiency, accuracy and robustness can be greatly improved by the GPU-based three-dimensional medical image registration similarity calculation method.
Further, in the third step, the atomic operation has a kernel function thread index of (threadidx.x + threadidx.y × blockdim.x) + (blockidx.x + blockidx.y × griddim.x) × blockdim.x × blockdim.y, where threadidx.x and threadidx.y are thread indices in the x and y dimensions of the thread block, blockidx.x and blockidx.y are thread indices in the x and y dimensions of the thread block, respectively, blockdix.x and blockdiy.y are thread numbers in the x and y dimensions, respectively, and griddim.x and griddim.y are thread numbers in the x and y dimensions, respectively
Figure BDA0001935861720000061
In the fourth step, dim3 type thread blocks are set, each thread block selects the dimension of 16 × 16, namely 256 threads in total, in order to ensure that the total prime number is in integral multiple relation with the number of the allocated threads, and the allocated threads are greater than or equal to the total prime number, the number of the bus thread blocks required by the allocated threads is solved by a strategy of rounding up
Figure BDA0001935861720000062
And ensuring that each voxel point has a unique corresponding thread and kernel function parameter and calculation, each thread performs independent and same operation, and acquiring data and processing the data according to the thread index i to complete calculation.

Claims (3)

1. A GPU-based three-dimensional medical image registration similarity calculation method is characterized by comprising the following steps:
reading data, opening a memory space in a CPU memory, reading two three-dimensional medical image data with the same resolution, marking the two images as a reference image R and a floating image F respectively, marking the three-dimensional medical image, neglecting the influence of an image edge voxel point on final information entropy as the main information of the image in the medical image is positioned in the center of the image, and obtaining the total pixel number N of the three-dimensional image which is (x-2R) (y-2R) (z-2R), wherein x, y and z are the resolution of the three-dimensional image and R is the radius of an adjacent point;
creating column vector arrays based on neighborhood space information in a CPU memory, wherein each column vector array comprises d-2 (2r +1)3The voxels of the reference image R and the floating image F are R, respectively, 54 elementsi,j,kAnd Fi,j,kConnecting each corresponding voxel point of the two images with the information of the neighborhood voxel points to obtain a combined voxel Vi,j,kRepresents a d-dimensional space point PiAll of PiA joint distribution, i.e. a d × N sized matrix P, denoted P ═ P1,…,PN];
Opening a space in the video memory, and transmitting data to the video memory;
opening up a video memory space for data to be operated and variables needing to store results in a video memory, reading image data into a system memory by a CPU (central processing unit), obtaining the size of an image, opening up a memory space with the same size on a GPU (graphics processing unit) by using a cudaMalloc function, initializing the memory space, and opening up two d × N-sized video memory spaces for storing a combined gray-scale histogram P and an average value
Figure FDA0002502019100000011
A space with the size of d × d is used for storing a covariance matrix C, and image information data to be operated in a CPU memory is copied to a GPU video memory by using a cudaMemcpy function;
step three, calculating the average value of the joint voxels
Figure FDA0002502019100000012
Using in GPUAtomic operations, statistics
Figure FDA0002502019100000013
To obtain
Figure FDA0002502019100000014
Step four, distributing threads, executing kernel function and calculating the average value of the joint voxels
Figure FDA0002502019100000015
Difference P from joint distribution P0
Each thread block is allocated with nthreamedPerBlock 16 × 16 256 threads, and each thread grid is allocated with
Figure FDA0002502019100000021
The thread index in the thread block is threadedIndex, x + threadedX, y + blockDim, the thread index in the thread grid is blockIndex, x + blockIdx, y grid Dim, the thread index is i threadedIndex, blockDim, x blockDim, and each thread i is responsible for calculating:
Figure FDA0002502019100000022
after all threads finish computing, KiForm d × N matrix P0
Step five, calculating the covariance of each point in the neighborhood:
Figure FDA0002502019100000023
the covariance calculation is matrix multiplication, a large matrix is decomposed into a plurality of sub-matrixes by introducing a shared memory and a matrix blocking concept, each thread block only reads the sub-matrixes in the shared memory in the block for calculation, and then the matrixes in the shared memory are combined to obtain a final result, so that the covariance C is obtained, wherein C is a d x d matrix;
step six, transmitting the calculation result to a CPU memory by using a cudaMemcpy function, and calculating the joint entropy based on the CPU;
Rdthe information entropy of the covariance matrix of a set of normal distribution points in space is calculated as follows:
Figure FDA0002502019100000024
substituting the covariance C obtained in the fifth step into the formula to obtain a joint information entropy H (R, F);
step seven, solving the information entropies H (R), H (F) of the reference image and the floating image;
get CRAs a covariance matrix of the reference image, CFSubstituting the covariance matrix of the floating image into a formula to obtain the respective information entropies H (R), H (F) of the two images, wherein CRIs the upper left part of the covariance matrix C
Figure FDA0002502019100000025
Size submatrix, CFIs the lower right part of the covariance matrix C
Figure FDA0002502019100000026
A sub-matrix of size;
step eight, calculating the region mutual information RMI;
and the final region mutual information is RMI (R, F) ═ H (R) + H (F) -H (R, F), and the similarity degree of the two three-dimensional medical images, namely the similarity degree of the reference image and the floating image, can be quantitatively analyzed and judged according to the RMI value of the region mutual information.
2. The method for calculating the degree of similarity of three-dimensional medical image registration based on GPU of claim 1, wherein in the third step, the kernel function thread index of the atomic operation is index ═ (threadadx.x + threadadx.y × blockdim.x) + (blockidx.x + blockidx.y × gridddim.x) × blockidx. × blockdim.y, where threadadx.x and threadadx.y are the thread indices in the x and y dimensions of the thread block, respectively, blockidx.x and blockidx.y are the thread block indices in the x and y dimensions of the thread block, respectively, and blockdim.x and blockdim.y are the number of threads in the x and y dimensions of the thread block, respectivelyThe griddim.x and griddim.y are the number of thread blocks in the x and y dimensions respectively; firstly, reading data in parallel by a thread, then accumulating and averaging the value of the d-th dimension by using an atomic add function in atomic operation, and circularly executing the process for 54 times until the average value of the joint voxels of all the dimensions is obtained
Figure DEST_PATH_FDA0001935861710000031
3. The GPU-based three-dimensional medical image registration similarity calculation method according to claim 1 or 2, wherein in the fourth step, dim3 type thread blocks are set, each thread block is selected to have a dimension of 16 × 16, that is, 256 threads in total, in order to ensure that the total prime number is in integer multiple relation with the number of assigned threads, and the assigned threads are greater than or equal to the total prime number, the number of total thread blocks required by the assigned threads is calculated as
Figure FDA0002502019100000031
And ensuring that each pixel point has a unique corresponding thread and a kernel function to participate in calculation, each thread performs independent and same operation, and data is acquired and processed according to the thread index i to complete calculation.
CN201910010146.7A 2019-01-04 2019-01-04 Three-dimensional medical image registration similarity calculation method based on GPU Active CN109919987B (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
CN201910010146.7A CN109919987B (en) 2019-01-04 2019-01-04 Three-dimensional medical image registration similarity calculation method based on GPU

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
CN201910010146.7A CN109919987B (en) 2019-01-04 2019-01-04 Three-dimensional medical image registration similarity calculation method based on GPU

Publications (2)

Publication Number Publication Date
CN109919987A CN109919987A (en) 2019-06-21
CN109919987B true CN109919987B (en) 2020-09-04

Family

ID=66960168

Family Applications (1)

Application Number Title Priority Date Filing Date
CN201910010146.7A Active CN109919987B (en) 2019-01-04 2019-01-04 Three-dimensional medical image registration similarity calculation method based on GPU

Country Status (1)

Country Link
CN (1) CN109919987B (en)

Families Citing this family (4)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN111260546B (en) * 2020-03-11 2022-09-23 联想(北京)有限公司 Image processing method and device and electronic equipment
CN111539997B (en) * 2020-04-23 2022-06-10 中国科学院自动化研究所 Image parallel registration method, system and device based on GPU computing platform
CN111724885A (en) * 2020-05-21 2020-09-29 天津大学 Construction method of volume data deformation editing display software platform
CN113076520A (en) * 2021-04-21 2021-07-06 湖北九同方微电子有限公司 Heterogeneous large matrix solving method based on GPU

Citations (3)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN102542600A (en) * 2011-12-14 2012-07-04 北京工业大学 Simulated projection DRR( digitally reconstructed radiograph) generating method based on CUDA (compute unified device architecture) technology
CN104134210A (en) * 2014-07-22 2014-11-05 兰州交通大学 2D-3D medical image parallel registration method based on combination similarity measure
CN109074639A (en) * 2015-10-19 2018-12-21 上海联影医疗科技有限公司 Figure registration system and method in medical image system

Family Cites Families (2)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US7483034B2 (en) * 2004-02-25 2009-01-27 Siemens Medical Solutions Usa, Inc. System and method for GPU-based 3D nonrigid registration
US20110178389A1 (en) * 2008-05-02 2011-07-21 Eigen, Inc. Fused image moldalities guidance

Patent Citations (3)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN102542600A (en) * 2011-12-14 2012-07-04 北京工业大学 Simulated projection DRR( digitally reconstructed radiograph) generating method based on CUDA (compute unified device architecture) technology
CN104134210A (en) * 2014-07-22 2014-11-05 兰州交通大学 2D-3D medical image parallel registration method based on combination similarity measure
CN109074639A (en) * 2015-10-19 2018-12-21 上海联影医疗科技有限公司 Figure registration system and method in medical image system

Also Published As

Publication number Publication date
CN109919987A (en) 2019-06-21

Similar Documents

Publication Publication Date Title
CN109919987B (en) Three-dimensional medical image registration similarity calculation method based on GPU
Mlynarski et al. 3D convolutional neural networks for tumor segmentation using long-range 2D context
CN110717354B (en) Super-pixel classification method based on semi-supervised K-SVD and multi-scale sparse representation
CN101027692B (en) System and method for object characterization of toboggan-based clusters
Guan et al. Random forests-based feature selection for land-use classification using lidar data and orthoimagery
Sun et al. 3d segmentation of pulmonary nodules based on multi-view and semi-supervised
CN115100185A (en) Image processing method, image processing device, computer equipment and storage medium
Yan et al. Unsupervised learning framework for interest point detection and description via properties optimization
CN109300115B (en) Object-oriented multispectral high-resolution remote sensing image change detection method
CN111080649B (en) Image segmentation processing method and system based on Riemann manifold space
CN115984296B (en) Medical image segmentation method and system applying multi-attention mechanism
CN107977991A (en) Medical image registration method based on space length Yu data distribution similarity measurement
CN110232695A (en) Left ventricle image partition method and system based on hybrid mode image
Xiao et al. Efficient partial-surface registration for 3D objects
Ghoneim et al. Breast cancer histological image classification using ensemble convolutional neural network and triplet loss
CN109829502B (en) Image pair efficient dense matching method facing repeated textures and non-rigid deformation
CN109785305B (en) End member variable hyperspectral image spectrum hybrid analysis method and device
CN107798680B (en) Method for reducing image label fusion redundant computation
CN112950654A (en) Brain tumor image segmentation method based on multi-core learning and super-pixel nuclear low-rank representation
CN112907495A (en) Spatial resolution enhancement method and device for hyperspectral image and electronic equipment
Ugurlu et al. Neighborhood resolved fiber orientation distributions (NRFOD) in automatic labeling of white matter fiber pathways
CN111798500A (en) Differential homoembryo non-rigid registration algorithm based on hierarchical neighborhood spectrum features
Shen et al. Topological Object Data Analysis Methods with an Application to Medical Imaging
Ma et al. Improving KAZE feature matching algorithm with alternative image gray method
CN116030078B (en) Attention-combined lung lobe segmentation method and system under multitask learning framework

Legal Events

Date Code Title Description
PB01 Publication
PB01 Publication
SE01 Entry into force of request for substantive examination
SE01 Entry into force of request for substantive examination
GR01 Patent grant
GR01 Patent grant
CB03 Change of inventor or designer information
CB03 Change of inventor or designer information

Inventor after: Zeng Qingrun

Inventor after: Feng Yuanjing

Inventor after: Li Siqi

Inventor after: Tan Zhihao

Inventor after: Zhang Chi

Inventor after: Chen Yukai

Inventor after: ZhuGe Qichuan

Inventor before: Feng Yuanjing

Inventor before: Li Siqi

Inventor before: Tan Zhihao

Inventor before: Zhang Chi

Inventor before: Zeng Qingrun

Inventor before: Chen Yukai

Inventor before: ZhuGe Qichuan

TR01 Transfer of patent right
TR01 Transfer of patent right

Effective date of registration: 20220114

Address after: 310053 2301a, building B, 4760 Jiangnan Avenue, Puyan street, Binjiang District, Hangzhou, Zhejiang

Patentee after: Yuenaoyunfu medical information technology (Zhejiang) Co.,Ltd.

Address before: The city Zhaohui six districts Chao Wang Road Hangzhou City, Zhejiang province 310014 18

Patentee before: ZHEJIANG University OF TECHNOLOGY

Patentee before: The First Affiliated Hospital of Wenzhou Medical University