I'm afraid there isn't really in QuPath v0.1.2. There might be elaborate workarounds... but I'd be very cautious about trying anything too elaborate.
However, in your case I understand you have a brightfield image with hematoxylin (?) and then three more stains. This is considerably more difficult... the method of separating stains (color deconvolution) does not really support more than three colors in total. Ultimately, the image itself has three channels (red, green and blue) and figuring out how to computationally extract more colors than that isn't easy.
What might be possible is the following:
- Analyze -> Cell analysis -> Cell detection to identify cells - this could be difficult, and I'd suggest turning off the 'Smooth boundaries' option and being careful about the choice of 'Cell expansion' value to try to avoid cells merging into one another
- Analyze -> Calculate features -> Add intensity features (experimental) and ensure the region is 'ROI', the preferred pixel size is something small (e.g. 1µm), the color transforms are 'Red, Green, Blue & Hue', and the Basic features include 'Mean, Min & Max, Median' and when you run the command make sure no objects are selected, and then confirm to Process all: Detections (you might not need all these options, but I don't know without trying which ones could be removed)
Then you should have the cells and some additional information about their colors throughout the entire cell boundary. Then you might try creating a script to classify the cells by color, or alternatively training a detection classifier to identify cells of each type. If you have double or triple positive cells this may not work well enough... and you'd need to be careful about which features are used in the classifier.
Neither approach would be particularly easy. I can't give detailed step-by-step instructions how to do it because I never have myself, and I don't have any images with similar staining to test it with. The success of this would also depend upon where within the cell each marker is localized. If you are able to share some images with this staining then I could experiment some more, but can't promise to find a nice solution.
Because it's possible to write scripts or extensions to QuPath, this could also be approached as a new image analysis project for someone who was happy with image analysis concepts and writing code.
In general, when it comes to looking at multiple IHC markers per cell, there are four main approaches I've encountered among people using QuPath:
- fluorescence multiplexing (same tissue, one image, potentially many markers)
- brightfield multiplexing (same tissue, one image, few markers)
- brightfield restaining (same tissue, multiple images, few markers)
- brightfield consecutive sections (different tissue, multiple images, few markers)
The order of that list also corresponds roughly to how difficult (I think) they are to handle with image analysis. I'm interested in supporting all of them eventually, but have very limited time to work on any of them myself and for me fluorescence is the higher priority right now.