During kymograph creation I use the following code :
currentLine = new Line(new_xStart, new_yStart, new_xEnd, new_yEnd);
currentLine.setStrokeWidth(1);
imp.setRoi(currentLine);
xpoints = currentLine.getInterpolatedPolygon().xpoints;
ypoints = currentLine.getInterpolatedPolygon().ypoints;
npoints = currentLine.getInterpolatedPolygon().npoints;
I am pretty sure it makes things slower...
During kymograph creation I use the following code :
I am pretty sure it makes things slower...