How to convert MATLAB binary feature matrix to decimal?
7 ビュー (過去 30 日間)
古いコメントを表示
Preetham Manjunatha
2020 年 12 月 23 日
コメント済み: Walter Roberson
2020 年 12 月 23 日
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!