Hi, Are there more sophisticated means to access R-images via Rserve than: Rconnection c=new Rconnection("127.0.0.1"); REXP xp=c.eval("try(png(\"test.png\"))") c.voidEval("plot(1:10)"); c.voidEval("dev.off()"); is = c.openFile("test.png"); ... maybe something with javaGD? Thanks in advance Thomas
Take a look at the EBImage package at bioconductor: http://bioconductor.org/packages/2.0/bioc/html/EBImage.html Bart mimo-2 wrote:> > Hi, > > Are there more sophisticated means to access R-images via Rserve than: > > Rconnection c=new Rconnection("127.0.0.1"); > REXP xp=c.eval("try(png(\"test.png\"))") > c.voidEval("plot(1:10)"); > c.voidEval("dev.off()"); > is = c.openFile("test.png"); > ... > > maybe something with javaGD? > > Thanks in advance > > Thomas > > ______________________________________________ > R-help at stat.math.ethz.ch mailing list > https://stat.ethz.ch/mailman/listinfo/r-help > PLEASE do read the posting guide > http://www.R-project.org/posting-guide.html > and provide commented, minimal, self-contained, reproducible code. > >-- View this message in context: http://www.nabble.com/Rserve%3A-Accessing-images-tf4348873.html#a12402656 Sent from the R help mailing list archive at Nabble.com.
Hi, Are there more sophisticated means to access R-images via Rserve than: Rconnection c=new Rconnection("127.0.0.1"); REXP xp=c.eval("try(png(\"test.png\"))") c.voidEval("plot(1:10)"); c.voidEval("dev.off()"); is = c.openFile("test.png"); ... maybe something with javaGD? Thanks in advance Thomas
Thank you Bartjoosen schrieb:> Take a look at the EBImage package at bioconductor: > http://bioconductor.org/packages/2.0/bioc/html/EBImage.html > > > Bart > > > mimo-2 wrote: > >> Hi, >> >> Are there more sophisticated means to access R-images via Rserve than: >> >> Rconnection c=new Rconnection("127.0.0.1"); >> REXP xp=c.eval("try(png(\"test.png\"))") >> c.voidEval("plot(1:10)"); >> c.voidEval("dev.off()"); >> is = c.openFile("test.png"); >> ... >> >> maybe something with javaGD? >> >> Thanks in advance >> >> Thomas >> >> ______________________________________________ >> R-help at stat.math.ethz.ch mailing list >> https://stat.ethz.ch/mailman/listinfo/r-help >> PLEASE do read the posting guide >> http://www.R-project.org/posting-guide.html >> and provide commented, minimal, self-contained, reproducible code. >> >> >> > >