J. Stanko wrote
Does anyone know how to modify the Sholl Analysis plugin so it measures intersections in an arc (as in the image) instead of the full circumference?
I apologize for multiple postings, I was having issues registering.
Thanks!
Here is the source code:
http://www.biology.ucsd.edu/labs/ghosh/software/ShollAnalysis_.javaYou can follow the logic and see what you need to change ;-).
If I were taking on such a project, I probably would start messing with this function first:
static public int[][] getCircumferencePoints(int cx, int cy, int r, int width)
{
}
Good luck!