perform var(image(:)) operation in gui
2 ビュー (過去 30 日間)
古いコメントを表示
please,provide me a demo code for 5 images read in GUI using popup menu and perform var(image(:)) operation in gui
2 件のコメント
Walter Roberson
2013 年 2 月 6 日
What part should the pop-up menu play in this?
What do you want to have happen with the result of the variance calculation?
採用された回答
Walter Roberson
2013 年 2 月 6 日
foo = get(hObject, 'String');
bar = imread(foo{get(hObject, 'Value')});
msgbox(num2str(var(bar(:))));
0 件のコメント
その他の回答 (0 件)
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!