Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bug at KinectViewer control #13

Open
birbilis opened this issue Nov 20, 2015 · 1 comment
Open

Bug at KinectViewer control #13

birbilis opened this issue Nov 20, 2015 · 1 comment

Comments

@birbilis
Copy link
Contributor

Please pull-in #12 - fixed a bug at _SizeChanged event handler of WPF KinectViewer control

Have done the fix at Kinect v1 version only since I don't have a v2 Kinect device yet to try it out. Probably the same fix is needed to v2 WPF and WinRT controls if they share similar logic

the bug was that when you resize you were setting two width value to 0 which would cause next frame to get again the Kinect frame size - but if the canvas size isn't also reset in the _SizeChanged event, then at the next frame event an if clause skips the recalculation of ratio parameter, so the skeleton is smaller / not aligned with the person.

Note that in the V1 test app have also done XAML changes to allow KinectViewer (that I've added to it) to take all empty space when resizing

have also added commented block at XAML of the v1 test app and conditional compilation checks at codebehind, so that one can switch to using a viewbox>grid>image,canvas block instead of the KinectViewer control with almost identical code. However, I noticed that the code in KinectViewer control is producing a bit better aligned results than the extensions to Canvas after resizing the application window. It might be my impression, but I've noticed they use quite different code. Haven't checked the v2 version if it has unified such code (e.g. I'd expect all that drawing code from KinectViewer control in v1 version to be in the Canvas extensions instead of being inside the WPF control's code)

@Vangos
Copy link
Member

Vangos commented Nov 20, 2015

Thanks for this update. Kinect v1 and v2 controls are slightly different.
I'll integrate all of your code. We are working on a quite big update in
the next few weeks.
On Fri, 20 Nov 2015 at 17:51, George Birbilis [email protected]
wrote:

Please pull-in #12 #12 -
fixed a bug at _SizeChanged event handler of WPF KinectViewer control

Have done the fix at Kinect v1 version only since I don't have a v2 Kinect
device yet to try it out. Probably the same fix is needed to v2 WPF and
WinRT controls if they share similar logic

the bug was that when you resize you were setting two width value to 0
which would cause next frame to get again the Kinect frame size - but if
the canvas size isn't also reset in the _SizeChanged event, then at the
next frame event an if clause skips the recalculation of ratio parameter,
so the skeleton is smaller / not aligned with the person.

Note that in the V1 test app have also done XAML changes to allow
KinectViewer (that I've added to it) to take all empty space when resizing

have also added commented block at XAML of the v1 test app and conditional
compilation checks at codebehind, so that one can switch to using a
viewbox>grid>image,canvas block instead of the KinectViewer control with
almost identical code. However, I noticed that the code in KinectViewer
control is producing a bit better aligned results than the extensions to
Canvas after resizing the application window. It might be my impression,
but I've noticed they use quite different code. Haven't checked the v2
version if it has unified such code (e.g. I'd expect all that drawing code
from KinectViewer control in v1 version to be in the Canvas extensions
instead of being inside the WPF control's code)


Reply to this email directly or view it on GitHub
#13.

Vangos Pterneas
http://pterneas.com

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants