This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
* Always study the list of packages to be cleaned for any obvious | |
* mistakes. Packages that are part of the world set will always | |
* be kept. They can be manually added to this set with | |
* `emerge --noreplace <atom>`. Packages that are listed in | |
* package.provided (see portage(5)) will be removed by | |
* depclean, even if they are part of the world set. | |
* | |
* As a safety measure, depclean will not remove any packages | |
* unless *all* required dependencies have been resolved. As a | |
* consequence of this, it often becomes necessary to run |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// This file is hereby released into the public domain. | |
// This code contains a skeleton for Keypoint Object Matching with SURF/BRISK | |
// It was extracted from the code of an unreleased demo - https://www.youtube.com/watch?v=-r9J1eO4qg4 | |
// It will not compile as-is, but may function as a starting point. | |
#include <set> | |
#include <string> | |
#include <opencv2/core/core.hpp> | |
#include <opencv2/imgproc/imgproc.hpp> | |
#include "Freenect.hpp" |