Hello folks!!
I'm new in ImageJ, I'd like combine/merge or flatten multiple images, is this possible with ImageJ throught java code?. Thanks in advance!!. |
try:
<your_image_plus>.flatten(); Juanjo. On Aug 10, 2011, at 5:06 PM, Elias wrote: > Hello folks!! > > I'm new in ImageJ, I'd like combine/merge or flatten multiple images, is > this possible with ImageJ throught java code?. > > Thanks in advance!!. > > -- > View this message in context: http://imagej.588099.n2.nabble.com/Flatten-multiple-images-tp6672742p6672742.html > Sent from the ImageJ mailing list archive at Nabble.com. ------------------------------------------------------------ Juanjo Vega ([hidden email]) Unidad de Biocomputación. Laboratorio B-13. Centro Nacional de Biotecnología. CNB-CSIC. C\ Darwin, 3. Campus de Cantoblanco. Universidad Autónoma de Madrid. 28049, Madrid, Spain. http://www.cnb.csic.es http://www.biocomp.cnb.csic.es +34 91 585 4510 "Las mejores almas son capaces de los mayores vicios como de las mayores virtudes, y aquellos que caminan despacio por el camino recto pueden llegar más lejos que los que corren pero se apartan de él." - Discurso del Método, René Descartes. |
Hi Juanjo,
I had seen this method, but I need combine two images with transparency and create a flatten image, I need see example about this because I'm new in ImageJ. Thanks
2011/8/10 Juanjo Vega [via ImageJ] <[hidden email]>
|
Hi Elias,
Did you try the Image Calculator? It's in the Process menu. -Curtis On Wed, Aug 10, 2011 at 10:58 AM, Elias <[hidden email]> wrote: > Hi Juanjo, > > I had seen this method, but I need combine two images with transparency and > create a flatten image, I need see example about this because I'm new in > ImageJ. > > Thanks > > 2011/8/10 Juanjo Vega [via ImageJ] < > [hidden email]> > > > try: > > > > <your_image_plus>.flatten(); > > > > Juanjo. > > > > On Aug 10, 2011, at 5:06 PM, Elias wrote: > > > > > Hello folks!! > > > > > > I'm new in ImageJ, I'd like combine/merge or flatten multiple images, > is > > > this possible with ImageJ throught java code?. > > > > > > Thanks in advance!!. > > > > > > -- > > > View this message in context: > > > http://imagej.588099.n2.nabble.com/Flatten-multiple-images-tp6672742p6672742.html > > > Sent from the ImageJ mailing list archive at Nabble.com. > > > > ------------------------------------------------------------ > > Juanjo Vega ([hidden email]< > http://user/SendEmail.jtp?type=node&node=6672850&i=0>) > > > > > > Unidad de Biocomputación. Laboratorio B-13. > > Centro Nacional de Biotecnología. CNB-CSIC. > > C\ Darwin, 3. Campus de Cantoblanco. > > Universidad Autónoma de Madrid. > > 28049, Madrid, Spain. > > > > http://www.cnb.csic.es > > http://www.biocomp.cnb.csic.es > > > > +34 91 585 4510 > > > > "Las mejores almas son capaces de los mayores vicios como de las mayores > > virtudes, y aquellos que caminan despacio por el camino recto pueden > > llegar más lejos que los que corren pero se apartan de él." - Discurso > > del Método, René Descartes. > > > > > > ------------------------------ > > If you reply to this email, your message will be added to the discussion > > below: > > > > > http://imagej.588099.n2.nabble.com/Flatten-multiple-images-tp6672742p6672850.html > > To unsubscribe from Flatten multiple images, click here< > >. > > > > > > > -- > View this message in context: > http://imagej.588099.n2.nabble.com/Flatten-multiple-images-tp6672742p6672981.html > Sent from the ImageJ mailing list archive at Nabble.com. > |
Hi Curtis,
I'm trying to do this through java with Apio. Thanks! El 12/08/2011 23:13, "Curtis Rueden" <[hidden email]> escribió: > Hi Elias, > > Did you try the Image Calculator? It's in the Process menu. > > -Curtis > > On Wed, Aug 10, 2011 at 10:58 AM, Elias <[hidden email]> wrote: > >> Hi Juanjo, >> >> I had seen this method, but I need combine two images with transparency >> create a flatten image, I need see example about this because I'm new in >> ImageJ. >> >> Thanks >> >> 2011/8/10 Juanjo Vega [via ImageJ] < >> [hidden email]> >> >> > try: >> > >> > <your_image_plus>.flatten(); >> > >> > Juanjo. >> > >> > On Aug 10, 2011, at 5:06 PM, Elias wrote: >> > >> > > Hello folks!! >> > > >> > > I'm new in ImageJ, I'd like combine/merge or flatten multiple images, >> is >> > > this possible with ImageJ throught java code?. >> > > >> > > Thanks in advance!!. >> > > >> > > -- >> > > View this message in context: >> > >> >> > > Sent from the ImageJ mailing list archive at Nabble.com. >> > >> > ------------------------------------------------------------ >> > Juanjo Vega ([hidden email]< >> http://user/SendEmail.jtp?type=node&node=6672850&i=0>) >> > >> > >> > Unidad de Biocomputación. Laboratorio B-13. >> > Centro Nacional de Biotecnología. CNB-CSIC. >> > C\ Darwin, 3. Campus de Cantoblanco. >> > Universidad Autónoma de Madrid. >> > 28049, Madrid, Spain. >> > >> > http://www.cnb.csic.es >> > http://www.biocomp.cnb.csic.es >> > >> > +34 91 585 4510 >> > >> > "Las mejores almas son capaces de los mayores vicios como de las >> > virtudes, y aquellos que caminan despacio por el camino recto pueden >> > llegar más lejos que los que corren pero se apartan de él." - Discurso >> > del Método, René Descartes. >> > >> > >> > ------------------------------ >> > If you reply to this email, your message will be added to the discussion >> > below: >> > >> > >> http://imagej.588099.n2.nabble.com/Flatten-multiple-images-tp6672742p6672850.html >> > To unsubscribe from Flatten multiple images, click here< >> >. >> > >> > >> >> >> -- >> View this message in context: >> http://imagej.588099.n2.nabble.com/Flatten-multiple-images-tp6672742p6672981.html >> Sent from the ImageJ mailing list archive at Nabble.com. >> |
Hi Elias,
you can steal some code from the Blend Images Plugin on the ImageJ web site, which uses fixed weights for the images. There is also an 'Alpha Channel" plugin on the ImageJ DokuWiki site, where you could steal some ideas: http://imagejdocu.tudor.lu/doku.php?id=plugin:utilities:alpha_channel:start Hope this helps, Michael On Fri, August 12, 2011 23:36, Elías Manchón López wrote: > Hi Curtis, > > I'm trying to do this through java with Apio. > > Thanks! > El 12/08/2011 23:13, "Curtis Rueden" <[hidden email]> escribió: >> Hi Elias, >> >> Did you try the Image Calculator? It's in the Process menu. >> >> -Curtis >> >> On Wed, Aug 10, 2011 at 10:58 AM, Elias <[hidden email]> wrote: >> >>> Hi Juanjo, >>> >>> I had seen this method, but I need combine two images with transparency > and >>> create a flatten image, I need see example about this because I'm new >>> in >>> ImageJ. >>> >>> Thanks >>> >>> 2011/8/10 Juanjo Vega [via ImageJ] < >>> [hidden email]> >>> >>> > try: >>> > >>> > <your_image_plus>.flatten(); >>> > >>> > Juanjo. >>> > >>> > On Aug 10, 2011, at 5:06 PM, Elias wrote: >>> > >>> > > Hello folks!! >>> > > >>> > > I'm new in ImageJ, I'd like combine/merge or flatten multiple >>> images, >>> is >>> > > this possible with ImageJ throught java code?. >>> > > >>> > > Thanks in advance!!. >>> > > >>> > > -- >>> > > View this message in context: >>> > >>> > http://imagej.588099.n2.nabble.com/Flatten-multiple-images-tp6672742p6672742.html >>> > > Sent from the ImageJ mailing list archive at Nabble.com. >>> > >>> > ------------------------------------------------------------ >>> > Juanjo Vega ([hidden email]< >>> http://user/SendEmail.jtp?type=node&node=6672850&i=0>) >>> > >>> > >>> > Unidad de Biocomputación. Laboratorio B-13. >>> > Centro Nacional de Biotecnología. CNB-CSIC. >>> > C\ Darwin, 3. Campus de Cantoblanco. >>> > Universidad Autónoma de Madrid. >>> > 28049, Madrid, Spain. >>> > >>> > http://www.cnb.csic.es >>> > http://www.biocomp.cnb.csic.es >>> > >>> > +34 91 585 4510 >>> > >>> > "Las mejores almas son capaces de los mayores vicios como de las > mayores >>> > virtudes, y aquellos que caminan despacio por el camino recto pueden >>> > llegar más lejos que los que corren pero se apartan de él." - >>> Discurso >>> > del Método, René Descartes. >>> > >>> > >>> > ------------------------------ >>> > If you reply to this email, your message will be added to the > discussion >>> > below: >>> > >>> > >>> > http://imagej.588099.n2.nabble.com/Flatten-multiple-images-tp6672742p6672850.html >>> > To unsubscribe from Flatten multiple images, click here< >>> > >. >>> > >>> > >>> >>> >>> -- >>> View this message in context: >>> > http://imagej.588099.n2.nabble.com/Flatten-multiple-images-tp6672742p6672981.html >>> Sent from the ImageJ mailing list archive at Nabble.com. >>> > |
Free forum by Nabble | Edit this page |