Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ASI 224mc flickers #1802

Open
newgecko opened this issue Jan 24, 2025 · 2 comments
Open

ASI 224mc flickers #1802

newgecko opened this issue Jan 24, 2025 · 2 comments

Comments

@newgecko
Copy link

Hello quick question,

I have a problem with my Asi224mc, the picture always

somehow. Most of the time the picture is normal and sometimes it looks like a colored bayer pattern. that looks very strange.

I want to test the asi camera 16bit fix, but in which file does the code have to go in exactly (path / filename / which position).

Sorry for the stupid question, you have probably already given the answer x times. I just can't find it.

Greedings Nico

Image
Image

@aaronwmorris
Copy link
Owner

aaronwmorris commented Jan 24, 2025

I think this is an issue with the ASI224. There have been 2-3 other instances of this behavior reported. What I suspect is happening is the sensor is randomly reading the image sensor using a different offset. Image sensors generally have an overscan area, additional rows and columns that are not normally used.

If the camera suddenly reads the image sensor with one column or row offset by one, it would require a different bayer pattern to have the correct colors. It is possible that the offset is being correctly reported in the FITS headers, but I do not have a good test case to ensure indi-allsky does the correct process.

INDI configuration can be placed in the INDI Camera Config (Default) field on the Camera tab (near the bottom) on the Config page.

ZWO cameras normally run in 16-bit mode by default, but if you want to enforce it, you can use this:

{
    "PROPERTIES" : {},
    "SWITCHES" : {
        "CCD_VIDEO_FORMAT" : {
            "on"  : ["ASI_IMG_RAW16"]
        }
    }
}

You could try to run the camera in RGB24 mode. In this mode, the camera performs debayering itself.

{
    "PROPERTIES" : {},
    "SWITCHES" : {
        "CCD_VIDEO_FORMAT" : {
            "on"  : ["ASI_IMG_RGB24"]
        }
    }
}

@newgecko
Copy link
Author

Hi, thanks for the quick reply. I will test this on Monday. Thank you very much for your work on Indi-Allsky, I like your software very much. Thanks and greetings from Germany Nico

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants