Re: ROI points don't seem to get stored properly [message #69169] |
Sun, 20 December 2009 05:05 |
robintw
Messages: 37 Registered: March 2009
|
Member |
|
|
Hi,
That worked for me too. Thank you very much.
Do you know why the reform call was needed?
Robin
On 19/12/2009 19:29, Jeff N. wrote:
>
> Add a reform call to your new indices such that these lines:
>
> new_x_indices = new_indices[0, *]
> new_y_indices = new_indices[1, *]
>
> become this:
>
> new_x_indices = reform(new_indices[0, *])
> new_y_indices = reform(new_indices[1, *])
>
> And it appeared to work for me.
|
|
|
|