Info
此问题已关闭。 请重新打开它进行编辑或回答。
Is it always necessary to convert image to double type before further execution?
1 次查看(过去 30 天)
显示 更早的评论
Hi,
I want to threshold an image. I can read the image and it is a byte type (UINT 8). I want to pass this image to another function as it is but it asks me to convert to double before I can pass to another function where threshold is performed via MEX MATLAB. How can I pass the image as the same data type? Thanks in advance.
0 个评论
回答(2 个)
Walter Roberson
2013-10-2
We don't know. You will need to tell us which function you are trying to pass it to.
1 个评论
Image Analyst
2013-10-2
Well apparently you can't. It said so. It said it wanted double and rejected your call when you tried to pass in uint8(). I don't know why, but that's the way it is. It seems like it could just cast it to double internally, but, for whatever reason, it doesn't. So I guess you have to live with it. Either use double() if it can take whatever range you have, or use im2double() if it wants it in the 0-1 range.
6 个评论
此问题已关闭。
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!