save log to column

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

save log to column

danibodor
Is there a way to save the log to a specific column of an excel sheet?
Reply | Threaded
Open this post in threaded view
|

Re: save log to column

Fabrice Senger
Quoting danibodor <[hidden email]>:

> Is there a way to save the log to a specific column of an excel sheet?
> --
> View this message in context:  
> http://n2.nabble.com/save-log-to-column-tp2595725p2595725.html
> Sent from the ImageJ mailing list archive at Nabble.com.
>

Hi there you may have a look at Gilles Carpentier's macro showing how  
to customise a result window...it's on the imageJ site called "custom  
table".

Cheers,

Fabrice.
Reply | Threaded
Open this post in threaded view
|

Re: save log to column

danibodor
Hi,

If you mean the "CustomTabStatFromResults" thing, I have already checked it out and didn't find what i was looking for (but maybe i'm just crazy).

The thing I want to do is to make measurements in a picture, output it to an excel column, then make measurements in a new picture and export that to the next column etc. Now I am saving everything to txt files, and afterwards have to copy everything to excel. that basically works, but takes a lot of time.

Thanks,

Dani



Senger Fabrice wrote
Quoting danibodor <d.bodor@STUDENTS.UU.NL>:

> Is there a way to save the log to a specific column of an excel sheet?
> --
> View this message in context:  
> http://n2.nabble.com/save-log-to-column-tp2595725p2595725.html
> Sent from the ImageJ mailing list archive at Nabble.com.
>

Hi there you may have a look at Gilles Carpentier's macro showing how  
to customise a result window...it's on the imageJ site called "custom  
table".

Cheers,

Fabrice.
Reply | Threaded
Open this post in threaded view
|

Re: save log to column

Gabriel Landini
On Tuesday 07 April 2009 09:49:51 danibodor wrote:
> The thing I want to do is to make measurements in a picture, output it to
> an excel column, then make measurements in a new picture and export that to
> the next column etc. Now I am savind everything to txt files, and
> afterwards have to copy everything to excel. that basically works, but
> takes a lot of time.

With a bit of macro programming, you could output to the log window, one row
per image, delimited with tabs (rather than output in columns)
When you analysed all images, save the log window as txt, load it in a
spreasheet and transpose it, so rows become columns and viceversa.

There is also an Excel Writer plugin which might be handy, but not sure if
that does what you are looking for.
G.
Reply | Threaded
Open this post in threaded view
|

Re: save log to column

Michael Cundell
I dont use imageJ much... but does the ROI manager not do what you are
after?

Analyse > tools > ROI manager

Draw line on what your measuring

Click add

Do for all measurements

Then click measure for a table of all measurements

Then file > save as



I guess if your measuring length of something or whatever you need to set
the scale somewhere.





----- Original Message -----
From: "Gabriel Landini" <[hidden email]>
To: <[hidden email]>
Sent: Tuesday, April 07, 2009 10:03 AM
Subject: Re: save log to column


> On Tuesday 07 April 2009 09:49:51 danibodor wrote:
>> The thing I want to do is to make measurements in a picture, output it to
>> an excel column, then make measurements in a new picture and export that
>> to
>> the next column etc. Now I am savind everything to txt files, and
>> afterwards have to copy everything to excel. that basically works, but
>> takes a lot of time.
>
> With a bit of macro programming, you could output to the log window, one
> row
> per image, delimited with tabs (rather than output in columns)
> When you analysed all images, save the log window as txt, load it in a
> spreasheet and transpose it, so rows become columns and viceversa.
>
> There is also an Excel Writer plugin which might be handy, but not sure if
> that does what you are looking for.
> G.
>
Reply | Threaded
Open this post in threaded view
|

Re: save log to column

danibodor
In reply to this post by Gabriel Landini

---With a bit of macro programming, you could output to the log window, one row
---per image, delimited with tabs (rather than output in columns)

How do I do that?