mirror of
https://github.com/opencv/opencv.git
synced 2026-07-30 15:53:03 +04:00
Post-merge fixes for algorithm hint API.
This commit is contained in:
@@ -150,18 +150,6 @@ It is possible to alternate error processing by using #redirectError().
|
||||
*/
|
||||
CV_EXPORTS CV_NORETURN void error(const Exception& exc);
|
||||
|
||||
/*! @brief Flags that allow to midify some functions behavior. Used as set of flags.
|
||||
*/
|
||||
enum AlgorithmHint {
|
||||
ALGO_DEFAULT = 0, //!< Default algorithm behaviour defined during OpenCV build
|
||||
ALGO_ACCURATE = 1, //!< Use generic portable implementation
|
||||
ALGO_APPROX = 2, //!< Allow alternative approximations to get faster implementation. Behaviour and result depends on a platform
|
||||
};
|
||||
|
||||
/*! @brief Returns ImplementationHint selected by default, a.k.a. `IMPL_DEFAULT` defined during OpenCV compilation.
|
||||
*/
|
||||
CV_EXPORTS_W AlgorithmHint getDefaultAlgorithmHint();
|
||||
|
||||
enum SortFlags { SORT_EVERY_ROW = 0, //!< each matrix row is sorted independently
|
||||
SORT_EVERY_COLUMN = 1, //!< each matrix column is sorted
|
||||
//!< independently; this flag and the previous one are
|
||||
|
||||
Reference in New Issue
Block a user