WO2020019671A1 - Breast lump detection and classification system and computer-readable storage medium - Google Patents
Breast lump detection and classification system and computer-readable storage medium Download PDFInfo
- Publication number
- WO2020019671A1 WO2020019671A1 PCT/CN2018/124655 CN2018124655W WO2020019671A1 WO 2020019671 A1 WO2020019671 A1 WO 2020019671A1 CN 2018124655 W CN2018124655 W CN 2018124655W WO 2020019671 A1 WO2020019671 A1 WO 2020019671A1
- Authority
- WO
- WIPO (PCT)
- Prior art keywords
- pixels
- breast
- pixel
- mass
- breast image
- Prior art date
Links
Classifications
-
- G—PHYSICS
- G06—COMPUTING; CALCULATING OR COUNTING
- G06T—IMAGE DATA PROCESSING OR GENERATION, IN GENERAL
- G06T7/00—Image analysis
- G06T7/0002—Inspection of images, e.g. flaw detection
- G06T7/0012—Biomedical image inspection
-
- G—PHYSICS
- G06—COMPUTING; CALCULATING OR COUNTING
- G06T—IMAGE DATA PROCESSING OR GENERATION, IN GENERAL
- G06T2207/00—Indexing scheme for image analysis or image enhancement
- G06T2207/20—Special algorithmic details
- G06T2207/20081—Training; Learning
-
- G—PHYSICS
- G06—COMPUTING; CALCULATING OR COUNTING
- G06T—IMAGE DATA PROCESSING OR GENERATION, IN GENERAL
- G06T2207/00—Indexing scheme for image analysis or image enhancement
- G06T2207/20—Special algorithmic details
- G06T2207/20084—Artificial neural networks [ANN]
-
- G—PHYSICS
- G06—COMPUTING; CALCULATING OR COUNTING
- G06T—IMAGE DATA PROCESSING OR GENERATION, IN GENERAL
- G06T2207/00—Indexing scheme for image analysis or image enhancement
- G06T2207/30—Subject of image; Context of image processing
- G06T2207/30004—Biomedical image processing
- G06T2207/30068—Mammography; Breast
Definitions
- the invention relates to the medical field, in particular to a breast mass detection and classification system and a computer-readable storage medium.
- Mammography mammography images are widely used mammography images, which have the advantages of low cost, high quality, and high cost performance. This type of image mainly reflects the contours of breast tissue. Using mammography images of mammary glands, doctors can better identify breast masses and judge the nature of the masses. However, doctors' manual discrimination has the problems of relying on subjective experience and different discrimination results between different doctors. Due to the development of computer vision understanding technology, automatic identification of breast masses and their qualitative computer becomes possible.
- breast mass detection and classification Most of the existing methods for breast mass detection and identification are divided into two steps: breast mass detection and classification.
- the current method is implemented in two steps mainly as follows: It is generally believed that breast tumors have a relatively special texture structure, and tumors lack clear edges. Therefore, breast tumor detection is a task that is quite different from ordinary target detection tasks. The texture features in ordinary target edges generally have significant features. Therefore, people tend to use special methods to detect tumors before classifying them. Such a processing method has the disadvantage of high computational complexity. Moreover, these two independent steps cut off the intrinsic link between the two closely linked tasks of breast mass detection and benign and malignant mass classification; the separate use of these two steps also limits the overall performance of the method. If this The accuracy of both steps is 80%, and the overall accuracy is only 64%. Therefore, it is urgent to explore new methods and technical routes to overcome the shortcomings of current methods. Collins
- an object of the present invention is to provide a breast mass detection and classification system and a computer-readable storage medium for implementing breast mass detection and classification.
- a breast mass detection and classification system including:
- An image acquisition unit configured to acquire a breast image
- a pixel classification unit configured to classify each pixel of the breast image, and the types of the pixels include ordinary pixels, benign lumps pixels, and malignant lumps pixels;
- a detection and classification unit is configured to detect and classify a breast mass from a pixel-classified breast image.
- the breast mass detection and classification system further includes a neural network unit, and the neural network unit includes:
- a network construction module configured to construct a deep neural network, which is used to classify each pixel of the breast image, and the types of the pixels include ordinary pixels, benign tumor pixels, and malignant tumor pixels; the depth
- the neural network is divided into six layers, which are a first convolution layer, a second convolution layer, a third convolution layer, a first fully connected layer, a second fully connected layer, and a network output layer in this order.
- the deep neural network The number of neurons in each layer is the same as the number of pixels in the breast image;
- a network training module is configured to train the deep neural network by using a breast image sample set.
- the first convolutional layer, the second convolutional layer, the third convolutional layer, and the first fully connected layer adopt an improved LU activation function
- the improved LU activation function is a calculation value of the LU activation function smaller than When it is equal to a preset value, the calculated value of the LU activation function is set to 0.
- the second fully connected layer uses a sigmoid activation function.
- the breast image is calculated through the first convolution layer, the second convolution layer, the third convolution layer, the first fully connected layer, and the second fully connected layer to obtain a scalar corresponding to each pixel;
- the network output layer is used to calculate the absolute value of the difference between the scalar and the pixel digital class.
- the pixel digital class includes a normal pixel class, a benign mass pixel class, and a malignant mass pixel class.
- the pixel class of the pixel corresponding to the smallest difference is output as the class of the pixel.
- the normal pixel class is labeled -1
- the benign mass pixel class is labeled 0
- the malignant mass pixel class is labeled 1.
- the network training module includes
- An image processing sub-module configured to process the breast image sample set, where the breast image sample set includes multiple breast image samples, and a method for processing the breast image sample set includes:
- Transforming the pixel gray value of the breast image sample includes increasing the gray value of the pixels of the breast image sample by the same proportion or reducing the gray value of the pixels of the breast image sample by the same proportion;
- a training sub-module is configured to train the deep neural network by using a breast image sample set processed by the image processing sub-module.
- the detection and classification unit includes
- a region division module configured to divide a pixel-classified breast image into a plurality of partially overlapping subregions, the subregions having different sizes
- a mass detection module is configured to determine whether a proportion of benign mass pixels of the sub-region to the total pixels of the sub-region or a proportion of malignant mass pixels to the total pixels of the sub-region is greater than a preset ratio. When the determination result is yes When determining that the sub-region is a breast lump;
- a tumor classification module is configured to determine whether the proportion of the benign tumor pixels in the total pixels of the sub-region is greater than the proportion of the malignant tumor pixels in the total pixels of the sub-region.
- a benign breast mass and conversely, the subregion is a malignant breast mass.
- the preset ratio is 0.3.
- Another technical solution adopted by the present invention is: a computer-readable storage medium on which a computer program is stored, and when the computer program is executed by a processor, the following steps are implemented:
- Classify each pixel of the breast image the types of the pixels include ordinary pixels, benign lumps pixels, and malignant lumps pixels;
- the invention relates to a breast mass detection and classification system and a computer-readable storage medium.
- the pixels are directly classified into three categories: ordinary pixels, benign mass pixels, and malignant mass pixels, to achieve fast and accurate Performing mass detection and mass classification on breast images, overcoming the two steps of splitting mass detection and classification in the prior art, leads to technical problems of low accuracy and low efficiency.
- FIG. 1 is a schematic structural diagram of a specific embodiment of a breast mass detection and classification system in the present invention
- FIG. 2 is a function curve diagram of a specific embodiment of an improved LU activation function in the present invention.
- FIG. 3 is a schematic diagram of a specific embodiment for increasing the gray value of pixels in the same proportion according to the present invention.
- FIG. 4 is a schematic diagram of a specific embodiment of reducing gray values of pixels in the same proportion according to the present invention.
- FIG. 1 is a schematic structural diagram of a specific embodiment of a breast mass detection and classification system according to the present invention. including:
- An image acquisition unit is used to acquire a breast image.
- the breast image is a mammography target X-ray radiographic image obtained by using an X-ray apparatus.
- the original mammography target X-ray radiographic image may be different in size. Therefore, the breast of the present invention
- the image is scaled to a size of 200 pixels by 200 pixels, and then entered into a pixel classification unit.
- a pixel classification unit configured to classify each pixel of a breast image, and the types of pixels include ordinary pixels, benign tumor pixels, and malignant tumor pixels;
- a detection and classification unit is configured to detect and classify a breast mass from a pixel-classified breast image.
- the image acquisition unit, the pixel classification unit, and the detection and classification unit may be computers.
- the computer uses a computer program to implement image acquisition, pixel classification, and mass detection and classification.
- the image acquisition unit may directly acquire a breast image stored in a computer in advance or sent to the computer in real time, or may acquire a breast image taken by the breast image by communicating with the X-ray apparatus.
- the pixel classification unit in the present invention is directly based on the breast image, and performs pixel classification discrimination on a single pixel of the breast image.
- the detection and classification unit can further simultaneously locate a breast tumor based on the pixel discrimination result and identify the tumor type (benign breast tumor or Malignant breast mass) to achieve fast and effective breast mass detection and classification.
- the pixel classification unit uses a deep neural network to classify pixels of a breast image. Therefore, before classifying a pixel of a breast image, a deep neural network needs to be designed first.
- the breast mass detection and classification system also includes a neural network unit.
- the neural network unit includes:
- a network building module is used to build a deep neural network.
- the deep neural network is used to classify each pixel of the breast image.
- the types of pixels include ordinary pixels, benign lumps, and malignant lumps.
- the deep neural network is divided into six layers. The order is the first convolution layer, the second convolution layer, the third convolution layer, the first fully connected layer, the second fully connected layer, and the network output layer. The number of neurons in each layer of the deep neural network and The number of pixels in the breast image is the same;
- a network training module for training a deep neural network using a breast image sample set.
- the first convolution layer, the second convolution layer, the third convolution layer, and the first fully connected layer adopt an improved LU activation function.
- the improved LU activation function is that the calculated value of the LU activation function is less than or equal to a preset value.
- the calculated value of the LU activation function is set to 0.
- the second fully connected layer uses a sigmoid activation function.
- the sigmoid activation function enhances the non-linear transformation capabilities of the "classifier.”
- the deep neural network in the present invention does not have a pooling layer, mainly to reduce the loss of information.
- the breast image is calculated through the first convolution layer, the second convolution layer, the third convolution layer, the first fully connected layer, and the second fully connected layer to obtain a scalar corresponding to each pixel; the network output layer is used for calculation The absolute value of the difference between a scalar and a pixel number class.
- the pixel number class includes ordinary pixel class, benign mass pixel class, and malignant mass pixel class, and the pixel number class corresponding to the smallest absolute value.
- the output is used as the pixel's class standard, and it is quantized to one of the three based on the similarity of the scalar with the three class targets.
- the normal pixel class is labeled -1
- the benign mass pixel class is labeled 0
- the malignant mass pixel class is labeled 1.
- the settings of the three categories of -1, 0, and 1 are also in line with the visual description of the differences between the three pixel categories.
- the difference between -1 and 0 is less than the difference between -1 and 1. It is consistent with ordinary pixels and benign mass pixels. The fact that the difference between them is smaller than the difference between ordinary pixels and malignant mass pixels.
- the network output layer calculates the absolute value of the difference between 3 and -1, 0, and 1 and compares 3 The absolute value of the absolute value, select the category corresponding to the difference with the smallest absolute value as the category of this pixel.
- the smallest absolute value is the absolute value of the difference between 3 and 1, then this pixel
- the class is labeled 1.
- the corresponding pixel type of the breast image is output in the network output layer; that is, the final output of the neurons in the network output layer is -1, 0, or 1.
- the corresponding pixels of the input breast image are respectively Discriminated as normal pixels, benign mass pixels or malignant mass pixels.
- the deep neural network is constructed, it is trained using a network training module in order to better implement pixel classification processing of breast images.
- the network training module includes
- An image processing sub-module is used to process a breast image sample set.
- the breast image sample set includes multiple breast image samples.
- the breast image samples have been labeled with tumors and their types in the breast image.
- the method for processing the breast image sample set includes:
- Transforming the pixel gray value of the breast image sample including increasing the gray value of the pixels of the breast image sample by the same proportion or reducing the gray value of the pixels of the breast image sample by the same proportion;
- a training sub-module is used to train a deep neural network using the breast image sample set processed by the image processing sub-module, and input the processed breast image sample set to the deep neural network for pixel classification to implement network training.
- the present invention uses limited image samples during the training phase to generate as many breast image samples as possible, enhancing the diversity of breast image sample sets, as they can represent different breast molybdenum targets
- the image results of the instrument can enrich the "experience" of the neural network, enhance the adaptability of the training results to the samples, and the neural network after training will have better robustness.
- FIG. 3 is a schematic diagram of a specific embodiment of increasing the gray value of the pixels in the same proportion in the present invention; When it reaches 255, the pixel value is increased by the same proportion (as shown by the y coordinate).
- the formula for reducing the gray value in the same proportion is c + dx, c and d are coefficients and d is greater than 0 but less than 1, and x is still the original pixel value.
- FIG. 4 is a schematic diagram of a specific embodiment of reducing the gray value of the pixels in the same proportion in the present invention; When it reaches 255, the pixel value becomes smaller in proportion (as shown in the y coordinate).
- the above four schemes describe the variability of the samples from different angles.
- the first scheme can simulate the systematic differences of different models of X-ray instruments.
- the two methods of increasing and decreasing the pixel value respectively make the new sample better. Representativeness and biased in two possible directions of change.
- the second, third, and fourth schemes can simulate the random errors of the instruments, and have better simulation capabilities for the differences between the same model of instruments. Using these four schemes at the same time makes the pixel change in the new sample generated more comprehensive.
- the image processing sub-module modifies the pixels of the original breast image to increase the diversity of the breast image sample set.
- the pixel classification unit uses the trained neural network to classify the pixels of the breast image to obtain a pixel class label corresponding to each pixel.
- the detection and classification unit performs breast mass detection and classification on the breast image classified by the pixels.
- the detection and classification unit includes:
- a region division module is used to divide a pixel-classified breast image into a plurality of partially overlapping sub-regions.
- the sub-regions have different sizes.
- the sub-regions are rectangular regions, and the dimensions of the rectangular regions are different (such as 7 pixels * 7 pixels, 9 pixels * 9 pixels, 11 pixels * 11 pixels, 13 pixels * 13 pixels); because the actual breast masses are of different sizes, the detection and classification system of the present invention judges sub-regions of different sizes to make the detected breast masses more realistic. If only the input breast image is divided into non-overlapping sub-regions, and the sub-regions have the same size, when the breast mass crosses two adjacent sub-regions, it is likely to miss detection.
- a mass detection module is used to determine whether the proportion of benign mass pixels in the sub-region to the total pixels of the sub-region or the proportion of malignant mass pixels in the total pixels of the sub-region is greater than a preset ratio.
- the determination result is yes, the sub-region is determined to be Breast lump; in this embodiment, the preset ratio is 0.3.
- a tumor classification module is used to determine whether the proportion of benign tumor pixels in the total area of the sub-region is greater than that of malignant tumor pixels in the total area of the sub-region. If the result of the determination is yes, the sub-region is a benign breast tumor. For malignant breast mass.
- the mass detection module and mass classification module perform mass detection and classification on each sub-region of the breast image, and directly perform mass detection and classification based on breast image pixels, which is efficient, convenient, and highly accurate.
- the present invention also provides a computer-readable storage medium on which a computer program is stored.
- a computer program is stored on a computer-readable storage medium.
- Classify each pixel of the breast image the types of pixels include ordinary pixels, benign lumps pixels and malignant lumps pixels;
- the present invention directly identifies pixels of breast images and determines them as ordinary pixels, benign mass pixels, There are three categories of pixels for malignant masses; the categories of pixels for the breast image output by the neural network; the location of breast masses and the discrimination results of benign or malignant masses are obtained according to the pixel class.
Landscapes
- Engineering & Computer Science (AREA)
- Quality & Reliability (AREA)
- General Health & Medical Sciences (AREA)
- Medical Informatics (AREA)
- Nuclear Medicine, Radiotherapy & Molecular Imaging (AREA)
- Radiology & Medical Imaging (AREA)
- Health & Medical Sciences (AREA)
- Computer Vision & Pattern Recognition (AREA)
- Physics & Mathematics (AREA)
- General Physics & Mathematics (AREA)
- Theoretical Computer Science (AREA)
- Apparatus For Radiation Diagnosis (AREA)
- Image Processing (AREA)
Abstract
Description
Claims (10)
- 一种乳腺肿块检测与分类系统,其特征在于,包括 A breast mass detection and classification system, comprising:图像获取单元,用于获取乳腺图像;An image acquisition unit, configured to acquire a breast image;像素分类单元,用于对所述乳腺图像的每一个像素进行分类,所述像素的类别包括普通像素、良性肿块像素和恶性肿块像素; A pixel classification unit, configured to classify each pixel of the breast image, and the types of the pixels include ordinary pixels, benign lumps pixels, and malignant lumps pixels; Ranch检测与分类单元,用于对像素分类后的乳腺图像进行乳腺肿块检测和分类。A detection and classification unit is configured to detect and classify a breast mass from a pixel-classified breast image.
- 根据权利要求1所述的乳腺肿块检测与分类系统,其特征在于,所述乳腺肿块检测与分类系统还包括神经网络单元,所述神经网络单元包括:The breast mass detection and classification system according to claim 1, wherein the breast mass detection and classification system further comprises a neural network unit, and the neural network unit comprises:网络构建模块,用于构建深度神经网络,所述深度神经网络用于对所述乳腺图像的每一个像素进行分类,所述像素的类别包括普通像素、良性肿块像素和恶性肿块像素;所述深度神经网络分为六层,按照顺序依次为第一卷积层、第二卷积层、第三卷积层、第一全连接层、第二全连接层和网络输出层,所述深度神经网络的每一层的神经元个数与乳腺图像的像素个数相同;A network construction module, configured to construct a deep neural network, which is used to classify each pixel of the breast image, and the types of the pixels include ordinary pixels, benign tumor pixels, and malignant tumor pixels; the depth The neural network is divided into six layers, which are a first convolution layer, a second convolution layer, a third convolution layer, a first fully connected layer, a second fully connected layer, and a network output layer in this order. The deep neural network The number of neurons in each layer is the same as the number of pixels in the breast image;网络训练模块,用于利用乳腺图像样本集训练所述深度神经网络。A network training module is configured to train the deep neural network by using a breast image sample set.
- 根据权利要求2所述的乳腺肿块检测与分类系统,其特征在于,所述第一卷积层、第二卷积层、第三卷积层和第一全连接层采用改进的LU激活函数,所述改进的LU激活函数为LU激活函数的计算值小于或等于预设值时,将所述LU激活函数的计算值设置为0。 The breast mass detection and classification system according to claim 2, wherein the first convolution layer, the second convolution layer, the third convolution layer, and the first fully connected layer use an improved LU activation function, When the improved LU activation function is that the calculated value of the LU activation function is less than or equal to a preset value, the calculated value of the LU activation function is set to 0. Ranch
- 根据权利要求2所述的乳腺肿块检测与分类系统,其特征在于,所述第二全连接层采用sigmoid激活函数。 The breast mass detection and classification system according to claim 2, wherein the second fully connected layer uses a sigmoid activation function. Ranch
- 根据权利要求2至4任一项所述的乳腺肿块检测与分类系统,其特征在于,所述乳腺图像经过所述第一卷积层、第二卷积层、第三卷积层、第一全连接层和第二全连接层计算得到对应每个像素的标量;The breast mass detection and classification system according to any one of claims 2 to 4, wherein the breast image passes through the first convolution layer, the second convolution layer, the third convolution layer, the first The fully connected layer and the second fully connected layer are calculated to obtain a scalar corresponding to each pixel;所述网络输出层用于计算所述标量与像素数字类标的差值的绝对值,所述像素数字类标分别包括普通像素类标、良性肿块像素类标和恶性肿块像素类标,并将绝对值最小的差值所对应的像素数字类标作为像素的类标进行输出。The network output layer is used to calculate the absolute value of the difference between the scalar and the pixel digital class. The pixel digital class includes a normal pixel class, a benign mass pixel class, and a malignant mass pixel class. The pixel class of the pixel corresponding to the smallest difference is output as the class of the pixel.
- 根据权利要求5所述的乳腺肿块检测与分类系统,其特征在于,所述普通像素类标为-1,所述良性肿块像素类标为0,所述恶性肿块像素类标为1。 The breast mass detection and classification system according to claim 5, wherein the ordinary pixel class is labeled -1, the benign mass pixel class is labeled 0, and the malignant mass pixel class is labeled 1. Ranch
- 根据权利要求2至4任一项所述的乳腺肿块检测与分类系统,其特征在于,所述网络训练模块包括The breast mass detection and classification system according to any one of claims 2 to 4, wherein the network training module includes图像处理子模块,用于对所述乳腺图像样本集进行处理,所述乳腺图像样本集包括多个乳腺图像样本,处理所述乳腺图像样本集的方法包括:An image processing sub-module, configured to process the breast image sample set, where the breast image sample set includes multiple breast image samples, and a method for processing the breast image sample set includes:对所述乳腺图像样本进行像素灰度值进行变换,包括对所述乳腺图像样本的像素进行同比例增大灰度值或对所述乳腺图像样本的像素进行同比例减小灰度值;Transforming the pixel gray value of the breast image sample includes increasing the gray value of the pixels of the breast image sample by the same proportion or reducing the gray value of the pixels of the breast image sample by the same proportion;和/或,and / or,对全部或者部分的所述乳腺图像样本的像素添加高斯噪声;Adding Gaussian noise to all or part of pixels of the breast image sample;和/或,and / or,对全部或者部分的所述乳腺图像样本的像素添加椒盐噪声; Adding pepper and salt noise to all or part of the pixels of the breast image sample;训练子模块,用于利用所述图像处理子模块处理后的乳腺图像样本集训练所述深度神经网络。A training sub-module is configured to train the deep neural network by using a breast image sample set processed by the image processing sub-module.
- 根据权利要求1至4任一项所述的乳腺肿块检测与分类系统,其特征在于,所述检测与分类单元包括 The breast mass detection and classification system according to any one of claims 1 to 4, wherein the detection and classification unit includes区域划分模块,用于将像素分类后的乳腺图像划分成多个部分重叠的子区域,所述子区域的大小不同;A region division module, configured to divide a pixel-classified breast image into a plurality of partially overlapping subregions, the subregions having different sizes;肿块检测模块,用于判断所述子区域的良性肿块像素占所述子区域的总像素的比例或恶性肿块像素占所述子区域的总像素的比例是否大于预设比例,当判断结果为是时,判断所述子区域为乳腺肿块;A mass detection module is configured to determine whether a proportion of benign mass pixels of the sub-region to the total pixels of the sub-region or a proportion of malignant mass pixels to the total pixels of the sub-region is greater than a preset ratio. When determining that the sub-region is a breast lump;肿块分类模块,用于判断所述良性肿块像素占所述子区域的总像素的比例是否大于恶性肿块像素占所述子区域的总像素的比例,若判断结果为是,则所述子区域为良性乳腺肿块,反之,所述子区域为恶性乳腺肿块。A tumor classification module is configured to determine whether the proportion of the benign tumor pixels in the total pixels of the sub-region is greater than the proportion of the malignant tumor pixels in the total pixels of the sub-region. If the determination result is yes, the sub-region is A benign breast mass, and conversely, the subregion is a malignant breast mass.
- 根据权利要求8所述的乳腺肿块检测与分类系统,其特征在于,所述预设比例为0.3。 The breast mass detection and classification system according to claim 8, wherein the preset ratio is 0.3.
- 一种计算机可读存储介质,其特征在于,其上存储有计算机程序,所述计算机程序被处理器执行时实现以下步骤:A computer-readable storage medium is characterized in that a computer program is stored thereon, and when the computer program is executed by a processor, the following steps are implemented:获取乳腺图像;Obtain breast images;对所述乳腺图像的每一个像素进行分类,所述像素的类别包括普通像素、良性肿块像素和恶性肿块像素; Classify each pixel of the breast image, the types of the pixels include ordinary pixels, benign lumps pixels, and malignant lumps pixels;对像素分类后的乳腺图像进行乳腺肿块检测和分类。Detection and classification of breast masses on pixel-classified breast images.
Applications Claiming Priority (2)
Application Number | Priority Date | Filing Date | Title |
---|---|---|---|
CN201810810971.0A CN109191424B (en) | 2018-07-23 | 2018-07-23 | Breast mass detection and classification system and computer-readable storage medium |
CN201810810971.0 | 2018-07-23 |
Publications (1)
Publication Number | Publication Date |
---|---|
WO2020019671A1 true WO2020019671A1 (en) | 2020-01-30 |
Family
ID=64937114
Family Applications (1)
Application Number | Title | Priority Date | Filing Date |
---|---|---|---|
PCT/CN2018/124655 WO2020019671A1 (en) | 2018-07-23 | 2018-12-28 | Breast lump detection and classification system and computer-readable storage medium |
Country Status (2)
Country | Link |
---|---|
CN (1) | CN109191424B (en) |
WO (1) | WO2020019671A1 (en) |
Cited By (4)
Publication number | Priority date | Publication date | Assignee | Title |
---|---|---|---|---|
CN111554383A (en) * | 2020-04-24 | 2020-08-18 | 浙江杜比医疗科技有限公司 | Neural network for breast tumor detection and detection system thereof |
CN112241954A (en) * | 2020-10-22 | 2021-01-19 | 上海海事大学 | Full-view self-adaptive segmentation network configuration method based on lump differential classification |
CN112699948A (en) * | 2020-12-31 | 2021-04-23 | 无锡祥生医疗科技股份有限公司 | Ultrasonic breast lesion classification method and device and storage medium |
CN115619641A (en) * | 2022-10-24 | 2023-01-17 | 中山大学附属第五医院 | Mammary gland image processing method, system, terminal and medium based on FFDM |
Families Citing this family (5)
Publication number | Priority date | Publication date | Assignee | Title |
---|---|---|---|---|
CN109785320A (en) * | 2019-01-28 | 2019-05-21 | 太原理工大学 | It is a kind of to be classified to mammograms and known method for distinguishing using modified AlexNet model |
CN110428405A (en) * | 2019-01-30 | 2019-11-08 | 腾讯科技(深圳)有限公司 | Method, relevant device and the medium of lump in a kind of detection biological tissue images |
CN111767760A (en) * | 2019-04-01 | 2020-10-13 | 北京市商汤科技开发有限公司 | Living body detection method and apparatus, electronic device, and storage medium |
CN110827296B (en) * | 2019-11-01 | 2023-06-23 | 南京信息工程大学 | Mammary X-ray image analysis method of multi-target integrated deep neural network |
CN113627416B (en) * | 2021-10-12 | 2022-01-25 | 上海蜜度信息技术有限公司 | Synchronous processing method, system, storage medium and terminal for picture classification and object detection |
Citations (4)
Publication number | Priority date | Publication date | Assignee | Title |
---|---|---|---|---|
US20060116579A1 (en) * | 2004-11-29 | 2006-06-01 | Pai-Chi Li | Ultrasound imaging apparatus and method thereof |
CN104851101A (en) * | 2015-05-25 | 2015-08-19 | 电子科技大学 | Brain tumor automatic segmentation method based on deep learning |
CN107464250A (en) * | 2017-07-03 | 2017-12-12 | 深圳市第二人民医院 | Tumor of breast automatic division method based on three-dimensional MRI image |
CN107749061A (en) * | 2017-09-11 | 2018-03-02 | 天津大学 | Based on improved full convolutional neural networks brain tumor image partition method and device |
Family Cites Families (8)
Publication number | Priority date | Publication date | Assignee | Title |
---|---|---|---|---|
JP4800127B2 (en) * | 2006-06-29 | 2011-10-26 | 富士フイルム株式会社 | Medical image segmentation device and medical image segmentation program |
JP5444511B1 (en) * | 2012-03-21 | 2014-03-19 | オリンパスメディカルシステムズ株式会社 | Image processing device |
CN104408482B (en) * | 2014-12-08 | 2019-02-12 | 电子科技大学 | A kind of High Resolution SAR Images object detection method |
CN104966100A (en) * | 2015-06-17 | 2015-10-07 | 北京交通大学 | A benign and malignant image lump classification method based on texture primitives |
CN107507195B (en) * | 2017-08-14 | 2019-11-15 | 四川大学 | The multi-modal nasopharyngeal carcinoma image partition method of PET-CT based on hypergraph model |
CN107590806B (en) * | 2017-09-19 | 2021-06-01 | 陈烨 | Detection method and system based on brain medical imaging |
CN107845098A (en) * | 2017-11-14 | 2018-03-27 | 南京理工大学 | Liver cancer image full-automatic partition method based on random forest and fuzzy clustering |
CN107886514B (en) * | 2017-11-22 | 2021-04-23 | 浙江中医药大学 | Mammary gland molybdenum target image lump semantic segmentation method based on depth residual error network |
-
2018
- 2018-07-23 CN CN201810810971.0A patent/CN109191424B/en active Active
- 2018-12-28 WO PCT/CN2018/124655 patent/WO2020019671A1/en active Application Filing
Patent Citations (4)
Publication number | Priority date | Publication date | Assignee | Title |
---|---|---|---|---|
US20060116579A1 (en) * | 2004-11-29 | 2006-06-01 | Pai-Chi Li | Ultrasound imaging apparatus and method thereof |
CN104851101A (en) * | 2015-05-25 | 2015-08-19 | 电子科技大学 | Brain tumor automatic segmentation method based on deep learning |
CN107464250A (en) * | 2017-07-03 | 2017-12-12 | 深圳市第二人民医院 | Tumor of breast automatic division method based on three-dimensional MRI image |
CN107749061A (en) * | 2017-09-11 | 2018-03-02 | 天津大学 | Based on improved full convolutional neural networks brain tumor image partition method and device |
Cited By (6)
Publication number | Priority date | Publication date | Assignee | Title |
---|---|---|---|---|
CN111554383A (en) * | 2020-04-24 | 2020-08-18 | 浙江杜比医疗科技有限公司 | Neural network for breast tumor detection and detection system thereof |
CN111554383B (en) * | 2020-04-24 | 2023-09-05 | 浙江杜比医疗科技有限公司 | Neural network for breast tumor detection and detection system thereof |
CN112241954A (en) * | 2020-10-22 | 2021-01-19 | 上海海事大学 | Full-view self-adaptive segmentation network configuration method based on lump differential classification |
CN112241954B (en) * | 2020-10-22 | 2024-03-15 | 上海海事大学 | Full-view self-adaptive segmentation network configuration method based on lump differentiation classification |
CN112699948A (en) * | 2020-12-31 | 2021-04-23 | 无锡祥生医疗科技股份有限公司 | Ultrasonic breast lesion classification method and device and storage medium |
CN115619641A (en) * | 2022-10-24 | 2023-01-17 | 中山大学附属第五医院 | Mammary gland image processing method, system, terminal and medium based on FFDM |
Also Published As
Publication number | Publication date |
---|---|
CN109191424B (en) | 2022-04-22 |
CN109191424A (en) | 2019-01-11 |
Similar Documents
Publication | Publication Date | Title |
---|---|---|
WO2020019671A1 (en) | Breast lump detection and classification system and computer-readable storage medium | |
WO2020000643A1 (en) | Method and device for detecting pulmonary nodule in ct image, and readable storage medium | |
WO2013174231A1 (en) | Augmented reality interaction implementation method and system | |
JP4597391B2 (en) | Facial region detection apparatus and method, and computer-readable recording medium | |
TWI419082B (en) | Moving object detection method and image processing system for moving object detection | |
WO2021012508A1 (en) | Ai image recognition method, apparatus and device, and storage medium | |
CN111612736A (en) | Power equipment fault detection method, computer and computer program | |
TW202201283A (en) | Training data increment method, electronic apparatus and computer-readable medium | |
CN102006462A (en) | Rapid monitoring video enhancement method by using motion information and implementation device thereof | |
JP2007293559A (en) | Device and method for detecting non-stationary image, and program mounted with the method | |
JP2019133433A (en) | Image processing device, image processing method, and program | |
CN113724143A (en) | Method and device for image restoration | |
WO2020101300A1 (en) | Image processing apparatus and operating method thereof | |
Chen et al. | Image segmentation in thermal images | |
JPS6376578A (en) | Automatic binarization system | |
WO2021150016A1 (en) | Methods and systems for performing tasks on media using attribute specific joint learning | |
Lee et al. | Vehicle counting based on a stereo vision depth maps for parking management | |
JP2001229371A (en) | Image alignment method | |
WO2020111382A1 (en) | Apparatus and method for optimizing inverse tone mapping on basis of single image, and recording medium for performing method | |
WO2023055013A1 (en) | Image processing method and image processing device based on neural network | |
Han et al. | An efficient estimation method for intensity factor of illumination changes | |
Lin et al. | Research on small sample defect detection method based on AnoGAN and U-net | |
WO2024076020A1 (en) | Method and server for generating space map | |
WO2014003507A1 (en) | Image encoder pretreatment apparatus, and apparatus and method for generating three-dimensional face | |
WO2023033360A1 (en) | Image processing apparatus and operation method thereof |
Legal Events
Date | Code | Title | Description |
---|---|---|---|
121 | Ep: the epo has been informed by wipo that ep was designated in this application |
Ref document number: 18927743 Country of ref document: EP Kind code of ref document: A1 |
|
NENP | Non-entry into the national phase |
Ref country code: DE |
|
122 | Ep: pct application non-entry in european phase |
Ref document number: 18927743 Country of ref document: EP Kind code of ref document: A1 |
|
122 | Ep: pct application non-entry in european phase |
Ref document number: 18927743 Country of ref document: EP Kind code of ref document: A1 |
|
32PN | Ep: public notification in the ep bulletin as address of the adressee cannot be established |
Free format text: NOTING OF LOSS OF RIGHTS PURSUANT TO RULE 112(1) EPC (EPO FORM 1205A DATED 13/08/2021) |
|
122 | Ep: pct application non-entry in european phase |
Ref document number: 18927743 Country of ref document: EP Kind code of ref document: A1 |