How I can pass value array that I already store to another function?

2 views (last 30 days)
Red = double(image1(:,:,1));
Green = double(image1(:,:,2));
Blue = double(image1(:,:,3));
% Extract Statistical features
% 1] Mean
R_mean = mean(Red(:));
G_mean = mean(Green(:));
B_mean = mean(Blue(:));
% 2] Standard Deviation
R_std = std(Red(:));
G_std = std(Green(:));
B_std = std(Blue(:));
% 3] Skewness
R_skew = skewness(Red(:));
G_skew = skewness(Green(:));
B_skew = skewness(Blue(:));
A = [R_mean G_mean B_mean R_std G_std B_std R_skew G_skew B_skew];
handles.ImgData3 = A;
guidata(hObject,handles);
How to get all the values in A in array?

Answers (1)

Prabhan Purwar
Prabhan Purwar on 17 Jul 2020
Hi,
Could you explain more what are you trying to do with handles.ImgData3 = A; and GUI.
You can pass the array as an output argument to a function.
Hope it helps!!

Categories

Find more on Statics and Dynamics in Help Center and File Exchange

Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!