• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

ImageJ : How to store image annotation in ImageJ ?

 
Ranch Hand
Posts: 162
Hibernate Spring Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi Ranchers,

Is their any way to store Image annotation in separate file (no on image) using ImageJ.?
Does any plug in available for that ?



Thanking You,
- Kuldeep Yadav
 
Rancher
Posts: 43081
77
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
What exactly do you mean by annotation? Something the user enters, like overlaid text? Or do you have some other plugin that generates those?
 
Kuladip Yadav
Ranch Hand
Posts: 162
Hibernate Spring Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Ulf Dittmer wrote: Something the user enters, like overlaid text



Yes exactly , user can annoted with overlaid text, draw point, draw rectangle , oval etc.

And I want to only that layer of image to seperate out and store without changing original image .

and again load Image with user annotation when ever requested.

How would I save that annotation may be in another image or other format ?



Thanking You,
- Kuldeep Yadav
 
Ulf Dittmer
Rancher
Posts: 43081
77
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
ImageJ does not have a concept of "layers" like Photoshop does, so you wouldn't be able to use the builtin text support for this.

I'm not aware if a plugin that does this, but since ImageJ is open source, you could rip out the code that handles text, make that a plugin, and replace the part that performs the actual drawing on the image with something that stores it in a text file.
 
Kuladip Yadav
Ranch Hand
Posts: 162
Hibernate Spring Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi Ulf ,


Thanks for reply.

In ImageJ, We can record macro that can store all annotation done by user and save as file.
But how can i achieve this by programming in background ?
Any link for that ?

Thanks
- Kuldeep Yadav
reply
    Bookmark Topic Watch Topic
  • New Topic