Convert Binary Occupancy Grid to logical or numeric values

5 views (last 30 days)
i want to perform the code "imcomplement" on Binary Occupancy Grid figure, the erroe message occurs was :
"Error using imcomplement Expected input to be one of these types: logical, numeric Instead its type was robotics.BinaryOccupancyGrid."
if i cant not to convert to this extention, may i perform the code "inflate" on logical or numeric values

Accepted Answer

Cam Salzberger
Cam Salzberger on 13 Mar 2019
Hello Mohammed,
You can use the occupancyMatrix method to extract the numeric values of the occupancy grid. Then you can manipulate the matrix how you want. For binary values, ~occGridMatrix would be the same as imcomplement.
As for going the other direction, inflate is similar to imdilate, though the exact algorithm differs.
-Cam
  3 Comments
Cam Salzberger
Cam Salzberger on 14 Mar 2019
Ah, the occupancyMatrix method was only introduced in R2016b. You could use getOccupancy with the 'grid' argument, simply providing each cell as an input to get an array, then reshape it back into a matrix. Something like:
[I, J] = ndgrid(1:map.GridSize(1), 1:map.GridSize(2));
values = getOccupancy(map, [I(:) J(:)], 'grid');
valueGrid = reshape(values, size(I));
I'm not certain about the reshape being the exact inverse of the (:) indexing, but you can play around with it if necessary.

Sign in to comment.

More Answers (0)

Products


Release

R2015a

Community Treasure Hunt

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

Start Hunting!