-
Notifications
You must be signed in to change notification settings - Fork 1
/
0.5.0 Pixelwise H-score.groovy
167 lines (141 loc) · 5.75 KB
/
0.5.0 Pixelwise H-score.groovy
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
import groovy.transform.CompileStatic
//SET THESE
DABthresholds = [0.15,0.5,1] //1+, 2+, 3+ DAB
Hthreshold = 0.08 //Nuclei in Hematoxylin
double scale = 1 //bigger = downsample for speed
// Pre-request tiles for speed
// Often a good idea, but may not be if the annotation is completely huge
// since it relies upon pre-requested image tiles remaining in the cache long enough
boolean prerequestTiles = true
// Handle multiple annotations in parallel (experimental!)
// This may help if you have many small annotations, rather than few large ones
boolean parallelizeAnnotations = false
// Make pixel_classifiers folder
String pixelClassifierFolder=buildFilePath(PROJECT_BASE_DIR,'classifiers','pixel_classifiers') //project subfolder with pixel classifier
mkdirs(pixelClassifierFolder)
// Check we have objects
def annotations = new ArrayList<>(getSelectedObjects())
if (annotations.isEmpty()) {
println "Please select some objects!"
return
}
// Get pixel calibration and current stain vectors
def imageData = getCurrentImageData()
PixelCalibration cal = imageData.getServer().getPixelCalibration()
def stains = getCurrentImageData().getColorDeconvolutionStains()
// Create an ImageDataOp to preprocess and apply thresholds
def op = ImageOps.buildImageDataOp().appendOps(
ImageOps.Channels.deconvolve(stains),
ImageOps.Channels.extract(0, 1), //H=0, DAB=1
// ImageOps.Filters.gaussianBlur(1), //1x gaussian smoothing
new HScoreThresholdOp()
.lowThreshold(DABthresholds[0])
.mediumThreshold(DABthresholds[1])
.highThreshold(DABthresholds[2])
.minStainThreshold(Hthreshold)
)
def classmap= [
255: PathClass.getInstance("Ignore*"),
0: PathClass.getInstance("Negative"),
1: PathClass.getInstance("1+"),
2: PathClass.getInstance("2+"),
3: PathClass.getInstance("3+")
]
def pixelClassifier = PixelClassifiers.createClassifier(op,cal.createScaledInstance(scale,scale), classmap) //create the classifier
// Create a pixel classifier server and manager
// This enables us to pre-request tiles in parallel to speed up measurements
def pixelServer = PixelClassifierTools.createPixelClassificationServer(imageData, pixelClassifier)
def manager = PixelClassifierTools.createMeasurementManager(pixelServer)
String measurementPrefix = "H-score"
// Measure the area of each class for each annotation - optionally parallelizing things
def annotationStream = annotations.stream()
if (parallelizeAnnotations)
annotationStream = annotationStream.parallel();
annotationStream.forEach { annotation ->
if (prerequestTiles) {
def roi = annotation.getROI()
def region = ImageRegion.createInstance(roi)
def tiles = pixelServer.getTileRequestManager().getAllTileRequests()
.findAll(tile -> tile.getRegionRequest().intersects(region))
tiles.parallelStream().forEach {tile -> pixelServer.readRegion(tile.getRegionRequest())}
}
PixelClassifierTools.addMeasurements([annotation], manager, measurementPrefix)
}
//measure area of each class
for (def annotation in annotations) {
double area1 = annotation.measurements["$measurementPrefix: 1+ area µm^2"]
double area2 = annotation.measurements["$measurementPrefix: 2+ area µm^2"]
double area3 = annotation.measurements["$measurementPrefix: 3+ area µm^2"]
double areaDenom = area1 + area2 + area3 + annotation.measurements["$measurementPrefix: Negative area µm^2"]
annotation.measurements['Pixelwise H-score'] = (area1 * 1 + area2 * 2 + area3 * 3)/(areaDenom)*100 //calculate H score
}
/**
* Custom op to help with computing a pixelwise H-score
*/
class HScoreThresholdOp implements ImageOp {
double minThreshold = Double.NEGATIVE_INFINITY
double t1 = 0.1
double t2 = 0.2
double t3 = 0.3
HScoreThresholdOp minStainThreshold(double minThreshold) {
this.minThreshold = minThreshold
return this
}
HScoreThresholdOp lowThreshold(double t1) {
this.t1 = t1
return this
}
HScoreThresholdOp mediumThreshold(double t2) {
this.t2 = t2
return this
}
HScoreThresholdOp highThreshold(double t3) {
this.t3 = t3
return this
}
public Mat apply(Mat input) {
def split = OpenCVTools.splitChannels(input)
// Apply thresholds to DAB channel
def matDAB = split[1]
OpenCVTools.apply(matDAB, this::applyDABThresholds)
// Apply thresholds to hematoxylin channel
def matH = split[0]
OpenCVTools.apply(matH, this::applyHematoxylinThreshold)
// If 0 in both DAB and hematoxylin channels, set to 255 (exclude)
def matMask = opencv_core.equals(
opencv_core.max(matH, matDAB).asMat(),
0.0
).asMat()
matDAB.setTo(OpenCVTools.scalarMat(255.0, matDAB.type()), matMask)
return matDAB;
}
@CompileStatic
public double applyHematoxylinThreshold(double value) {
if (value < minThreshold)
return 0
return 1
}
@CompileStatic
public double applyDABThresholds(double value) {
if (value < t1)
return 0
else if (value < t2)
return 1
else if (value < t3)
return 2
else
return 3
}
}
import groovy.transform.CompileStatic
import org.bytedeco.opencv.global.opencv_core
import org.bytedeco.opencv.opencv_core.Mat
import qupath.lib.images.servers.PixelCalibration
import qupath.lib.objects.classes.PathClass
import qupath.lib.regions.ImageRegion
import qupath.opencv.ml.pixel.PixelClassifierTools
import qupath.opencv.ml.pixel.PixelClassifiers
import qupath.opencv.ops.ImageOp
import qupath.opencv.ops.ImageOps
import qupath.opencv.tools.OpenCVTools
import static qupath.lib.gui.scripting.QPEx.*