after doing arithmatic operations to the image is there any method to convert the result into the image.
4 次查看(过去 30 天)
显示 更早的评论
after doing arithmatic operations(+,-,*,/) to the image is there any method to convert the result into the image.
0 个评论
采纳的回答
ES
2013-9-30
Image is nothing but a matrix of data. You can write any matrix into an image by using
imwrite
method.
2 个评论
Image Analyst
2013-9-30
Cast to double before subtracting, then use imshow(yourImage, []) to display all the image, both positive and negative pixels.
更多回答(0 个)
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!