after doing arithmatic operations to the image is there any method to convert the result into the image.
4 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
mahesh chathuranga
am 30 Sep. 2013
Kommentiert: Image Analyst
am 30 Sep. 2013
after doing arithmatic operations(+,-,*,/) to the image is there any method to convert the result into the image.
0 Kommentare
Akzeptierte Antwort
ES
am 30 Sep. 2013
Image is nothing but a matrix of data. You can write any matrix into an image by using
imwrite
method.
2 Kommentare
Image Analyst
am 30 Sep. 2013
Cast to double before subtracting, then use imshow(yourImage, []) to display all the image, both positive and negative pixels.
Weitere Antworten (0)
Siehe auch
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!