I like the concept of estimating collimation from FWHMs of stars in a starfield but there are are number of things I don't like about CCD Inspector:
1) It gives no feedback to show which stars it used
2) It gives no information on the amount of, or the direction of, star elongation. Actually, to be fair, CCD Inspector 2 will provide an "aspect ratio" plot which gives an idea of the amount of elongation but not the direction. The directions of elongation of the various stars provides some very useful information. For instance, sometimes the elongations tend to "radiate" from a fixed point (the optical centre), sometimes they are tangential instead of radial and sometimes they are all in the same direction (because of tilt or becuase of guiding issues).
Well today I've tackled the maths (fitting centroids and moments of inertia) and have written some code to calculate the direction of the major and minor axes of an elongated star and to calculate the FHWM along these axes (note that this is different to calculating the FHWM in the x direction and the y direction, which is something that IRIS does even though it is not very useful).
So I'm now well on the way to being able to identify all stars in an astro-image and to calculate the direction of elongation of each star together with their FHWMs along the star's major and minor axes. So the next question is how to graphically display all this data, ideally all in a single plot. Any ideas gratefully received!
Mark
Nice topic,
Would it be possible to show the stars as a 3d plot,
Assume the following.
your optics are perfect, i.e. in collimation ect,ect.
then if you plotted your stars as 3d isometric (or what ever its called)
you could display them as a grey scale cone upto a peak.
Now if your collimation is off, then the cone would not be a true cone,
you could overlay a red and green cone to show how much your optics are out by
in the x/y direction.
if that make sense.
ill try and explain that a bit better.
looking from above you would get a perfect cone,
(http://farm7.static.flickr.com/6099/6330440227_59918a70be.jpg)
if you collimation was out to the left you could show the overlay in a different colour,
(http://farm7.static.flickr.com/6107/6330440277_798bea0584.jpg)
the same for top to bottom,
(http://farm7.static.flickr.com/6057/6331193022_649dd3c30b.jpg)
and then all three,
(http://farm7.static.flickr.com/6225/6330440389_475f9ce199.jpg)
but if they were shown as cones,
then as you adjust then the cones would converge onto the perfect grey one.
something like this. (i know the red is on the other side now, but you get the idea)
(http://farm7.static.flickr.com/6218/6332282047_612bea0932.jpg)
The joys of solidworks.
Mac
Not sure if this is helpful but I tend to look at two things but CCD Inspector only provides one.
1) It does analyse images as they are downloaded through MaximDL and gives a fair representation of the direction and how far out collimation is. However, the 'live' display seems to be very susceptable to seeing so even when left to settle the collimation point does bounce too much to collimate with any degree of accuracy. At the moment the only way around this is to take long exposures but maybe an 'averaging' of close (ignoring outlier) results would be better.
Mac's idea seems good though I would add that the circles could be indicative of the 'criticality zone' so when they overlap then collimation is 'close enough'. For fast optics the circles might be small and slower scopes slightly larger - just a thought
2) When I take an image I always look at the corner stars as these are the most affected by collimation errors. It would be really good to have, in addition to an indication of the error of the centre of collimation, a display of the corners so the actual star shapes can be seen - I see this as the acid test.
Sounds like an excellent project - hope it won't be just for DSLR's ;)
Robert
Thanks for the suggestions - I haven't yet got to the stage where I will plot the resulting data. Although I'm making some good progress with this, I'm hitting a few obstacles.
I've reached the stage where my program will look at an image, identify the stars (this was the most difficult part) and then print a complete list of centroids, star size (in pixels), total intensity, angle of elongation and FWHM along the major and minor axes of elongation.
Analysing this data has raised a few issues:
1) There is a strong correlation between star size and calculated FWHM - the larger the star, the greater the FWHM. I think this is due to 2 reasons:
a) Smaller stars are dimmer and so the outer edges are more difficult to accurately distinguish from the background noise - I'm probably erring too far in the direction of avoiding false positives
b) Larger stars are brighter and closer to saturation which makes them wider and flatter
Interestingly, if I analyse star data from IRIS I see exactly the same correlation.
2) For stars taken individually, the angle of elongation is not terribly reliable. However, plotting the angles for stars in a certain vicinity does show some quite strong "bunching" of angles. I'm beginning to think that some kind of wind rose plot might be the best approach i.e. split the image into regions and display a wind rose for each region.
The general approach I am taking is to identify a star, calculate the backgound level and standard deviation in the area around the star, identify the pixels comprising the star and then doing the centroid calculations (analysis of moments up to second order) on those pixels once the background is subtracted.
However, the centroid calculations are easily upset by wrongly including/excluding any individual pixel or by having an incorrect estimate of the local background flux. It may end up being more fruitful to take a curve fitting approach (i.e. calculate the parameters of a best fit 2D Gaussian). Maybe this would help solve the first issue.
Anyway, it's all interesting stuff and preferable to hanging out on street corners drinking cider ;)
Mark
QuoteI'm beginning to think that some kind of wind rose plot might be the best approach
That's a novel approach and I think it could work quite well considering the variability of the data. Several images could be averaged if a more accurate result was needed or the starfield was less then ideal.
Would this work on fits files written to disk or had you planned some other 'live' feed - sorry for getting ahead here I can see this approach working very well for the Hyperstar ;)
Robert
Quote from: RobertM
Would this work on fits files written to disk or had you planned some other 'live' feed - sorry for getting ahead here I can see this approach working very well for the Hyperstar ;)
At present I can open only TIFF files. I intend to include RAW file support using Dave Coffin's DCRAW so it will work for Canon's raw files. So any file format supported by DCRAW should also work. I've also investigated how to code up functionality to monitor a folder for new files - that shouldn't be difficult to implement. So as long as image files can be dumped into the monitored folder in a supported format, they can be automatically opened and processed.
Potentially I could also add FITS support if it's not already supported by DCRAW.
How about a maxim plugin,
I know there are a few bits of software out there that monitor the image capture from maxim,
rather then doing their own
so that might kill a few birds with one stone, by just accessing the image pipe from maxim.
Mac.
Quote from: Mac
How about a maxim plugin ...
It might be possible but, at first, I want something completely independent of other software.
Mark
Mark,
You need to plot each star centroid and an angle of center movement against an assumed central point in the frame, this will give you the central off set and also allow you to calculate relative collimation against each star. You will also need to ignore saturated stars.
I'll get a piece of paper and draw you a diag when I get 5.
Chris
Quote from: Rocket Pooch
You need to plot each star centroid and an angle of center movement against an assumed central point in the frame, this will give you the central off set and also allow you to calculate relative collimation against each star.
Not quite sure what you mean but suggestions are welcome. I might totally ignore them of course :cheesy:
Mark
Quote from: RobertM
Would this work on fits files written to disk or had you planned some other 'live' feed - sorry for getting ahead here I can see this approach working very well for the Hyperstar ;)
Quote from: MarkS
Potentially I could also add FITS support if it's not already supported by DCRAW.
Robert,
If the application could automatically pick up and process any FITS file that appears in a chosen folder, would that work for you?
I've got the "5 pane" view working - it begins by displaying the centre and the extreme corners of the image but afterwards, it is possible to "slide around" each image section within each pane independently. It does an auto log-scaling on the intensity, for display purposes.
(http://www.markshelley.co.uk/webdisk/5pane.jpg)
Jumping ahead a bit, I would love to be able to select a bright star in each pane and display the Bhatinov focusing accuracy for each of the 5 stars simultaneously. This might even be useful during collimation - I'm not sure.
Mark
QuoteIf the application could automatically pick up and process any FITS file that appears in a chosen folder, would that work for you?
Yep that sounds good.
QuoteI've got the "5 pane" view working - it begins by displaying the centre and the extreme corners of the image but afterwards, it is possible to "slide around" each image section within each pane independently. It does an auto log-scaling on the intensity, for display purposes.
Nice ! One for the future - maybe you could consider a zoom in/out feature that affected all windows simultaneously.
QuoteJumping ahead a bit, I would love to be able to select a bright star in each pane and display the Bhatinov focusing accuracy for each of the 5 stars simultaneously. This might even be useful during collimation - I'm not sure.
You could calculate the relative Bhatinov error depending on distance from the image centre which might give a more critical collimation result - having to refocus each time would be a real pain though possibly a necessary step.
All this is great for Hyperstar and other systems with a single collimation control but what about Newtonians ? Would this help you with the E180 ?
Robert
Quote from: RobertM
All this is great for Hyperstar and other systems with a single collimation control but what about Newtonians? Would this help you with the E180 ?
It will certainly help getting the two-part Canon adapter ring correctly adjusted on the E180. Apart from that it would be useful as a critical focusing tool for both the Celestron C11 and the Tak E180.
A possible way of displaying stars selected for the FWHM calculations with their calculated orientations. Note that the saturated stars are ignored because their FWHMs would be misleading.
(http://www.markshelley.co.uk/webdisk/StarOrientations.jpg)
If the green lines are the direction of elongation, there a some weird occurances of adjacent or overlapping stars with perpendicular elongation.
Could that be caused by imperfections with the mirrors or gas/dust in the area of the subject ?
Quote from: mickw
If the green lines are the direction of elongation, there a some weird occurances of adjacent or overlapping stars with perpendicular elongation.
Could that be caused by imperfections with the mirrors or gas/dust in the area of the subject ?
The explanation is that the algorithm has been misled, probably because of noisy pixels or because a double star has been processed as a single entity. Maybe it wasn't even a star in the first place. In the end, the algorithm is taking a bunch of bright pixels, calling it a star and then calculating parameters for it. Anything can go wrong and it usually does!
It's the general trend that is the important thing.
For instance, here are some statistics obtained by averaging out values for stars in different regions of the image - splitting the image into 5x5 areas:
Starcount
110 96 94 103 66
97 104 79 85 62
99 65 76 60 59
72 58 55 41 48
70 52 54 45 44
FWHM (pixels)
2.43 2.70 2.72 2.98 3.17
2.58 2.68 2.82 3.06 3.34
2.70 2.74 2.85 3.19 3.43
2.78 2.92 3.10 3.38 3.57
2.94 3.16 3.31 3.58 3.86
FWHM std dev (pixels)
0.29 0.33 0.23 0.21 0.29
0.29 0.27 0.19 0.25 0.24
0.23 0.23 0.17 0.34 0.45
0.36 0.36 0.26 0.20 0.48
0.26 0.22 0.18 0.16 0.30
Elongation (pixels)
0.52 0.56 0.54 0.69 1.01
0.57 0.53 0.51 0.64 0.98
0.50 0.40 0.45 0.66 0.88
0.45 0.40 0.37 0.52 0.87
0.46 0.28 0.30 0.49 0.99
Orientation of Major Axes (degrees) (+ve is anti-clockwise from x-axis)
-83.0 -78.1 -75.3 -73.8 -72.1
-83.2 -75.2 -76.4 -81.6 -81.6
-80.1 -80.4 -83.1 -89.5 -88.6
-79.2 -77.1 88.0 83.2 80.1
-71.3 -69.0 71.2 66.7 67.1
Mean Spread of Angle of Orientation (deg)
+/-13.4 +/-15.9 +/-10.5 +/- 8.6 +/- 6.6
+/-12.2 +/-14.8 +/-11.6 +/- 8.5 +/- 6.2
+/-13.1 +/-16.9 +/-13.2 +/-10.8 +/- 6.6
+/-15.1 +/-19.6 +/-19.4 +/-12.4 +/- 7.6
+/-19.9 +/-29.6 +/-21.8 +/-12.9 +/- 7.7
Major Axis FWHM (pixels)
2.69 2.98 2.99 3.32 3.68
2.86 2.94 3.08 3.38 3.82
2.95 2.94 3.08 3.52 3.87
3.01 3.12 3.29 3.64 4.01
3.17 3.30 3.47 3.83 4.35
Minor Axis FWHM (pixels)
2.17 2.42 2.45 2.64 2.67
2.29 2.41 2.57 2.73 2.85
2.46 2.54 2.63 2.86 2.99
2.56 2.72 2.92 3.12 3.14
2.71 3.01 3.16 3.34 3.36
Looking good,
All the functionality I originally wanted is now in the prototype. The big "windrose" in each panel indicates the overall direction of elongation of the stars in that panel. The length of the main line in the windrose gives an indication of how significant the overall trend is - if the stars have fairly random directions then the line is very short. The statistics within each pane relate to the averages of the stars within that pane.
(http://www.markshelley.co.uk/webdisk/windrose.jpg)
As requested by Robert, I can now load FITS files (although I've only tested this on a Starlight Express sample).