main.cpp

Example file - Dorian Galvez, 2011-03-02 04:05 pm

Download (305 Bytes)

 
1
2
#include <iostream>
3
#include <opencv/cv.h>
4
#include <opencv/highgui.h>
5
6
int main()
7
{
8
  double d = 343.904804;
9
  char buf[128];
10
  
11
  sprintf(buf, "%.6lf", d);
12
  std::cout << buf << std::endl;
13
  
14
  cv::namedWindow( "win" );
15
  
16
  sprintf(buf, "%.6lf", d);
17
  std::cout << buf << std::endl;
18
  
19
  return 0;
20
}
21