Skip to content

Commit cc91987

Browse files
committed
Merge pull request #10 from KHeresy/Fix_Kinect_recording_ONI_for_NiTE_occipital
Fix the windows Kinect driver so that ONI files recorded using a Kinect can be played back and used in NITE.
2 parents cd0b690 + 58d326f commit cc91987

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

Source/Drivers/Kinect/DepthKinectStream.cpp

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -442,6 +442,10 @@ void DepthKinectStream::notifyAllProperties()
442442
getProperty(XN_STREAM_PROPERTY_D2S_TABLE, nBuff, &size);
443443
raisePropertyChanged(XN_STREAM_PROPERTY_D2S_TABLE, nBuff, size);
444444

445+
size = sizeof(PARAM_COEFF_VAL);
446+
getProperty(XN_STREAM_PROPERTY_PARAM_COEFF, nBuff, &size);
447+
raisePropertyChanged(XN_STREAM_PROPERTY_PARAM_COEFF, nBuff, size);
448+
445449
// Is this really necessary to save? Just in case.
446450
OniBool nearMode;
447451
size = sizeof(nearMode);

0 commit comments

Comments
 (0)