mirror of
https://github.com/opencv/opencv.git
synced 2024-11-29 05:29:54 +08:00
Moved constants to cv:: namespace.
This commit is contained in:
parent
ed2a23768e
commit
b229d6b7ac
@ -56,7 +56,15 @@
|
|||||||
#include <vector>
|
#include <vector>
|
||||||
#include "rhorefc.h"
|
#include "rhorefc.h"
|
||||||
|
|
||||||
/* Defines */
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/* For the sake of cv:: namespace ONLY: */
|
||||||
|
namespace cv{/* For C support, replace with extern "C" { */
|
||||||
|
|
||||||
|
|
||||||
|
/* Constants */
|
||||||
const int MEM_ALIGN = 32;
|
const int MEM_ALIGN = 32;
|
||||||
const size_t HSIZE = (3*3*sizeof(float));
|
const size_t HSIZE = (3*3*sizeof(float));
|
||||||
const double MIN_DELTA_CHNG = 0.1;
|
const double MIN_DELTA_CHNG = 0.1;
|
||||||
@ -74,12 +82,6 @@ const double LM_GAIN_LO = 0.25; /* See sacLMGain(). */
|
|||||||
const double LM_GAIN_HI = 0.75; /* See sacLMGain(). */
|
const double LM_GAIN_HI = 0.75; /* See sacLMGain(). */
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/* For the sake of cv:: namespace ONLY: */
|
|
||||||
namespace cv{/* For C support, replace with extern "C" { */
|
|
||||||
|
|
||||||
/* Data Structures */
|
/* Data Structures */
|
||||||
struct RHO_HEST_REFC{
|
struct RHO_HEST_REFC{
|
||||||
/**
|
/**
|
||||||
|
Loading…
Reference in New Issue
Block a user