How to convert MATLAB binary feature matrix to decimal?

2 views (last 30 days)
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 Comments
Preetham Manjunatha
Preetham Manjunatha on 23 Dec 2020
When I use the BRISK features, currently, it is in a matix form of uint8. I am going to use it for a classifcation problem.
Walter Roberson
Walter Roberson on 23 Dec 2020
You can bitget() to extract bits from uint8 if you need to. Or use
bitstream = reshape((dec2bin(A,8) - '0').', 1, [])

Sign in to comment.

Accepted Answer

Image Analyst
Image Analyst on 23 Dec 2020
If you want/need d to be double instead of uint8, for other purposes like feature analysis, do this:
d = double(d);

More Answers (0)

Categories

Find more on Recognition, Object Detection, and Semantic Segmentation in Help Center and File Exchange

Products


Release

R2020b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!