Hi Sergei,
I tested the demo, it works fine.
When you set the start position, we will do 2 checks:
1st:
This position coordinate should satisfy the internal setting rules of sensor. Most of the time, they have to satisfy that the start position of width is a multiple of 2, and the start position of height is a multiple of 4.
You can set any value and it will be automatically corrected in our SDK. So after you set it successfully, please use ASIGetStartPos to get the real value to synchronize with your interface.
2nd:
ROI should not exceed the maximum scope of the image。
For example: 183's max size is 5496*3672, then you want an ROI size: 2000*1000. Then the start position of width should not exceed 3496 (=5496-2000), and the start position of height should not exceed 2672(=3672-1000). If you exceed them, they will be automatically corrected to 0. Beside, you also need to think about the binning mode here.
Thanks
Chad