-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCSVtoAnnotations.groovy
More file actions
50 lines (40 loc) · 1.47 KB
/
CSVtoAnnotations.groovy
File metadata and controls
50 lines (40 loc) · 1.47 KB
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
/**
* CSVtoAnnotations.groovy
*
* Description:
* This script reads coordinates from a CSV file and creates annotations in QuPath at the specified locations.
* The script assumes the CSV file contains coordinates in its second and third columns.
*
* Author: Mohamed Omar, MD
* Contact: mao4005@med.cornell.edu
* GitHub: https://github.com/MohamedOmar2020
* Created on: January 22, 2024
*
* Usage:
* 1. Open a whole slide image in QuPath.
* 2. Run this script.
* 3. Select the CSV file with the coordinates when prompted.
* 4. Annotations will be created on the image based on the coordinates in the CSV file.
*/
import java.io.BufferedReader;
import java.io.FileReader;
import qupath.lib.objects.PathAnnotationObject;
import qupath.lib.roi.PointsROI;
import qupath.lib.gui.dialogs.Dialogs
def imageData = getCurrentImageData();
// Get location of csv
def file = Dialogs.promptForFile(null)
// Create BufferedReader
def csvReader = new BufferedReader(new FileReader(file));
int sizePixels = 1000
row = csvReader.readLine() // first row (header)
// Loop through all the rows of the CSV file.
while ((row = csvReader.readLine()) != null) {
def rowContent = row.split(",")
double cx = rowContent[1] as double;
double cy = rowContent[2] as double;
// Create annotation
def roi = new PointsROI(cx-4120,cy-2945);
def annotation = new PathAnnotationObject(roi, PathClassFactory.getPathClass("Region"));
imageData.getHierarchy().addObject(annotation, true);
}