MATLAB: Conversion of figure window to image window.

image analysisImage Processing Toolbox

I have formed image in a figure window.how do i map this image into image window such that i could trace the co-ordinates of it? And i want to link this image to other program for further process.

Best Answer

There is nothing you have to do. The image is already in an "image window" as you call it. The image is actually in an "axes" control that is sitting on a "figure" window. You're free to start using imfreehand() or whatever you want to trace coordinates. Let me know if you want a demo.
As far as "link this image to other program for further process", I suggest you look at the FAQ: http://matlab.wikia.com/wiki/FAQ#How_can_I_share_data_between_callback_functions_in_my_GUI.28s.29.3F But I'd recommend that you put the axes on the same figure/gui as your other controls (buttons, listboxes, checkboxes, etc.) because it will make it a lot easier.