1234567891011121314151617181920212223242526272829303132 |
- Five states of the Detector,IDLE,AED1,AED2 ,HST and RECOVER
- 1、IDLE: Idle state , the detector will not acquire image, enter this state by calling COM_Stop.
- 2、AED1: It is refreshing template at this state, enter this state by calling COM_AedAcq at IDLE state, it will takes 4-5 seconds and turn to AED2 state automatically.
- 3、AED2: It detect the X-ray automatically, and acquire the image.
- 4、HST: It can acquire the image by trigging the hand switch, enter this state by calling COM_HstAcq at IDLE state.
- 5. RECOVER: This state is the panel recovery state and will last for about 10 seconds. In the AED state, after each picture is acquired, the panel automatically recovers.
- During this time, the COM_Stop command is called to exit the AED state, and the panel enters the Recover state and enters the IDLE state.
- Handswitch workflow:
- 1 Make the detector initialization, then receive the event “EVENT_LINKUP”.
- 2 Enter HST mode by calling COM_HstAcq when the panel is in the IDLE state.
- 3 Expose with the hand switch.
- 4 Get the image by calling COM_GetImage when event “EVENT_IMAGEVALID” is received.
- 5 Exit HST mode by calling COM_Stop after acquisition finished.
- 6 Repeat steps 2-5 to do next acquisition.
- 流程应该是
- 1 调用COM_HstAcq进入HST状态
- 2 手闸生效后,调用COM_ExposeReq
- 3 Ready event到来,或者硬同步信号闭合,使能X射线。
- 4 出图
- AED workflow:
- 1 Make the detector initialization, then receive the event “EVENT_LINKUP”.
- 2 Enter AED1 mode by calling COM_AedAcq when the panel is in the IDLE state.
- 3 Panel will enter AED2 mode after 4-5 seconds. It's time to exposure.
- 4 Get the image by calling COM_GetImage when event “EVENT_IMAGEVALID” is received.
- 5 Exit AED mode by calling COM_Stop after acquisition finished.
- 6 Repeat steps 2-5 to do next acquisition.
- NOTE: In the AED mode, the command COM_Stop is called after the previous acquisition, and the command COM_AedAcq is called after the panel state is in the
- IDLE state, Which is a suggested method for collecting multiple Images.
|