Ask Your Question
0

How to update Surf descritor Map dynamicaly

asked 2013-06-10 07:11:53 -0600

Hi,

To make better SURF detection, i need to aggregate results coming from different good matches to save only those who are working.

After finding the first good SURF detection (keypoints and descriptors), i need to update these data. I cannot find how to do it for the Mat descriptor object.

Do you have any exemple of how to do this.

Thanks

edit retag flag offensive close merge delete

1 answer

Sort by ยป oldest newest most voted
0

answered 2013-06-10 08:01:40 -0600

Guanta gravatar image

You can either create a new matrix and copy the old and new descriptors to it or you can use push_back(new_descriptor_matrix) to your old descriptor-matrix and append the new descriptors at the end of it (of course this only works it the descriptor-size == number of columns doesn't change).

edit flag offensive delete link more

Question Tools

Stats

Asked: 2013-06-10 07:11:53 -0600

Seen: 179 times

Last updated: Jun 10 '13