How to convert MATLAB binary feature matrix to decimal?
1 次查看(过去 30 天)
显示 更早的评论
I have binary feature matrices from BRISK, FREAK and ORB descriptors with 512 number of bits.
I tried to use:
d = bi2de(featuresBRISK.Features(:,1),512);
But they are just converted to uint8. How can I convert them to decimal for image classification problem?
6 个评论
Walter Roberson
2020-12-23
You can bitget() to extract bits from uint8 if you need to. Or use
bitstream = reshape((dec2bin(A,8) - '0').', 1, [])
采纳的回答
Image Analyst
2020-12-23
If you want/need d to be double instead of uint8, for other purposes like feature analysis, do this:
d = double(d);
0 个评论
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Computer Vision Toolbox 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!