|
On Monday 22 January 2007 17:19, Christophe Leterrier wrote:
> I posted similar questions last week but no luck - no response.
>
> So I'll try to reformulate and simplify. This applies to macro programming
> :
>
> 1) how to store a "freeline" ROI in a variable = get the ROI coordinates
> and store them in an array (problems : getting the coordinates, knowing
> the size of the array needed)
2 ways:
1) store the array in a txt file, then read the whole array first to get the
number of lines, then dimension the array and read it again to load the lines
coordinates.
2) use the Java language Vector instead of an array. Vectors can be resized.
Cheers,
G.
|