Frequently asked questions
Welcome for any questions, suggestions, and bug reports. Please send them to GitHub issues.
- How to load external cell features?
You can load external cell features by passing a csv file name to the
external_cell_features_csv_path
parameter of thethor.pp.WholeSlideImage
class, or the methodthor.pp.WholeSlideImage.load_external_cell_features
.from thor.pp import WholeSlideImage # Load your external cell features into a DataFrame wsi = WholeSlideImage(image_path, name, external_cell_features_csv_path='path/to/your/cell_features.csv')