Constants.cs 8.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Drawing;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. using bbiwarg.Utility;
  8. namespace bbiwarg
  9. {
  10. public enum InputType
  11. {
  12. Camera = 0,
  13. Movie = 1
  14. }
  15. class Constants
  16. {
  17. // input
  18. public static readonly InputType InputSource = InputType.Camera;
  19. public static readonly String InputMoviePath = "..\\..\\videos\\touch\\4.skv";
  20. // Logger
  21. public static readonly LogSubject LogLevel = LogSubject.None;
  22. public static readonly int ConsoleWidth = 90;
  23. public static readonly int ConsoleHeight = 30;
  24. // Output
  25. public static readonly int OutputUpdateRate = 30;
  26. public static readonly int OutputRenderRate = 30;
  27. public static readonly int OutputNumImages = 5;
  28. public static readonly int OutputNumImagesPerRow = 3;
  29. public static readonly float OutputScaleFactor = 1f; // output window size is scaled by this factor (from necessary size for images)
  30. public static readonly String OutputTitle = "BBIWARG - Output";
  31. // TUIO
  32. public static readonly bool TuioEnabled = false;
  33. public static readonly String TuioIP = "127.0.0.1";
  34. public static readonly int TuioPort = 3333;
  35. // image
  36. public static readonly Vector2D MaxPixel = new Vector2D(319, 239);
  37. public static readonly float ImageDiagonalLength = MaxPixel.Length;
  38. // confidence image
  39. public static readonly int ConfidenceImageMinThreshold = 500;
  40. // depth image
  41. public static readonly int DepthImageMedianSize = 5;
  42. public static readonly int DepthImageDepthRange = 200; // <255
  43. // edge image
  44. public static readonly int EdgeImageCannyStartThreshold = 80;
  45. public static readonly int EdgeImageCannyLinkingThreshold = 60;
  46. public static readonly int EdgeImageCannySize = 3;
  47. public static readonly int EdgeImageRoughNumDilationIterations = 1;
  48. // finger detection
  49. public static readonly int FingerStepSize = 2;
  50. public static readonly int FingerMaxGapCounter = 5;
  51. public static readonly int FingerMaxSliceDifferencePerStep = 5;
  52. public static readonly int FingerMinNumSlices = 25 / FingerStepSize;
  53. public static readonly int FingerNumSlicesForDirectionDetection = FingerMinNumSlices / 4;
  54. public static readonly int FingerMaxWidth = 30;
  55. public static readonly int FingerMinWidth = 2;
  56. public static readonly int FingerRemoveNumSlicesForCorrection = 5;
  57. public static readonly int FingerNumSlicesForRelativeDirection = FingerRemoveNumSlicesForCorrection;
  58. public static readonly int FingerOutMargin = 8;
  59. public static readonly int FingerCrippleMinDifference = 20;
  60. public static readonly int FingerContourMargin = 4;
  61. // finger tracking
  62. public static readonly float FingerTrackerMinSimilarityForTracking = 0.8f;
  63. public static readonly int FingerTrackerNumFramesDetectedUntilTracked = 5;
  64. public static readonly int FingerTrackerNumFramesLostUntilDeleted = 10;
  65. public static readonly float FingermXX = 0.00005f;
  66. public static readonly float FingermXY = 0.0f;
  67. public static readonly float FingermYY = 0.00005f;
  68. public static readonly int FingerTrackerNumDirectionsForReverseCheck = 20;
  69. // hand detection
  70. public static readonly int HandNumColors = 3;
  71. public static readonly int HandFloodFillDownDiff = 2;
  72. public static readonly int HandFloodFillUpDiff = 2;
  73. public static readonly float HandMaxSize = 0.6f;
  74. public static readonly float HandMinSize = 0.01f;
  75. public static readonly float HandThumbDefectMaxDistanceToThumb = FingerMaxWidth;
  76. public static readonly float HandThumbDefectMinThumbShortLengthRatio = 0.75f;
  77. public static readonly float HandThumbDefectMaxThumbShortLengthRatio = 1.1f;
  78. public static readonly float HandThumbDefectMinShortLongLengthRatio = 0.3f;
  79. public static readonly float HandThumbDefectMaxShortLongLengthRatio = 0.7f;
  80. public static readonly int HandExtendMaxDifference = 40;
  81. // hand tracker
  82. public static readonly float HandTrackerMinSimilarity = 0.7f;
  83. public static readonly int HandTrackerNumFramesDetectedUntilTracked = 2;
  84. public static readonly int HandTrackerNumFramesLostUntilDeleted = 5;
  85. public static readonly float HandmXX = 0.0005f;
  86. public static readonly float HandmXY = 0.0f;
  87. public static readonly float HandmYY = 0.0005f;
  88. // palm detection
  89. // palm tracker
  90. public static readonly float PalmTrackerMinSimilarity = 0.5f;
  91. public static readonly int PalmTrackerNumFramesDetectedUntilTracked = 2;
  92. public static readonly int PalmTrackerNumFramesLostUntilDeleted = 5;
  93. public static readonly float PalmmXX = 0.00005f;
  94. public static readonly float PalmmXY = 0.0f;
  95. public static readonly float PalmmYY = 0.00005f;
  96. //palm Grid
  97. public static int PalmGridNumRows = 3;
  98. public static int PalmGridNumColumns = 4;
  99. // touch detection
  100. public static readonly float TouchMinTouchValue = 0.3f;
  101. public static readonly int TouchAreaSize = 30;
  102. public static readonly int TouchFloodfillDownDiff = 1;
  103. public static readonly int TouchFloodfillUpDiff = 3;
  104. public static readonly int TouchTipInsideFactor = 2;
  105. public static readonly int TouchTipOutsideFactor = 7;
  106. // touch tracking
  107. public static readonly float TouchTrackerMinSimilarity = 0.3f;
  108. public static readonly int TouchTrackerNumFramesDetectedUntilTracked = 1;
  109. public static readonly int TouchTrackerNumFramesLostUntilDeleted = 5;
  110. public static readonly float TouchmXX = 0.003f;
  111. public static readonly float TouchmXY = 0.0f;
  112. public static readonly float TouchmYY = 0.003f;
  113. public static readonly float TouchProcessNoise = 3.0e-4f;
  114. // touchEventVisualizer
  115. public static readonly int TouchEventVisualizerFadeOutTime = 1500;
  116. // colors
  117. public static readonly Color ColorDetected = Color.Turquoise;
  118. public static readonly Color ColorTracked = Color.Yellow;
  119. public static readonly Color DepthImageColor = Color.White;
  120. public static readonly Color EdgeImageColor = Color.Blue;
  121. public static readonly Color OutputImageBorderColor = Color.White;
  122. public static readonly Color FingerSliceColor = Color.Magenta;
  123. public static readonly Color FingerDetectedColor = ColorDetected;
  124. public static readonly Color FingerTrackedColor = ColorTracked;
  125. public static readonly Color FingerTipColor = Color.Blue;
  126. public static readonly Color FingerContourColor = Color.Red;
  127. public static readonly Color FingerIDColor = Color.White;
  128. public static readonly Color FingerPointsPredictionColor = Color.Yellow;
  129. public static readonly Color TouchEventDetectedColor = ColorDetected;
  130. public static readonly Color TouchEventTrackedColor = ColorTracked;
  131. public static readonly Color TouchEventAreaMatchedSubtractColor = Color.DarkOrange;
  132. public static readonly Color TouchEventAreaNonMatchedSubtractColor = Color.DarkSlateGray;
  133. public static readonly Color TouchEventStatusBarColor = Color.Green;
  134. public static readonly Color TouchEventVisualizerLineColor = Color.Yellow;
  135. public static readonly Color TouchEventVisualizerPointColor = Color.Red;
  136. public static readonly Color TouchEventVisualizerGridColor = Color.White;
  137. public static readonly Color TouchEventVisualizerTextColor = Color.White;
  138. public static readonly Color PalmQuadColor = Color.Blue;
  139. public static readonly Color PalmGridColor = Color.CornflowerBlue;
  140. public static readonly Color PalmConturColor = Color.Red;
  141. public static readonly Color PalmConvexHullColor = Color.Green;
  142. public static readonly Color PalmThumbDefectColor = Color.Lime;
  143. public static readonly Color[] HandColor = new Color[3] { Color.Red, Color.Blue, Color.Green };
  144. public static readonly Color HandCentroidColor = Color.Yellow;
  145. public static readonly Color HandIDColor = Color.White;
  146. }
  147. }