Modify Sholl Analysis to measure an arc

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
2 messages Options
Reply | Threaded
Open this post in threaded view
|

Modify Sholl Analysis to measure an arc

J. Stanko
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!

Reply | Threaded
Open this post in threaded view
|

Re: Modify Sholl Analysis to measure an arc

Nathaniel Ryckman
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_.java

You 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!