How to convert image array to double array?
21 次查看(过去 30 天)
显示 更早的评论
filter.*image is not working, because filter is a double array and image is an integer array. I think MATLAB should convert integer to double by default in this case, but how can I do by hand?
采纳的回答
Viju
2015-2-18
Take your integer array - let's call it 'intArray' and do the following:
dblArray = double(intArray);
0 个评论
更多回答(0 个)
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!