"FX: Frame Stack (10)" - Searching for Comets

Somewhere to ask questions about the best way to use SharpCap
Forum rules


If you have a problem or question, please check the FAQ to see if it already has an answer : https://www.sharpcap.co.uk/sharpcap-faqs
Post Reply
FWI
Posts: 5
Joined: Sun Aug 18, 2019 8:27 pm

"FX: Frame Stack (10)" - Searching for Comets

#1

Post by FWI »

Hi Robin,

I have the ProED 80mm Telescope Mounted on a SkyWatcher EQ6-R Pro Mount (it's 100 lbs is very stable) and I use SharpCap Pro Software to Control the Camera and the Mount together. I use this setup to AUTOMATE 6.75-Second-Exposures SCANNING the NIGHT-SKY for Hazy-Looking-Comets within the Orbit-of-Saturn ... and at a rate of 121 images in less that one hour ... (or about 50 minutes).

A recent SKY SCAN sample can be seen at the following YouTube Link:
https://www.youtube.com/watch?v=K2NPGJADU54

Here is my Main-Code (after my Variable Declarations and Values) that I have assembled and currently used for my process:

Code: Select all


RA = RA1b		# RA1a,  RA1b,  RA2a,  RA2b,  RA3a,  or RA3b
DF = Dec1b		# Dec1a, Dec1b, Dec2a, Dec2b, Dec3a, or Dec3b

BegLoop = 0		# 0 to 23		NOTE:  BegLoop + Loops <= 24
Loops   = 11		# 1 to 24		NOTE:  BegLoop + Loops <= 24

RunTotal = 0

# Initialize Settings
SharpCap.SelectedCamera.Controls.Exposure.Value = (0.675 )		# = 675ms
SharpCap.SelectedCamera.Controls.Gain.Value = 300
SharpCap.SelectedCamera.Controls.OutputFormat.Value = "PNG files (*.png)"
SharpCap.Transforms.SelectTransform("Frame Stack (10)")
time.sleep(1.000)	# Wait for 1 Second

LastDecFloat = 1000.00

print("GO !!!")
for X in range(BegLoop, BegLoop + Loops):
	DecFloat = DF - ( (X * 1.0) / 2.0 )						# For Mount SlewTo Dec Parameter
	for RA_Idx in range(len(RA)):
		RAFloat = RA[RA_Idx][0] + ( RA[RA_Idx][1] / 60.0 )	# For Mount SlewTo RA Parameter

		# SharpCap Control BEGINS HERE !!!!\
		SharpCap.Mounts.SelectedMount.SlewTo(RAFloat, DecFloat)
		print("Slewing To:", RAFloat, DecFloat),
		while SharpCap.Mounts.SelectedMount.Slewing == True:
			print("."),
			time.sleep(0.100)				# Wait 1/10th of a Second

		if DecFloat != LastDecFloat:		# Wait Additional 22 Seconds when starting the next Declination Angle
			print("Wait 22.0"),
			time.sleep(22.000)

		print("Wait 19.00"),
		time.sleep( 12.0 + 7.000 )		#Wait 12.000 Seconds for the Mount to Settle PLUS 7.000 Seconds for 10 0.500 Second (500ms) Images to be Stacked.
		print(".")
		# SharpCap Control ENDS HERE !!!!

		DateMTN_Str = datetime.datetime.today()
		DateUTC_Str = datetime.datetime.utcnow()
		DecStr      = "{:7.2f}".format(DecFloat)
		FileDecStr  = "{:+07.2f}".format(DecFloat)
		FileDecStr  = FileDecStr.replace(".", "-")
		FileStr     = "D:\Sky_SCAN\Sky__{}__{:02d}h{:02d}m__{:%Y-%m-%d__%H_%M_%S}_.png".format(FileDecStr, RA[RA_Idx][0], RA[RA_Idx][1], DateUTC_Str )
		PhotoStr    = "{:02d}h{:02d}m  {}   {:%Y-%m-%d %H:%M:%S}   {:%Y-%m-%d %H:%M:%S} UTC".format(RA[RA_Idx][0], RA[RA_Idx][1], DecStr, DateMTN_Str, DateUTC_Str)
		RunTotal = RunTotal + 1

		# SharpCap Control BEGINS HERE !!!!
		# Save Image
		SharpCap.SelectedCamera.SaveAsViewedAsync()
		time.sleep(1.2500)
		CurFile = SharpCap.GetLastCaptureFilename()
		# print "Captured ", CurFile)
		bm = System.Drawing.Bitmap(CurFile)
		g = System.Drawing.Graphics.FromImage(bm)
		f = System.Drawing.Font("Arial", 28)
		g.DrawString(PhotoStr, f, System.Drawing.Brushes.White, System.Drawing.Point(0,6))
		g.Dispose()
		f.Dispose()
		bm.Save(FileStr)
		bm.Dispose()
		os.remove(CurFile)
		# SharpCap Control ENDS HERE !!!!

		print "Captured:", FileStr, "-", PhotoStr, "-", "{:+08.3f}".format(RAFloat), "-", "{:+08.3f}".format(DecFloat), "- RunTotal", RunTotal

		LastDecFloat = DecFloat
		
print "DONE.\n"

At about the print("Wait 19.00") code, I would like to add a command(s) that will clear out the Stored-Frames/Memory utilized by the Menu "FX: Frame Stack(10)".

The reason is so that I am sure that I don't/won't have any overlapping of frames from the previous mount movement and/or to help in determining that I have a full 10-Frame-Stack.

NOTE: For my purposes, a "Frame Stack (Custom Value)" ... (i.e. 12, 15, 20, 25, 30) ... would be of Extraordinary-Benefit to me.

I have been unable to utilize Live Stacking since I don;t think it is offering any enhancements for faint images.

Thank You,

Farley
.
User avatar
admin
Site Admin
Posts: 13330
Joined: Sat Feb 11, 2017 3:52 pm
Location: Vale of the White Horse, UK
Contact:

Re: "FX: Frame Stack (10)" - Searching for Comets

#2

Post by admin »

Hi,

There is to way at the moment to force that stacking function to reset cleanly. However that's pretty simple for me to fix – I have just added some code so that disabling and then re-enabling the stacking filter will reset the state of the filter.

You may want to reconsider using live stacking. The difference between the two is that the FX filters use addition to brighten the image where live stacking uses averaging which doesn't brighten the image but reduces the noise instead. The gain in signal-to-noise ratio is the same in both cases and in live stacking you can bring out the faint objects simply by applying a linear or non-linear image stretch.

Cheers, Robin
FWI
Posts: 5
Joined: Sun Aug 18, 2019 8:27 pm

Re: "FX: Frame Stack (10)" - Searching for Comets

#3

Post by FWI »

IF what you are meaning is something like the following:

Code: Select all

SharpCap.Transforms.SelectTransform("None")
wait(0.100)
SharpCap.Transforms.SelectTransform("Frame Stack (10)")
Sure !!!, that will work for me. and I will be looking for the Software-Update.

THANK YOU!

I remember spending several days and/or many hours trying to find the Command-Code to enable something but without success (I can't exactly remember at this moment). I'm thinking it might have been not being able to determine the Code for applying the "image stretch". I will have to get back to you on this if I choose to have a try at it again. Additionally: there are times that I don't have 10 Stars in the views to satisfy the the Star-Alignment due to my automated SKY SCANning process.

I still think that the FX:Frame Stack(10) is my best option ... and more than "(10)" or a custom value, up to a limit, would also be awesome.
.
FWI
Posts: 5
Joined: Sun Aug 18, 2019 8:27 pm

Re: "FX: Frame Stack (10)" - Searching for Comets

#4

Post by FWI »

Robin,

After you mentioned "live stacking" and "applying a linear or non-linear stretch" ...

I started playing around with the "Display Histogram Stretch" at the bottom the "Camera Control Panel" ... I had never paid it any attention to it.

Well, I stopped using the menu's "FX: Frame Stack (10)" by setting it to "None". I settled with setting the "Display Historgram Stretch" Levels to Black 0.0, MidTone 0.1, and White 0.2 ... and setting my Exposure to a full 6-Seconds, I am experiencing some surprising results!

Additionally I used the following command-line to convert all of the SharpCap PNG files to JPG files into a subfolder named JPGs to remove the PNG Transparency and also important to add some Brightness +25 and Contrast +10 to the images:

Code: Select all

magick mogrify -path JPGs -quality 100% -brightness-contrast 25x10 -format jpg *.png
AND ...

I have estimated that I am hitting Magnitude 15 for my Comet-Searches !!!

This "Magnitude 15" can be seen within these TWO YouTube Videos that I have uploaded today ... (be sure to set the YouTube "Quality 2160P" for the maximum quality:
1st 210 Frames/Images: https://www.youtube.com/watch?v=fSClOCJlmew
2nd 210 Frames/Images: https://www.youtube.com/watch?v=Hh-4l5UX52c

The hardware used with this code:
Sky-Watcher ProED 80mm Doublet APO Refractor Telescope
Sky-Watcher .85x Reducer Lens for ProED 80mm Doublet APO Refractor Telescope
ZWO ASI178MC Camera - (Note: 55.12mm precise-distance behind Reducer Lens)
Sky-Watcher EQ6-R Pro Mount
Cartes du Ciel Sky Chart 4.0 Software for Sky-Refrences
SharpCap Pro 3.2 Software - 6 Second Exposures with an Elevated-Gain Set at 300 ... (normal gain=255)
SharpCap PYTHON Custom-Script to Automate Mount Movment, Image Processing, and Image Saves
MAGICK Enhanced with Brightness +25 and Contrast +10
PIPP Software to Create AVI for YouTube-Upload

-
If anyone is interested the code I used last night:

Code: Select all

import	os
import	datetime
import	time
clr.AddReference("System.Drawing")
import	System.Drawing

RA1a = [
		[20, 59], [20, 56], [20, 53], [20, 50], [20, 47], [20, 42], [20, 39], [20, 36], [20, 33], [20, 30]
	]
Dec1a = -15.50			# = -15.5000 --- 20.5000		Set Loops = 11
RA1b = [
		[20, 29], [20, 26], [20, 23], [20, 20], [20, 17], [20, 12], [20,  9], [20,  6], [20,  3], [20,  0]
	]
Dec1b = -17.00			# = -17.0000 --- 22.0000		Set Loops = 11


RA2 = [	[20,  0],
		[19, 57], [19, 54], [19, 51], [19, 48], [19, 45], [19, 42], [19, 39], [19, 36], [19, 33], [19, 30],
		[19, 27], [19, 24], [19, 21], [19, 18], [19, 15], [19, 12], [19,  9], [19,  6], [19,  3], [19,  0]
	]
Dec2 = -19.50			# = -19.5000 --- 24.0000		Set Loops = 10
RA3 = [	[19,  0],
		[18, 57], [18, 54], [18, 51], [18, 48], [18, 45], [18, 42], [18, 39], [18, 36], [18, 33], [18, 30],
		[18, 27], [18, 24], [18, 21], [18, 18], [18, 15], [18, 12], [18,  9], [18,  6], [18,  3], [18,  0]
	]
Dec3 = -21.00			# = -21.0000 --- 25.5000		Set Loops = 10


RA = RA2				# RA1a, RA1b,  RA2,  RA3
DF = Dec2				# Dec1a, Dec1b, Dec2, Dec3

BegLoop = 0				# 0 to  9 or 10		NOTE:  BegLoop + Loops <= 10 or 11
Loops   = 10			# 1 to 10 or 11		NOTE:  BegLoop + Loops <= 10 or 11

ExpTime  = 6.000		# Full Exposure Time in Seconds.
RunTotal = 0

# Initialize Settings
SharpCap.SelectedCamera.Controls.Exposure.Value = (2.000)			# = Set to 2.0 Seconds Minumum Exposure Time in Seconds.
SharpCap.SelectedCamera.Controls.Gain.Value     = 300				# Elevated Gain; Normal Gain is 255.
SharpCap.SelectedCamera.Controls.OutputFormat.Value = "PNG files (*.png)"
SharpCap.Transforms.SelectTransform("None")
SharpCap.SelectedCamera.Controls.FindByName("Display Black Point").Value =   0.00	# Display Histogram Strech - Black Level.
SharpCap.SelectedCamera.Controls.FindByName("Display MidTone Point").Value = 0.10	# Display Histogram Strech - Mid Level.
SharpCap.SelectedCamera.Controls.FindByName("Display White Point").Value =   0.20	# Display Histogram Strech - White Level.

time.sleep(1.000)	# Wait for 1 Second

LastDecFloat = 1000.00

print("GO !!!")
for X in range(BegLoop, BegLoop + Loops):
	DecFloat = DF - ( (X * 1.0) / 2.0 )								# For Mount SlewTo Dec Parameter.
	for RA_Idx in range(len(RA)):
		RAFloat = RA[RA_Idx][0] + ( RA[RA_Idx][1] / 60.0 )			# For Mount SlewTo RA Parameter.

		# SharpCap Control BEGINS HERE !!!!\
		SharpCap.SelectedCamera.Controls.Exposure.Value = (2.000)	# = 2.0 Seconds for Faster Screen Updates to determine that the Mount has Settled.
		SharpCap.Mounts.SelectedMount.SlewTo(RAFloat, DecFloat)
		print("Slewing To:", RAFloat, DecFloat),
		while SharpCap.Mounts.SelectedMount.Slewing == True:
			print("."),
			time.sleep(0.100)										# Wait 1/10th of a Second.

		if DecFloat != LastDecFloat:								# Wait Additional 26 Seconds when starting the next Declination Angle.
			print("Wait 26.0"),
			time.sleep(26.000)

		print("Wait 9.00"),
		time.sleep( 9.00 )											# Wait 9.00 Seconds for the Mount to Settle.
		print("Start Saving.")

		SharpCap.SelectedCamera.Controls.Exposure.Value = (ExpTime)	# = Set to Full Exposure Time in Seconds.
		# SharpCap.SelectedCamera.RestartPreview()					# Probaly NOT Needed; here for reference only.
		time.sleep(0.500)
		# SharpCap Control ENDS HERE !!!!

		DateMTN_Str = datetime.datetime.today()
		DateUTC_Str = datetime.datetime.utcnow()
		DecStr      = "{:7.2f}".format(DecFloat)
		FileDecStr  = "{:+07.2f}".format(DecFloat)
		FileDecStr  = FileDecStr.replace(".", "-")
		FileStr     = "D:\Sky_SCAN\Sky__{}__{:02d}h{:02d}m__{:%Y-%m-%d__%H_%M_%S}_.png".format(FileDecStr, RA[RA_Idx][0], RA[RA_Idx][1], DateUTC_Str )
		PhotoStr    = "{:02d}h{:02d}m  {}   {:%Y-%m-%d %H:%M:%S}   {:%Y-%m-%d %H:%M:%S} UTC".format(RA[RA_Idx][0], RA[RA_Idx][1], DecStr, DateMTN_Str, DateUTC_Str)
		RunTotal = RunTotal + 1

		# SharpCap Control BEGINS HERE !!!!
		# Save Image
		while ( (SharpCap.SelectedCamera.LatestStatus.FrameProgress.PercentComplete / 100.0 * ExpTime) < ( ExpTime - 1.0) ):
			time.sleep(0.100)
		SharpCap.SelectedCamera.SaveAsViewedAsync()
		time.sleep(1.700)
		CurFile = SharpCap.GetLastCaptureFilename()
		# print("Captured ", CurFile)
		bm = System.Drawing.Bitmap(CurFile)
		g = System.Drawing.Graphics.FromImage(bm)
		f = System.Drawing.Font("Arial", 28)
		g.DrawString(PhotoStr, f, System.Drawing.Brushes.White, System.Drawing.Point(0,6))
		g.Dispose()
		f.Dispose()
		bm.Save(FileStr)
		bm.Dispose()
		os.remove(CurFile)
		# SharpCap Control ENDS HERE !!!!

		print "Captured:", FileStr, "-", PhotoStr, "-", "{:+08.3f}".format(RAFloat), "-", "{:+08.3f}".format(DecFloat), "- RunTotal", RunTotal

		LastDecFloat = DecFloat

print "DONE.\n"

-
SO ...

I MUST Say "Thank You Robin !!!" for your ... Outstanding Software and Support.
.
User avatar
admin
Site Admin
Posts: 13330
Joined: Sat Feb 11, 2017 3:52 pm
Location: Vale of the White Horse, UK
Contact:

Re: "FX: Frame Stack (10)" - Searching for Comets

#5

Post by admin »

Excellent, really glad to hear it's working well for you now.

Don't forget to come back and tell us when you discover a comet! :)

Cheers, Robin
FWI
Posts: 5
Joined: Sun Aug 18, 2019 8:27 pm

Re: "FX: Frame Stack (10)" - Searching for Comets

#6

Post by FWI »

Robin,

I just downloaded and installed the SharpCap Update '3.2.6097.0'.

The change to where I can " clear out the Stored-Frames/Memory utilized by the Menu "FX: Frame Stack(10)" " menu-option appears to work perfectly when changing the "FX:"-Option to any other option (including "None") then back to the "FX: Frame Stack(10)" option.

I also see that it works when choosing "Frame Stack(3)" or "Frame Stack(5) too !!!

SO ... a code example such as the following should work great:

Code: Select all

SharpCap.Transforms.SelectTransform("None")
wait(0.100)
SharpCap.Transforms.SelectTransform("Frame Stack (10)")
I've also modified my other code to where the variables are better defined and/or understandable if anyone is interested in SCANNING-The-SKY as I do.

By utilizing the Skywatcher EQ6-R Pro mount, I was able to save single images with single 8-second exposures ... and ... I started hitting Magnitudes 15.65 with my Skywatcher EvoStar 80ED, their Reducer/Corrector (.85x) for ProED 80 and ASI178MC Color CMOS Camera.

I also think that this technique of single-exposure-imaging is the maximum-limit for usable images with my listed equipment.

Code: Select all

import	os
import	datetime
import	time
clr.AddReference("System.Drawing")
import	System.Drawing

RA2030 = [
		[21,  0], [20, 57], [20, 54], [20, 51], [20, 48], [20, 45], [20, 42], [20, 39], [20, 36], [20, 33], [20, 30]
	]
Dec2030 = -14.50				# = -14.5000 --- 21.0000
RA2000 = [
		[20, 30], [20, 27], [20, 24], [20, 21], [20, 18], [20, 15], [20, 12], [20,  9], [20,  6], [20,  3], [20,  0]
	]
Dec2000 = -16.50				# = -16.5000 --- 23.0000
#Dec2000 = -21.00
RA1930 = [
		[20,  0], [19, 57], [19, 54], [19, 51], [19, 48], [19, 45], [19, 42], [19, 39], [19, 36], [19, 33], [19, 30]
	]
Dec1930 = -18.00				# = -18.0000 --- 24.5000
RA1900 = [
		[19, 30], [19, 27], [19, 24], [19, 21], [19, 18], [19, 15], [19, 12], [19,  9], [19,  6], [19,  3], [19,  0]
	]
Dec1900 = -19.00				# = -19.0000 --- 25.5000

RA1830 = [
		[19,  0], [18, 57], [18, 54], [18, 51], [18, 48], [18, 45], [18, 42], [18, 39], [18, 36], [18, 33], [18, 30]
	]
Dec1830 = -19.50				# = -19.5000 --- 26.0000
RA1800 = [
		[18, 30], [18, 27], [18, 24], [18, 21], [18, 18], [18, 15], [18, 12], [18,  9], [18,  6], [18,  3], [18,  0]
	]
Dec1800 = -20.00				# = -20.0000 --- 26.5000


RA = RA2000				# RA1800, RA1830, RA1900, RA1930, RA2000, RA2030
DF = Dec2000			# Dec1800, Dec1830, Dec1900, Dec1930, Dec2000, Dec2030

BegLoop = 0				# 0 to  9 or 10		NOTE:  BegLoop + Loops <= 10 or 11
Loops   = 14			# 1 to 10 or 11		NOTE:  BegLoop + Loops <= 10 or 11

ExpTime  = 8.000		# Full Exposure Time in Seconds.
RunTotal = 0

# Initialize Settings
SharpCap.SelectedCamera.Controls.Exposure.Value = (2.000)							# = Set to 2.0 Seconds Minumum Exposure Time in Seconds.
SharpCap.SelectedCamera.Controls.Gain.Value     = 300								# Elevated Gain; Normal Gain is 255.
SharpCap.SelectedCamera.Controls.OutputFormat.Value = "PNG files (*.png)"
SharpCap.Transforms.SelectTransform("None")
SharpCap.SelectedCamera.Controls.FindByName("Display Black Point").Value =   0.00	# Display Histogram Strech - Black Level.
SharpCap.SelectedCamera.Controls.FindByName("Display MidTone Point").Value = 0.10	# Display Histogram Strech - Mid Level.
SharpCap.SelectedCamera.Controls.FindByName("Display White Point").Value =   0.20	# Display Histogram Strech - White Level.

time.sleep(1.000)	# Wait for 1 Second

LastDecFloat = 1000.00

print("GO !!!")
for X in range(BegLoop, BegLoop + Loops):
	DecFloat = DF - ( (X * 1.0) / 2.0 )								# For Mount SlewTo Dec Parameter.
	for RA_Idx in range(len(RA)):
		RAFloat = RA[RA_Idx][0] + ( RA[RA_Idx][1] / 60.0 )			# For Mount SlewTo RA Parameter.

		# SharpCap Control BEGINS HERE !!!!\
		SharpCap.SelectedCamera.Controls.Exposure.Value = (2.000)	# = 2.0 Seconds for Faster Screen Updates to determine that the Mount has Settled.

		print("Slewing To:", RAFloat, DecFloat),
		SharpCap.Mounts.SelectedMount.SlewTo(RAFloat, DecFloat)
		while SharpCap.Mounts.SelectedMount.Slewing == True:
			print("."),
			time.sleep(0.100)										# Wait 1/10th of a Second.

		if DecFloat != LastDecFloat:								# Wait Additional 26 Seconds when starting the next Declination Angle.
			print("Wait 25.0"),
			time.sleep(25.000)

		print("Wait 10.00"),
		time.sleep( 10.00 )											# Wait 9.00 Seconds for the Mount to Settle.

		print("Saving"),
		SharpCap.SelectedCamera.Controls.Exposure.Value = (ExpTime)	# = Set to Full Exposure Time in Seconds.
		# SharpCap.SelectedCamera.RestartPreview()					# Probaly NOT Needed; here for reference only.
		time.sleep(0.500)
		# SharpCap Control ENDS HERE !!!!

		DateLoc_Str = datetime.datetime.today()
		DateUTC_Str = datetime.datetime.utcnow()
		DecStr      = "{:7.2f}".format(DecFloat)
		FileDecStr  = "{:+07.2f}".format(DecFloat)
		FileDecStr  = FileDecStr.replace(".", "-")
		FileStr     = "D:\Sky_SCAN\Sky__{}__{:02d}h{:02d}m__{:%Y-%m-%d__%H_%M_%S}_.png".format(FileDecStr, RA[RA_Idx][0], RA[RA_Idx][1], DateUTC_Str )
		PhotoStr    = "{:02d}h{:02d}m  {}   {:%Y-%m-%d %H:%M:%S}   {:%Y-%m-%d %H:%M:%S} UTC".format(RA[RA_Idx][0], RA[RA_Idx][1], DecStr, DateLoc_Str, DateUTC_Str)
		RunTotal = RunTotal + 1

		# SharpCap Control BEGINS HERE !!!!
		# Save Image
		while ( (SharpCap.SelectedCamera.LatestStatus.FrameProgress.PercentComplete / 100.0 * ExpTime) < ( ExpTime - 1.0) ):
			time.sleep(0.100)
		SharpCap.SelectedCamera.SaveAsViewedAsync()
		print("..."),
		time.sleep(1.750)
		print("Saved.")
		CurFile = SharpCap.GetLastCaptureFilename()
		bm = System.Drawing.Bitmap(CurFile)
		g = System.Drawing.Graphics.FromImage(bm)
		f = System.Drawing.Font("Arial", 28)
		g.DrawString(PhotoStr, f, System.Drawing.Brushes.White, System.Drawing.Point(0,6))
		g.Dispose()
		f.Dispose()
		bm.Save(FileStr)
		bm.Dispose()
		os.remove(CurFile)
		# SharpCap Control ENDS HERE !!!!

		print "Captured:", FileStr, "-", PhotoStr, "-", "{:+08.3f}".format(RAFloat), "-", "{:+08.3f}".format(DecFloat), "- RunTotal", RunTotal

		LastDecFloat = DecFloat

print "DONE.\n"
Samples of these images/results can be seen in two places:

Google-Drive within the folder named "2019-08-24" contains all 926 Original Images and AVI Slide-Shows ... and ... for the highest quality and resolution, the files would need to be downloaded prior to viewing:

https://drive.google.com/drive/folders/ ... 7GeQPcEkOe

and

YouTube Slide-Show Videos of the 6 AVI Files dated between 2019-08-24 thru 2019-08-26 ... and ... set the "Quality" to the available maximum to "2160p":

https://www.youtube.com/channel/UCZ5DY2 ... kvw/videos

-

I am anticipating the arrival of a "Tele Vue 2" 2x Powermate with 1.25" Adapter # PMT-2200" and "Tele Vue M42 T-Ring Adapter for 2" 2x Powermate # PTR-2200" to screw onto either of my ASI Cameras for close-ups of any targets I may find ... and/or ... at least use these for looking at any currently-existing comet-targets.

Again,

THANK YOU !!! ... ( for all of your obvious 'Tireless Efforts' ),

Farley
.
User avatar
admin
Site Admin
Posts: 13330
Joined: Sat Feb 11, 2017 3:52 pm
Location: Vale of the White Horse, UK
Contact:

Re: "FX: Frame Stack (10)" - Searching for Comets

#7

Post by admin »

Hi,

Glad to hear this is all working now!

Cheers, Robin
Post Reply