已回答 how can I smooth a bw image?
Hi,
I don't know an exact way, so I just propose two ideas:
1) use "imdilate" with a high value for the parameter, this ma...
8 years 前 | 0
已回答 how can I rotate the image ?
Hi,
I'm not sure but I think that the "view" function could help you:
http://it.mathworks.com/help/matlab/ref/view.html
...
已回答 How to return the index of a cell array?
Hi,
is this example good for you?
X{1} = 1;
X{2} = [2 2 2 2];
X{3} = [3 4 5 6 7];
random_index = randi(length(X))...
已回答 how to open an image file using Matlab GUI
Hi.
If I well understand your question, I think using the "imread" and then the "imshow" functions could be helpful for you:
...