This Post contains videos and information about "Smart Telescopes". If you are planning to but "Smart Telescope", then watch the video before buying it! Some of the Smart Telescopes Seestar S50 Seestar S30 DWARF 3 To know more about the above kindly visit below Youtube channels links. https://www.youtube.com/@AstroForumSpace DWARF 3 VS Seestar S50 Smart Telescope Review + Tutorial https://www.youtube.com/@the_space_koala SeeStar S30 Tried & Tested - Does The Smallest Telescope Ever Measure Up to The S50? Credits- https://www.youtube.com/@AstroForumSpace https://www.youtube.com/@the_space_koala
In Astronomy, sometimes the images send by satellite/telescope could be Blur and one would be interested to make the image Sharpe. The Kernel (it is matrix representation) is to process the image -from Blur image to Sharpe Image. Convolution Matrix, Mask, Matrix/Array are the other names given to the Kernel. Below is the example of Mars Surface Blur Image Image Credit: NASA/JPL-Caltech Below is the processed image which has now become Sharpe Image Please open both images to see the effect.7 Below is the python code used. ****************************************************************** # load the required packages import cv2 import numpy as np # load the image into system memory image = cv2.imread('E:\\astronomy_related\\blurr_to_clear_image\\marssurface_blurr.jpg', flags=cv2.IMREAD_COLOR) # display the blurr image to the screen cv2.imshow('Mars Surface blurr...
Kids Activity - Create Halley's Comet stimulation using Chat GPT It is easy to create basic simulation using Chat GPT by giving prompt .Below is example of sample prompt "create java script code to create Halley's comet such that it is orbiting Sun. Also show distance in number" User can create more creative prompt Below is JavaScript code which created above graphical simulation (just copy past in note pad and save file as html and then open in browser) <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <style> canvas { border: 1px solid #000; display: block; margin: 20px auto; } </style> <title>Comet Animation</title> </head> <body> <canvas id="solarSystemCanvas" width="800" height="800">...
Comments
Post a Comment