不,你可以直接索引.
%# create some test data
m = magic(4);
%# make binary image
bw = m>10;
%# read values from m
values = m(bw);
%# alternatively, if you have linear indices (as found via find)...
linIdx = find(bw);
%# ...you can use that instead
values = m(linIdx);
Run Code Online (Sandbox Code Playgroud)