Info
Diese Frage ist geschlossen. Öffnen Sie sie erneut, um sie zu bearbeiten oder zu beantworten.
how to make input data from output superimpose
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
how to make the output figure from superimpose technique to input data where can be used for further coding..
myImage=imread('B1.jpg');
S=im2bw(myImage,100);
imshow(myImage), hold on
himage = imshow(S);
set(himage, 'AlphaData', 0.5);
output from figure,i wanted to become as input for another coding.how to do that?
example:
gray=rgb2gray(*output from figure in superimpose technique*)
0 Kommentare
Antworten (1)
Walter Roberson
am 29 Sep. 2011
The only general method is getframe(), which usually does more work than is necessary.
If the two images are the same size, then you can calculate the resulting image using the Alpha Blending formulas.
3 Kommentare
Walter Roberson
am 5 Okt. 2011
RecordedImage = getframe;
See http://www.mathworks.com/help/techdoc/ref/getframe.html
Diese Frage ist geschlossen.
Siehe auch
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!