vote up 2 vote down star
1

Hello,

For my phD project I need to do microscopy imaging. I cooked up an application using C#/winforms/GDI that allows me to display my images, zoom/pan them and display a ruler.

However, the thing is quite buggy, although usable...

What I need now is some kind of system to store a list of POIs (points of interest) based on user interaction.

These points can be used to center the image on them/direct the imaging hardware to them etc...

I have no clue how to go about this in the most efficient way. There is at least one commercial control that pretty much does what I want but it is very expensive, not open source and intended for use on web forms.:

Example Zoomcontrol

Who can help... deadlines are looming... :s

flag

58% accept rate
1  
It's not really an answer (hence in a comment) but have you tried using WPF under .NET 3.5? I thought that supported zoom and some other effects by default? I haven't really used it though, so if this is false, then please ignore it. – Kevin May 5 at 20:01
1  
If deadlines are looming, this wouldn't be the time to jump into WPF. I already attempted that. :) – Joshua Belden May 5 at 20:09
Well the thing is... I have some experience with WPF because I need to align some "friggin' lasers" in my setup and for that I use a CCD camera (a webcam actually) and I needed to overlay some crosshairs on the video stream.. So I know WPF would be able to do all this but like some of you said... it might take time, more than I currently have, and the POI feature is still something that I would have to implement separately and it is the thing that gives me the most trouble... – Kris May 5 at 21:06

1 Answer

vote up 1 vote down

+1 for WPF, but if you want to extend your current solution, you can go the easiest way possible:

  1. put a button/menu item so user can "bookmark" POI
  2. define special class for POI/bookmark to keep location properties of displayed image - like current center or left-top-corner coordinates and zoom
  3. optionally let user name bookmark
  4. keep a list of saved bookmarks and display it e.g. in a list box
  5. restore stored coordinates/zoom when user selects bookmark from the list

You can serialize list of POI to a file and save it next to the image to restore users bookmarks next time he opens the image. Or you can add image file path/name to POI bookmark object and keep only one big list of bookmarks that will allow jumping between bookmarks for all images...

Sorry, got a little bit carried away, but this was a little open-ended question.

link|flag
Thanks for your input. What you describe is exactly what I would need. What makes it hard is that the image corresponds to a physical image. So I need to devise a system to go back and forth between image coordinates and real-world. The zoom level and pan need to be taken into account when clicking on a POI etc... the whole thing is turning into a bit of a cludge right now so I was hoping for some more concrete example code from an experienced coder, possibly with graphics experience. Don't want to be lazy but all the HW code of my project is already keeping me more than busy currently... :) – Kris May 5 at 21:12
Isn't there anybody with some more concrete ideas? – Kris May 7 at 14:19

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.