This application claims priority to Taiwan Application Serial Number 111108368 filed Mar. 8, 2022, which is herein incorporated by reference.
The present disclosure relates to a method for segmenting lipid droplets from a pathological slice image.
In clinical practice, pathologists use hematoxylin and eosin (H&E) staining to visualize different structures in tissue slides. Several indicators for the diagnosis of nonalcoholic fatty liver disease (NAFLD) have also been proposed, among which steatosis is one of the most important indicators. When steatosis occurs, excess fat is stored as lipid droplet in the liver cells. On H&E staining, the lipid droplets are manifest as white bubbles. In the conventional diagnosis method, doctors observe the density and type of the lipid droplets through a microscope to analyze the degree or type of steatosis. This process is not only crude, time-consuming, and subjective, but also likely to be wrong. Therefore, there is a pressing need for automated lipid droplet quantification systems to assist the doctor in performing the diagnosis process.
Embodiments of the present disclosure provide a segmenting method for a pathological slice image. The method is performed by a computer system and includes: inputting the pathological slice image into a machine learning model to output a region map and a boundary map with respect to multiple lipid droplets, in which the region map includes multiple region probabilities, and the boundary map includes multiple boundary probabilities; and segmenting the lipid droplets from the pathological slice image according to the region probabilities and the boundary probabilities.
In some embodiments, the machine learning model is a convolutional neural network having a U-net structure including down-sampling and up-sampling. The convolutional neural network includes a receptive field block at a bottom layer of the U-net structure. The receptive field block includes multiple convolution kernels, and at least one of the convolution kernels is a dilation convolution kernel.
In some embodiments, the machine learning model includes a first branch for outputting the region map and a second branch for outputting the boundary map. The method further including: using a marked pathological slice image to train the first branch; and calculating a result of a morphology dilation process of the marked pathological slice image minus a result of a morphology erosion process of the marked pathological slice image to train the second branch.
In some embodiments, the step of segmenting the lipid droplets from the pathological slice image includes: determining if the region probabilities are greater than or equal to a first threshold to generate a mask; using the boundary probabilities and the region probabilities at respective same locations to calculate multiple center scores and gradients; generating multiple markers based on the center scores; and performing a watershed algorithm according to the mask, the gradients, and the markers.
In some embodiments, the segmenting method further includes: calculating an average of the boundary probabilities within one of the lipid droplets as an boundary score of the one of the lipid droplets; and deleing the one of the lipid droplets if the boundary score is less than a third threshold.
From another aspect, embodiments of the present disclosure provide an electrical device including a memory storing multiple instructions and a processor configured to execute the instructions to perform the segmentation method mentioned above.
From another aspect, embodiments of the present disclosure provide a non-transitory computer readable storage media storing multiple instructions which are executed by a computer system to perform the segmentation method.
The patent or application file contains a least one drawing executed in color. Copies of this patent or patent application publication with color drawing(s) will be provided by the Office upon request and payment of the necessary fee.
Specific embodiments of the present invention are further described in detail below with reference to the accompanying drawings, however, the embodiments described are not intended to limit the present invention and it is not intended for the description of operation to limit the order of implementation. Moreover, any device with equivalent functions that is produced from a structure formed by a recombination of elements shall fall within the scope of the present invention. Additionally, the drawings are only illustrative and are not drawn to actual size.
The using of “first”, “second”, “third”, etc. in the specification should be understood for identifying units or data described by the same terminology, but are not referred to particular order or sequence.
In the embodiment, H&E-stained liver paraffin sections were scanned into whole slide images (WSIs) using a Leica® scanner with a 40× objective magnification setting. Each WSI was then divided into tens of thousands of non-overlapping patches with a size of 512×512 pixels. Each divided patch is referred to as a pathological slice image hereinafter. However, any other suitable equipment may be used to obtain the WSI with respect to any organs or tissues in other embodiments. The size of the pathological slice images and whether they are overlapped are not limited in the disclosure.
In step 101, the pathological slice image 110 is inputted into a machine learning model to output a region map and a boundary map. The machine learning model is a convolutional neural network having a U-net structure in the embodiment. For example, referring to
A receptive field block (RFB) 240 is disposed at a bottom layer (i.e. smallest feature map) of the network structure. The detail of the receptive field block 240 is shown in
In the network structure of
GT
B=Dilate(GTR)−Erode(GTR) [Equation 1]
GTR is the marked pathological slice image. In other words, GTR is the ground truth of the region branch. Dilate(·) means a twice-repeated morphology dilation process (the size of the kernel is 3×3). Erode(·) is a twice-repeated morphology erosion process (the size of the kernel is 3×3). That is, the result of the morphology erosion process is subtracted from the result of the morphology dilation process. The difference of the two morphology processes is taken as the ground truth GTB of the boundary branch. The dilation process increases the size of the lipid droplet regions (i.e. expanding outward), the erosion process shrinks the lipid droplet regions, and thus the difference between the two processes show where the boundaries are. The advantages of the morphology processes include generating wider boundaries which provide more positive pixels during training. In some embodiments, the boundary of the lipid droplet region GTR is taken as the ground truth of the boundary branch.
The loss function of the entire network includes two portions. The first portion is a region loss, and the second portion is a boundary loss that are written in the following Equation 2.
L=L
R(pR,yR)+LB(pB,yB) [Equation 2]
L is the loss function of the entire network. LR is the loss function the region branch. LB is the loss function of the boundary branch. pR is a predicted value from the region branch, and yR is the ground truth of the region branch. pB is a predicted value of the boundary branch, and yB is the ground truth of the boundary branch. In some embodiments, the loss function of the region branch is defined as the following Equations 3-8.
p is the output value from the region branch, y is the corresponding ground truth. λa, λb, and λc, are real numbers which may be determined by experiments. Equation 4 represents a binary cross-entropy loss which has the problem of unbalance between the foreground and background, and hence the background is selected with greater probability as the ground truth.
In the Equation 5, two parameters α, β of the loss Ltversky(α,β) are used to adjust false positive (FP) and false negative (FN). When training the region branch, the two parameters α, β are set to be 0.5. This gives equal weight to FP and FN. ϵ is a very small value used to prevent division by zero.
In the Equations 6-8, the loss LactiveContour(p,y) does not yield a better training performance but produces better visual effect. ∇px2, ∇py2 are the derivatives of the predicted value p along the x-axis and y-axis, respectively. λ, μ are real numbers that may be determined by experiments. The loss Llength(p) in the Equation 7 is deemed as a penalty related to the length of the contour to train the model to produce complete objects with less fragmentation.
On the other hand, the loss function of the boundary branch is defined as the following Equation 9 where λd, λe are real numbers determined by experiments.
L
B(p,y)=λdLBCE(p,y)+λeLtversky(0.1,0.9)(p,y) [Equation 9]
In contrast to the region branch, more emphasis on false negatives are required for the boundary branch. There are two reasons. The first reasons is associated with the data characteristics. Compared to the regions, the boundaries are more sparse, which makes the model tend to predict conservatively. The model needs additional motivation to guess non-existent boundaries from the original input image. The second reason is related to the proposed method. If too many FNs are predicted in the boundary branch, the connected lipid droplets may not be separated. By contrast, if too many FPs are generated in the boundary branch, due to the emphasis on FN, the large number of FPs may not necessarily have a negative impact on the final result. Therefore, α is set to 0.1, and is set to 0.9 to reduce FN in the loss function Ltversky(α,β) when calculating boundary loss.
Next, in step 102 of
A mask is first calculated to indicate the location where the lipid droplets may locate (two lipid droplet may be connected). Meanwhile, the water of the watershed algorithm only raises in the region defined by the mask. In step 401, it is determined if the region probabilities are greater than or equal to a first threshold, and the pixel in the respective location of the mask is equal to “1” if yes, otherwise “0” as written in the following Equation 10.
τ is the first threshold. Mask are pixels of the mask.
The division line between objects always occurs at high gradients in the watershed algorithm, and thus appropriate gradients should be calculated. In step 402, the boundary probability pb is subtracted from the region probability pr at the same location to calculate a center score pc which is a probability of the pixel located at the center of the lipid droplet. When the model predicts a high region probability and a low boundary probability, it means the corresponding pixel may be far from the boundary of the lipid droplet. If the region probability and the boundary probability are both high, the corresponding pixel is probably located close to the border between two lipid droplets. The negative number of the center score is taken as the gradient. In other words, the center of the lipid droplet will have low gradients. The detail calculation is written in the following Equations 11 and 12.
Gradient=−pc [Equation 11]
p
c
=p
r
−p
b [Equation 12]
A gradient map 502 is shown in
In step 403, it is determined if the center scores are greater than or equal to a second threshold to generate multiple markers defined in the following Equation 13.
τc is the second threshold. The marker indicates the beginning point where water raises. When the center score is larger, the corresponding pixel is more likely to be in the center of the lipid droplet. The water will rise from the center of the lipid droplet to form a division line between two lipid droplets. There may be more than one pixels whose center scores are greater than the second threshold. Some of the pixels may be connected to each other, and thus the connected pixels are taken as the same kind of water (i.e. belong to the same marker). In the example of
In step 404, the watershed algorithm is performed according to the mask, the gradients and the markers. That is, different kinds of water raises from the respective marker in the range of the mask, and then they meet each other at high gradients to form a division line. A segmentation result 505 is shown in
In principle, if the region probability pr and the boundary probability pb are both high, it is more likely at the middle between two connected lipid droplet. In some embodiments, the center scores pc are used to segment the lipid droplets in step 102. For example, it is determined if the center score pc is greater than a threshold, and the corresponding pixel is the foreground if the determination is affirmative, otherwise is the background. In other embodiments, any types of difference such as square difference, absolute difference between the region probability pr and the boundary probability pb is calculated as the center score pc. In some embodiments, the product or sum of the region probability pr and the boundary probability pb is calculated and then compared to a threshold to determine the foreground. People in the art should be able to devise other approaches based on the disclosure above, and the step 102 is not limited thereto.
The deep learning model may have some problems when the lipid droplets are segmented. There are three situations. First, some areas which are not lipid droplets but have a shape similar to lipid droplets. Second, during the WSI manufacturing process, some physical damage may occur to the slide, which may affect the area of the slide containing the lipid droplets such that they cannot be fully recognized and labeled by humans for the training and evaluation process. Third, some inputs rarely appear in the training set and may therefore generate noise predictions. All these situations may result in broken region mask. A boundary score is proposed in the embodiment to quantify the object uncertainty. Referring to step 103 of
BMS is the boundary score. p(i,j)b is the boundary probability at coordinates (i,j). C is the set of pixels in one lipid droplet extracted from the watershed algorithm. From another aspect, the Equation 14 calculates the average of the boundary probabilities in one lipid droplet as a corresponding boundary score. If the boundary score is less than the third threshold, the corresponding lipid droplet is deleted.
Although the present invention has been described in considerable detail with reference to certain embodiments thereof, other embodiments are possible. Therefore, the spirit and scope of the appended claims should not be limited to the description of the embodiments contained herein. It will be apparent to those skilled in the art that various modifications and variations can be made to the structure of the present invention without departing from the scope or spirit of the invention. In view of the foregoing, it is intended that the present invention cover modifications and variations of this invention provided they fall within the scope of the following claims.
Number | Date | Country | Kind |
---|---|---|---|
111108368 | Mar 2022 | TW | national |