Search found 573 matches

by fabdev
16 May 2026, 13:47
Forum: Image processing and analysis
Topic: plate solve mistery
Replies: 7
Views: 6744

Re: plate solve mistery

If the initial rough-align performed by the telescope has a precision better than 10-20 arcminutes, then the initial sync could be skipped and you can start the GOTOs to the targets, the autocenter with plate solve will correct them. However, the first (manual) plate solve and syncing can be done wi...
by fabdev
15 May 2026, 20:26
Forum: Scripts
Topic: Image.FindCoordinates not working for rotated image?
Replies: 2
Views: 1937

Re: Image.FindCoordinates not working for rotated image?

Hello, to use the same settings of the Plate Solve Window, remember to click the button "Save parameters".
If it still does not solve, post the image in jpeg format.
Fabio.
by fabdev
05 May 2026, 20:19
Forum: General
Topic: Astroart 9 SP4
Replies: 0
Views: 4664

Astroart 9 SP4

Hello, a new minor version of Astroart 9 is available, see: https://www.msb-astroart.com/ Version 9.0 SP4 - May 5, 2026 -------------------------------- * New feature. Blind dithering for sequences. * New feature. 3D graph with antialiasing and zoom. * New feature. Image resize with option for gamma...
by fabdev
22 Apr 2026, 17:02
Forum: Image processing and analysis
Topic: plate solve outside images failure
Replies: 4
Views: 5570

Re: plate solve outside images failure

The M104 image has a FOV of about 1 degrees, so entering: 60 +- 20% arcminutes will solve it, the exact FOV will be 65.9 The N6995 image has a FOV of about 1.5 degrees, so entering: 90 +- 20% will solve it, the exact FOV will be 95.6 When the FOV is unknown set the tolerance to +- 70%, then try 1 de...
by fabdev
20 Apr 2026, 15:39
Forum: Image processing and analysis
Topic: plate solve outside images failure
Replies: 4
Views: 5570

Re: plate solve outside images failure

Hi, post a JPG image to the forum, even resized if it's too big.
To attach an image, click the tab "Image and attachments" below the editor.
Fabio.
by fabdev
20 Apr 2026, 15:36
Forum: Scripts
Topic: Script to switch between MainCam and GuideCam?
Replies: 3
Views: 3796

Re: Script to switch between MainCam and GuideCam?

Hi, the correct command would be "Guider.Disconnect", however in your code there is no need for it since the command "Camera.Disconnect" disconnects also the guider.
Fabio.
by fabdev
06 Apr 2026, 02:36
Forum: Image processing and analysis
Topic: Annotation overlay in animation
Replies: 2
Views: 45350

Re: Annotation overlay in animation

yes, context menu of the multiblink, then "Copy annotations".
Annotations with date/time will be updated in real-time on every frame. Just place the annotation of the first frame of the sequence.
See also in the help: "Blink".
by fabdev
04 Apr 2026, 17:37
Forum: Scripts
Topic: Starting AstroArt with a script
Replies: 2
Views: 46472

Re: Starting AstroArt with a script

Hi, it's possible with the Remote Control SDK, but it's more complicated.
OK, launching the script by command line has been added today, to receive now the prerelease of the SP4 just write me by email or PM.
Fabio.
by fabdev
01 Apr 2026, 20:34
Forum: Scripts
Topic: Automatic meridian flip with autofocus
Replies: 4
Views: 5572

Re: Automatic meridian flip with autofocus

Hello, via script it's possible, for example: side = "?" ' .... ' initialization ' ..... ' before an exposure: if Telescope.PierSide <> side then side = Telescope.PierSide Camera.FullFrameAutofocus(...) Telescope.AutoCenter(...) end if however, since you cited the option "Plate solve and center tele...
by fabdev
31 Mar 2026, 02:38
Forum: Image processing and analysis
Topic: Statement about debayering in Astroart
Replies: 4
Views: 7115

Re: Statement about debayering in Astroart

Hi, before using Demosaic in Preprocessing for the very first time, it's recommended to do a "manual" Demosaic, so that the option about the pattern (GRGB etc.) of your camera is saved. In Astroart the option is not called "GRGB" or "GBGR", it's simply one of the four patterns. However, it's possibl...
by fabdev
26 Mar 2026, 03:59
Forum: Image processing and analysis
Topic: Combining Ha with LGRB
Replies: 5
Views: 26564

Re: Combining Ha with LGRB

- is this the right workflow?, I mean first preprocessing + applying filters and then add Ha? - How did you find the 0.138 in the example? 1) Yes, HA is inserted after preprocessing and filtering (gradient removal only). 2) The 0.138 was found visually: Enable the "lock" preview, then using the mou...
by fabdev
25 Mar 2026, 15:01
Forum: Image processing and analysis
Topic: Masking the Sun
Replies: 2
Views: 3156

Re: Masking the Sun

Hi, the simplest method is to move the mask (CTRL + arrows keys, or tha Mask window), then to enlarge/shrink the mask with the commands "Mask/erosion and dilation" The Formula method is more difficult, by the way formulas are just one row, so: if((x-1638)^2+(y-1550)^2 < 1340^2, 1, 0) A cleaner metho...