BaslerCamera.cs 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274
  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. namespace SDKCameraTool
  8. {
  9. public class BaslerCamera : ICamera
  10. {
  11. public bool bGammaEnable
  12. {
  13. get
  14. {
  15. throw new NotImplementedException();
  16. }
  17. set
  18. {
  19. throw new NotImplementedException();
  20. }
  21. }
  22. public Bitmap bmpImage
  23. {
  24. get
  25. {
  26. throw new NotImplementedException();
  27. }
  28. }
  29. public int cameraID
  30. {
  31. get
  32. {
  33. throw new NotImplementedException();
  34. }
  35. }
  36. public string cameraName
  37. {
  38. get
  39. {
  40. throw new NotImplementedException();
  41. }
  42. set
  43. {
  44. throw new NotImplementedException();
  45. }
  46. }
  47. public CamereaCompanyType CompanyType
  48. {
  49. get
  50. {
  51. throw new NotImplementedException();
  52. }
  53. }
  54. public string CxpFilePath
  55. {
  56. get
  57. {
  58. throw new NotImplementedException();
  59. }
  60. set
  61. {
  62. throw new NotImplementedException();
  63. }
  64. }
  65. public float fExpTime
  66. {
  67. get
  68. {
  69. throw new NotImplementedException();
  70. }
  71. set
  72. {
  73. throw new NotImplementedException();
  74. }
  75. }
  76. public float fGain
  77. {
  78. get
  79. {
  80. throw new NotImplementedException();
  81. }
  82. set
  83. {
  84. throw new NotImplementedException();
  85. }
  86. }
  87. public int Height
  88. {
  89. get
  90. {
  91. throw new NotImplementedException();
  92. }
  93. set
  94. {
  95. throw new NotImplementedException();
  96. }
  97. }
  98. public float iGamma
  99. {
  100. get
  101. {
  102. throw new NotImplementedException();
  103. }
  104. set
  105. {
  106. throw new NotImplementedException();
  107. }
  108. }
  109. public bool isFlowAcq
  110. {
  111. get
  112. {
  113. throw new NotImplementedException();
  114. }
  115. set
  116. {
  117. throw new NotImplementedException();
  118. }
  119. }
  120. public bool IsNeedCalibration
  121. {
  122. get
  123. {
  124. throw new NotImplementedException();
  125. }
  126. set
  127. {
  128. throw new NotImplementedException();
  129. }
  130. }
  131. public int OffsetX
  132. {
  133. get
  134. {
  135. throw new NotImplementedException();
  136. }
  137. set
  138. {
  139. throw new NotImplementedException();
  140. }
  141. }
  142. public int OffsetY
  143. {
  144. get
  145. {
  146. throw new NotImplementedException();
  147. }
  148. set
  149. {
  150. throw new NotImplementedException();
  151. }
  152. }
  153. public string sSerialNumber
  154. {
  155. get
  156. {
  157. throw new NotImplementedException();
  158. }
  159. set
  160. {
  161. throw new NotImplementedException();
  162. }
  163. }
  164. public int TriggerCount
  165. {
  166. get
  167. {
  168. throw new NotImplementedException();
  169. }
  170. set
  171. {
  172. throw new NotImplementedException();
  173. }
  174. }
  175. public int TriggerDelay
  176. {
  177. get
  178. {
  179. throw new NotImplementedException();
  180. }
  181. set
  182. {
  183. throw new NotImplementedException();
  184. }
  185. }
  186. public TriggerMode triggerMode
  187. {
  188. get
  189. {
  190. throw new NotImplementedException();
  191. }
  192. set
  193. {
  194. throw new NotImplementedException();
  195. }
  196. }
  197. public TriggerSouce triggerSource
  198. {
  199. get
  200. {
  201. throw new NotImplementedException();
  202. }
  203. set
  204. {
  205. throw new NotImplementedException();
  206. }
  207. }
  208. public int Width
  209. {
  210. get
  211. {
  212. throw new NotImplementedException();
  213. }
  214. set
  215. {
  216. throw new NotImplementedException();
  217. }
  218. }
  219. public event EventHandler<EventImageTrigger> ImageTrigger;
  220. public int CloseCam()
  221. {
  222. throw new NotImplementedException();
  223. }
  224. public int OpenCam(CaptureMode captureMode)
  225. {
  226. throw new NotImplementedException();
  227. }
  228. public int Snap()
  229. {
  230. throw new NotImplementedException();
  231. }
  232. }
  233. }