Click here to Skip to main content
15,879,474 members
Articles / Desktop Programming / WPF

Sitting posture recognition with Kinect sensor

Rate me:
Please Sign up or sign in to vote.
4.78/5 (12 votes)
24 Oct 2011CPOL6 min read 66.9K   3.4K   27  
Recognition of concentrating, non-concentrating, sleeping, and raise-hand postures.
<?xml version="1.0"?>
<configuration>
	<configSections>
  <sectionGroup name="applicationSettings" type="System.Configuration.ApplicationSettingsGroup, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" >
   <section name="RecognitionPose.Properties.Settings" type="System.Configuration.ClientSettingsSection, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" />
  </sectionGroup>
 </configSections>
 <runtime>
		<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
			<dependentAssembly>
				<assemblyIdentity name="OpenNI.Net" publicKeyToken="6B43D0C6CF74EE7F" culture="neutral"/>
				<bindingRedirect oldVersion="0.0.0.0-1.3.2.3" newVersion="1.3.2.3"/>
			</dependentAssembly>
		</assemblyBinding>
	</runtime>
 <applicationSettings>
  <RecognitionPose.Properties.Settings>
   <setting name="isDebug" serializeAs="String">
    <value>True</value>
   </setting>
   <setting name="confidenceAngle" serializeAs="String">
    <value>50</value>
   </setting>
   <setting name="standPoseFactor" serializeAs="String">
    <value>1.1</value>
   </setting>
   <setting name="isAutomaticChoiceAngle" serializeAs="String">
    <value>True</value>
   </setting>
  </RecognitionPose.Properties.Settings>
 </applicationSettings>
</configuration>

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior) Altair
Russian Federation Russian Federation
Ph.D., Image processing, Neural net, C++, C#, OPenCv,ASP.Net MVC, JScript, Qt,SQL,Kinnect,SilvelLight,

Comments and Discussions