Info
This question is closed. Reopen it to edit or answer.
help me Axes show in Gui
1 view (last 30 days)
Show older comments
first program don't have axes more than 1 axes
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/168008/image.jpeg)
if press start Axes1 show webcam normal but I'm add axes 3 axes in program and press start Webcam show in last axes
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/168010/image.png)
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/168011/image.jpeg)
0 Comments
Answers (1)
Walter Roberson
on 9 Oct 2017
Do not do
handles.axes1;
hImage = image( zeros(vidRes(2), vidRes(1), nBands) );
as that is not reliable. Use
hImage = image( zeros(vidRes(2), vidRes(1), nBands), 'Parent', handles.axes1 );
Similarly instead of
axes(handles.axes7);
imshow(myImage);
use
imshow(myImage, 'Parent', handles.axes7);
Better yet would be to use
image(myImage, 'Parent', handles.axes7);
because imshow() changes a number of settings, and can trigger the deletion of axes (although that cannot happen in your circumstances, it is safer to get used to using image() instead of having to worry about whether you might encounter those circumstances.)
3 Comments
This question is closed.
See Also
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!