Hello ,
I'm a new QuPath user and I have a problem with positive cell detection. In particular when i detect the positive cells, I perform the following steps:
1) drawing an area of interest;
2) Estimate stain vectors;
3) Positive cell detection.
at the end of the activities I have the result of the attached image in which only Qupath detect all values with unique color and not it make the difference between cell positive and negative.Can someone give me some indication?
Best regards
It looks like the issue is arising from your stain vectors. Instead of having your stains labeled 'Positive, Negative, Residual', try having them named 'DAB, Hematoxylin, Residual' in their respective channels. This should allow QuPath to pick up on the appropriate color channels.
To change them, look under the image tab on the left, and double click the word 'positive' in the same row it says 'stain 1'. This will let you manually change the names of the stains.
Let me know if that helps!
It looks like your image type is off in this set of pictures. In the same way you set the names of the stains, double click 'Brightfield H&E' next to where it says 'Image type' under the Image tab. Set it to H-DAB, then make sure your stains have the appropriate labels (blue = Hematoxylin, etc.) Let me know if that works!
setCellIntensityClassifications('Nucleus: DAB OD mean', 0.4)setCellIntensityClassifications('Nucleus: DAB OD mean', 0.2, 0.4, 0.6)
// Access the 'Stroma: Positive' sub-classification
stroma = getPathClass('Stroma')
stromaPositive = getDerivedPathClass(stroma, 'Positive')
// Set the color, using a packed RGB value
color = getColorRGB(200, 0, 0)
stromaPositive.setColor(color)
// Update the GUI
fireHierarchyUpdate()