Commit b229d6b7 authored by Olexa Bilaniuk's avatar Olexa Bilaniuk

Moved constants to cv:: namespace.

parent ed2a2376
......@@ -56,7 +56,15 @@
#include <vector>
#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 size_t HSIZE = (3*3*sizeof(float));
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(). */
/* For the sake of cv:: namespace ONLY: */
namespace cv{/* For C support, replace with extern "C" { */
/* Data Structures */
struct RHO_HEST_REFC{
/**
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment