liquidcronos / optical-stabilisation

ROS Package to estimate a UAVs velocity using a monocular Camera and a ultrasonic sensor
0 stars 0 forks source link

Borders for moving and immobile parts of the image #5

Closed liquidcronos closed 6 years ago

liquidcronos commented 6 years ago

If the feature count is below a certain threshold we want to generate new points. Those points should not be generated in the same spot as the old moving points or the still existing immobile ones. To achieve this we want to segment the image into areas of activity and inactivity using the Moving Features. Using those Regions we want to find the new features in regions which had no moving points.

liquidcronos commented 6 years ago

We also need to know how we handle regions of good points. Do we allow new feature detection at risk of duplicating the same feature or do we disallow them at risk of losing immobile space to draw features from.

liquidcronos commented 6 years ago

We start by calculating n clusters of points and generate a bounding box or convex hull for them. We can construct a mask from those which describe the available pixels for feature extraction.

liquidcronos commented 6 years ago

Solved with bounding box for moving features and circles around static features