Closed swaradgat19 closed 1 year ago
could this be an issue with loading detections vs annotations?
i exported detection tiles to geojson via the qupath gui, and then i tried to add those geojson detections to another qupath project using paquo. i faced the same error as the first post in this issue.
i have included an example geojson to help in debugging.
{
"features": [
{
"geometry": {
"coordinates": [
[
[
0,
23904
],
[
350,
23904
],
[
350,
24254
],
[
0,
24254
],
[
0,
23904
]
]
],
"type": "Polygon"
},
"properties": {
"isLocked": true,
"measurements": {
"prob_notumor": 0.9998319149017334,
"prob_tumor": 0.00016804548795334995
},
"objectType": "tile"
},
"type": "Feature"
}
],
"type": "FeatureCollection"
}
thank you @ap-- !!
Thanks for filing the issue and providing an example!
A new release should be on its way.
I want to add a geojson file (my model outputs) to an existing svs image in a project. In QuPath, I do it by simply dragging the JSON file on the corresponding image.
I want to perform this for a bunch of svs images in a folder. Currently I'm doing it for a single image. Here is the code for the same: Here, I want to do the paquo equivalent of dragging the
CMU-1.json
file onto theCMU-1.svs
image.It gives me the following error:
Could you point out where I'm going wrong and how to solve this?