×

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

Bi-monthly release with minor bug fixes and improvements

New All Sky camera management software: indi-allsky

  • Posts: 10
  • Thank you received: 1
What lens are you using on the SVBony camera?
2 years 5 months ago #77438

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

  • Posts: 261
  • Thank you received: 66
I am just using a ZWO 2.1 or 2.5mm CS mount lens that came with one of my other cameras I use for autoguiding.
2 years 5 months ago #77439

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

  • Posts: 261
  • Thank you received: 66
I have a test script for each method and some example images to torture them.

I will post each set of test images for cv2 matchTemplate() and scikit blob_dog().  There is quite a bit of tuning that can be done to each method that can affect the results.  You can increase sensitivity in one case but increase the false positive rate in another.  The settings I have found seem to work well across each type of image I have.

cv2 settings:
stars = cv2.matchTemplate(image, star_template, cv2.TM_CCOEFF_NORMED)
stars_filtered = numpy.where(result >= 0.55)

scikit settings:
stars = blob_dog(image, max_sigma=5, min_sigma=1, threshold=.1, overlap=0.1)
2 years 5 months ago #77462

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

  • Posts: 261
  • Thank you received: 66
Image:  Clear, no clouds

cv2 matchTemplate
INFO:root:SEP processing in 0.3813 s
INFO:root:Deduplication in 1.0220 s
INFO:root:Total in 1.4033 s
INFO:root:Found 297 objects
 

scikit blob_dog
INFO:root:SEP processing in 5.0061 s
INFO:root:Found 78 objects
 
The following user(s) said Thank You: Jasem Mutlaq
2 years 5 months ago #77463
Attachments:

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

  • Posts: 261
  • Thank you received: 66
Image: Transparent clouds

cv2 matchTemplate
INFO:root:SEP processing in 0.3807 s
INFO:root:Deduplication in 0.0089 s
INFO:root:Total in 0.3896 s
INFO:root:Found 27 objects
 


scikit blob_dog
INFO:root:SEP processing in 4.9986 s
INFO:root:Found 4 objects
 
2 years 5 months ago #77464
Attachments:

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

  • Posts: 261
  • Thank you received: 66
Image:  Full clouds (no stars)

cv2 matchTemplate
INFO:root:SEP processing in 0.3782 s
INFO:root:Deduplication in 0.0001 s
INFO:root:Total in 0.3783 s
INFO:root:Found 0 objects
 

scikit blob_dog
INFO:root:SEP processing in 5.0570 s
INFO:root:Found 0 objects
 
The following user(s) said Thank You: Jasem Mutlaq
2 years 5 months ago #77467
Attachments:

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

  • Posts: 261
  • Thank you received: 66
I also tried to use the python sep module, but ultimately, it would not accept any data from INDI.  INDI [mostly] produces 16-bit unsigned integer FITS data, where sep seemed to want 32-bit floating point FITS data.  I may have the types slightly wrong, but I never could get sep to accept FITS data from INDI.
2 years 5 months ago #77468

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

Great job Aaron! This method certainly provides an acceptable alternative to SEP for such applications! I gotta get running in my observatory!
2 years 5 months ago #77471

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

  • Posts: 278
  • Thank you received: 17
This looks really great :-)
2 years 5 months ago #77478

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

  • Posts: 261
  • Thank you received: 66
Status update...

In addition to the ZWO, Svbony, QHY, and Canon support, I have added support for the following vendors:
  • Touptek
  • Altair
  • Raspberry PI HQ camera
  • INDI Simulator (makes testing easier)
I have also added the ability to generate star trails from the all sky data, similar to Thomas Jacquin's allsky project.
The following user(s) said Thank You: Jasem Mutlaq
2 years 3 months ago #78998

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

  • Posts: 126
  • Thank you received: 10
Hello,
I use the soft of Thomas Jacquin for two years with a ASI 224MC. It's great but I would like to use a DMK41 usb instead the ASI224MC.
It's not possible with the soft AllSky of Thomas Jacquin..
Do you think is it possible whit your soft ?
Thank you,
Frank
2 years 3 months ago #79002

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

  • Posts: 124
  • Thank you received: 28
Hi Aaron, perhaps I could help as I use SEP on python with FITS files as well:

I use astropy for fits handling:and the image is used like this:So I know that SEP needs float, but it should work. If you need further help, please let me know.
Michel
The following user(s) said Thank You: Aaron Morris
2 years 3 months ago #79005

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

Time to create page: 1.318 seconds