-
-
Save bwhite/728701 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
in the drawglscene i get this error when compiling in eclipse: | |
Description Resource Path Location Type | |
initializing argument 1 of ‘int freenect_sync_get_depth(void**, uint32_t*, int, freenect_depth_format)’ main.cpp /kinect_test line 112 C/C++ Problem | |
initializing argument 1 of ‘int freenect_sync_get_video(void**, uint32_t*, int, freenect_video_format)’ main.cpp /kinect_test line 113 C/C++ Problem | |
invalid conversion from ‘void*’ to ‘void**’ main.cpp /kinect_test line 112 C/C++ Problem | |
invalid conversion from ‘void*’ to ‘void**’ main.cpp /kinect_test line 113 C/C++ Problem | |
this is the relevant code: | |
short *depth = 0; | |
char *rgb = 0; | |
uint32_t ts; | |
freenect_sync_get_depth((void**)&depth, &ts, 0, FREENECT_DEPTH_11BIT); | |
freenect_sync_get_video((void**)&rgb, &ts, 0, FREENECT_VIDEO_RGB); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment