How can I plot histogram matlab to uiaxes APP designer?
13 次查看(过去 30 天)
显示 更早的评论
Hi Everyone,
Could some one know how to plot histogram of an image to uiaxes ?
This is my code:
v = videoinput("winvideo", 2, "YUY2_640x480"); % capure image from webcam
v.ReturnedColorspace = "grayscale"; % convert to gray
v.ROIPosition = [133 114 410 300]; % crop image
snapshot1 = getsnapshot(v); % capture image
imhist(snapshot1,app.UIAxes) % Plot historam

Thanks all!
Han
0 个评论
采纳的回答
Cris LaPierre
2022-8-15
imhist is not supported in App Designer yet (as best I can tell). However, you may be interested in this example, which uses histogram instead to show the red, green and blue content of an image.
Or open directly in MATLAB with the following command
openExample('matlab/AppdImageHistogramsExample')
3 个评论
Will Reeves
2025-5-16
Hi, just wondering if you know if imhist will ever be supported in App Designer? Seems like every plot type should be supported really?
Cris LaPierre
2025-5-16
You could try the approach @Adam Danz describes here: https://www.mathworks.com/matlabcentral/answers/705623-using-dendrogram-in-app-designer#answer_587838
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Develop Apps Using App Designer 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!