Skip to content

Commit 3eb3f7a

Browse files
committed
Initial commit
0 parents  commit 3eb3f7a

36 files changed

Lines changed: 3054 additions & 0 deletions

.gitattributes

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# Auto detect text files and perform LF normalization
2+
* text=auto

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2021 Jeremy Likness
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

README.md

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
# PixInsight Scripts
2+
3+
This folder contains various script to assist with workflows.
4+
5+
## Scripts
6+
7+
These are the active scripts that are available.
8+
9+
See [release notes](./releases.md) for version details.
10+
11+
|Example (click for full size)|Script (click for documentation and source code)|Description|
12+
|---|---|---|
13+
|[![Thumbnail](./docs/images/autolinearfitexample_thumb.png)](./docs/images/autolinearfitexample.png)|[Auto-Linear Fit](./docs/autoLinearFit.md)|A script for normalizing RGB channels.|
14+
|[![Thumbnail](./docs/images/fixrgbgoodexample_thumb.png)](./docs/images/fixrgbgoodexample.png)|[Fix RGB Pixels](./docs/fixRGBPixels.md)|Removes hot red, green, and blue pixels.|
15+
|[![Thumbnail](./docs/images/createlummask_thumb.png)](./docs/images/createlummask.png)|[Create Lum Mask](./docs/createLumMask.md)|A quick way to generate a luminance mask from a non-linear image.|
16+
|[![Thumbnail](./docs/images/nonlinearstretchexample_thumb.png)](./docs/images/nonlinearstretchexample.png)|[Non-Linear Stretch](./docs/nonLinearStretch.md)|Helps tweak contrast by increasing foreground and decreasing background with progressive masks.
17+
|¯\\_(ツ)_|[Generate Decon Support](./docs/generateDeconSupport.md)|Creates the masks I use for deconvolution.|
18+
|[![Thumbnail](./docs/images/pillars_thumb.png)](./docs/images/pillars.png)|[Hubble Palette to RGB](./docs/applyHubbleToRGB.md)|Applies the "Hubble palette" to images.|
19+
20+
## Installation
21+
22+
The first step is to download the scripts. You can either clone this repository, or [download the zip](./piscripts.zip).
23+
24+
Once you have the scripts in a folder, for example, `DeepSkyWorkflows`, you can install with the following steps:
25+
26+
1. Open PixInsight
27+
2. Under the `Scripts` tab, choose `Feature Scripts`
28+
![Feature scripts](./docs/images/step1.png)
29+
3. With the dialog that opens, click the `Add` button in the lower left
30+
4. Navigate to and select the folder with the scripts
31+
5. Verify that `DeepSkyWorkflows` has been added
32+
![Verify](./docs/images/confirmscriptadd.png)
33+
6. You're ready to go! It should appear under `Scripts > DeepSkyWorkflows`.
34+
35+
[Back to Main](../README.md)

0 commit comments

Comments
 (0)