how to plotting the selected images
1 回表示 (過去 30 日間)
古いコメントを表示
hai.
i have question on how to plotting the selected images from folder into axes when push button has been click. And how to update the selected image in axes1 into second push button(analysis operation in second push button) ?
0 件のコメント
採用された回答
Walter Roberson
2011 年 9 月 7 日
imread() each selected image. image() the image, specifying the axes handle as the first parameter of the image() call to be sure that it is drawn in to the proper axes. If you want the images to show up beside each other, use the x and y parameters of the image call to specify the data coordinates of the centers of the lower-left and upper-right pixels.
I am unclear about what you are asking in your second question, but I suspect that the answer is "You can set() the selected image as a property of the second push button [e.g., UserData] and have the button's callback check that property to determine what it is working on; or you can have the second button's callback check the status of the original object to determine what is selected and then act appropriately."
0 件のコメント
その他の回答 (1 件)
Ahmed
2011 年 9 月 7 日
3 件のコメント
Walter Roberson
2011 年 9 月 8 日
Sorry, should have been fullfile() instead of fullfilename()
You appear to be using an existing axes. Are your axis limit modes set to manual or to automatic (default is automatic)?
I never use the CreateFcn; never found a use for it.
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!