I have one canvas which contains the Skelton and one image which contains the camera view . However I can't merge them together . As in I need the skeleton to be able to show overlay of the camera view so that can see both together on one screen instead
of two . Isit possible to Do that ? Or I have one more program which works the same way however I use image to image also facing the same problem
<Window x:Class="KinectSkeletonViewer.MainWindow" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" Title="Skeleton Viewer" SizeToContent="WidthAndHeight" Loaded="Window_Loaded" mc:Ignorable="d" xmlns:d="http://schemas.microsoft.com/expression/blend/2008" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" d:DesignHeight="744" d:DesignWidth="1173"><StackPanel Width="1000" Height="702" MaxWidth="Infinity"><TextBlock FontSize="30" FontStretch="Expanded" FontStyle="Normal" FontWeight="Bold" Foreground="Black" Height="40" Name="textBlock1" Text="Position" Width="376" /><TextBlock Name="StatusTextBlock" Text="Skeleton Status" FontSize="30" Width="375"></TextBlock><TextBlock Name="QualityTextBlock" Text="Quality Display" FontSize="30" Height="60" Width="385"></TextBlock><Canvas Height="261" Name="skeletonCanvas" Width="383"></Canvas><Image Height="238" Name="CameraView" Stretch="Fill" Width="300" /></StackPanel></Window>