using IM in telescope tracking system

Questions and postings pertaining to the usage of ImageMagick regardless of the interface. This includes the command-line utilities, as well as the C and C++ APIs. Usage questions are like "How do I use ImageMagick to create drop shadows?".
Post Reply
User avatar
anthony
Posts: 8883
Joined: 2004-05-31T19:27:03-07:00
Authentication code: 8675308
Location: Brisbane, Australia

Re: using IM in telescope tracking system

Post by anthony »

Very difficult problem. As they are close to single pixel points then it should be possible by generating a gradient radiating out from each pixel location.

Now if you mask the second image from the pixel gradients, you should be able to get a average value of how far the second 'points' are from the first points.

If you do this with a X gradient, then a Y gradient you should be able to get a rough measure of the distance the points moved, which can be calibrated to actual pixel distance (or directly to motor steps).

How to generate this is another problem, which may involve masking (to remove color intensity differences), and some type of convolution blur (to generate the gradient). Fred Weinhaus is probably a good one to help with that.
Anthony Thyssen -- Webmaster for ImageMagick Example Pages
https://imagemagick.org/Usage/
Post Reply