×

INDI Library v2.0.7 is Released (01 Apr 2024)

Bi-monthly release with minor bug fixes and improvements

False image geometry bug - solved one year ago - is back again. Please fix

  • Posts: 106
  • Thank you received: 7
Hello,
a bug with a false image geometry, what was fixed 1year and 3 month ago is possible back again.
indilib.org/forum/ccds-dslrs/2849-asi160...-image-geometry.html

There is no INDI Client needed to reproduce this behavour, but it may related to the image geometry of a certain camera (ASI183 in my case)

1. Connect my camera, loading the config or default. Image size and frame size are right (5496x3672px). Making an image results in a fits with the right geometry. See: Start-After loading config or default.png

2. Changing binning to 4x4. Making an image results in a fits with 1368x918px what is right. But the change to 4x4 automatically sets the frame to 5472x3672px, what is wrong???

3. Changing now to back to bin 1x1 results in fits image of 5472x3672px, what is not the full size of the chip.

A year ago you fixed this very fast

Thomas
5 years 3 weeks ago #36926
Attachments:

Please Log in or Create an account to join the conversation.

  • Posts: 106
  • Thank you received: 7
Yesterday It cleared and the session was really bad, but the issue is still there.
5 years 2 weeks ago #37154

Please Log in or Create an account to join the conversation.

  • Posts: 210
  • Thank you received: 104
Thomas,

I reply to this in another thread but it is probably best to continue the discussion here, so I copy my message:

This is probably the fix for this issue that is the cause for your problem:
www.indilib.org/forum/general/4707-asi29...sue-3x3-and-4x4.html
In the solution Jasem say:
What changed in the driver is that it now strictly obeys that width % 8 must be zero

If I take the number for your camera:
- it start with a size of 5496, corresponding to width max.
- you ask for bin 4x4 : 5496/4 = 1374
- but 1374/8 = 171.75 , to respect the condition "width % 8 must be zero" it set the width to 171*8 = 1368
- Indi frame size are always unbinned so it is set to 1368*4 = 5472
- when you return to bin 1x1 it keep this size of 5472 making your new images not compatible with the first series.

I not use an ASI camera myself so it is difficult for me to try to fix that.
5 years 2 weeks ago #37155

Please Log in or Create an account to join the conversation.

Time to create page: 0.237 seconds