Compilation Error OpenNI (Patch #3394)
Description
Compilation error when compiling openCV 3.0.0 with openNI option, in /modules/highgui/src/cap_openni.cpp
error: ‘class ApproximateSyncGrabber::ApproximateSynchronizer’ has no member named ‘reset’
fixed by modifying line #155:
task->reset(new ApproximateSynchronizer( *this ) );
into
task.reset(new ApproximateSynchronizer( *this ) );
Associated revisions
Merge pull request #3394 from akarsakov:ocl_canny
History
Updated by Victor Kocheganov over 11 years ago
- Status changed from New to Open
Updated by Roman Donchenko over 11 years ago
Mind submitting it as a pull request?
Updated by Laith Siriani over 11 years ago
Roman Donchenko wrote:
Mind submitting it as a pull request?
I'm very very new to git...
Updated by Steven Puttemans about 11 years ago
It seems that the fix is already in the current master branch, so this can actually be marked as done.
No need to create a new pull request.
- Status changed from Open to Done
Updated by Steven Puttemans about 11 years ago
- % Done changed from 0 to 100
- Assignee deleted (
Roman Donchenko)