Advertisement
lamiastella

'Hand': ambiguous symbol

May 23rd, 2017
174
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.91 KB | None | 0 0
  1. Severity    Code    Description Project File    Line    Suppression State
  2. Error   C2872   'Hand': ambiguous symbol    OpenARK-SDK c:\openark\Object3D.h   58 
  3. //NOMINMAX would help to avoid the following error
  4. //1>C:\Program Files\PCL 1.8.0\include\pcl-1.8\pcl/io/pcd_io.h(281):
  5. //error C2589: '(': illegal token on right side of '::'
  6. #define NOMINMAX
  7.  
  8. #define _WINSOCKAPI_  
  9.  
  10. // C++ Libraries
  11. #include <stdio.h>
  12. #include <iostream>
  13. #include <string>
  14. #include <time.h>
  15.  
  16. // OpenCV Libraries
  17. #include <opencv/cxcore.h>
  18. #include "opencv2/highgui/highgui.hpp"
  19.  
  20. #include "SR300Camera.h"
  21. #include "RealSense/SenseManager.h"
  22. #include "RealSense/SampleReader.h"
  23. #include "util_render.h"
  24.  
  25. // OpenARK Libraries
  26. #include "Webcam.h"
  27. #include "Visualizer.h"
  28. #include "Hand.h"
  29. #include "Plane.h"
  30. #include "Calibration.h"
  31. #include "Util.h"
  32. #include "UDPSender.h"
  33. #include "Object3D.h"
  34. #include "StreamingAverager.h"
  35.  
  36. int main() {
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement