-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
137 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,55 @@ | ||
# Adjustment | ||
|
||
<deflist type="narrow"> | ||
<def title="Full Name"> | ||
ImageEffectsAdjustment | ||
</def> | ||
<def title="Description"> | ||
Corrects the color and light characteristics of images. | ||
</def> | ||
<def title="Backend"> | ||
<a href="Modules.md" anchor="pytorch" summary="Image processing with pure Tensor without transformations.">PyTorch</a> | ||
</def> | ||
<def title="Input Parameters"> | ||
<deflist type="narrow"> | ||
<def title="Images"> | ||
RGB/A images | ||
</def> | ||
<def title="Brightness"> | ||
Determines the degree of the pixel illumination in the image | ||
</def> | ||
<def title="Contrast"> | ||
Controls the difference between the lightest and darkest parts of the image | ||
</def> | ||
<def title="Saturation"> | ||
Controls the intensity of the colors in the image | ||
</def> | ||
<def title="HUE"> | ||
Allows you to change the color gamut of an image by shifting all colors by a certain number of degrees | ||
on the color wheel | ||
</def> | ||
<def title="Gamma"> | ||
Changes the brightness of the image, but retains the black and white tones | ||
</def> | ||
<def title="Sharpness"> | ||
Increases or decreases the clarity of an image by increasing or softening borders and details | ||
</def> | ||
<def title="Red"> | ||
Controls the intensity of the red color in the image | ||
</def> | ||
<def title="Green"> | ||
Controls the intensity of the green color in the image | ||
</def> | ||
<def title="Blue"> | ||
Controls the intensity of the blue color in the image | ||
</def> | ||
</deflist> | ||
</def> | ||
<def title="Output Parameters"> | ||
<deflist type="narrow"> | ||
<def title="Images"> | ||
RGB/A images | ||
</def> | ||
</deflist> | ||
</def> | ||
</deflist> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,28 @@ | ||
# Grayscale | ||
|
||
<deflist type="narrow"> | ||
<def title="Full Name"> | ||
ImageEffectsGrayscale | ||
</def> | ||
<def title="Description"> | ||
Converts the color image to grayscale. This is done by averaging the red, green, and blue channel values of each | ||
pixel, resulting in a monochrome image. | ||
</def> | ||
<def title="Backend"> | ||
<a href="Modules.md" anchor="pytorch" summary="Image processing with pure Tensor without transformations.">PyTorch</a> | ||
</def> | ||
<def title="Input Parameters"> | ||
<deflist type="narrow"> | ||
<def title="Images"> | ||
RGB/A images | ||
</def> | ||
</deflist> | ||
</def> | ||
<def title="Output Parameters"> | ||
<deflist type="narrow"> | ||
<def title="Images"> | ||
RGB/A images | ||
</def> | ||
</deflist> | ||
</def> | ||
</deflist> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,28 @@ | ||
# Negative | ||
|
||
<deflist type="narrow"> | ||
<def title="Full Name"> | ||
ImageEffectsNegative | ||
</def> | ||
<def title="Description"> | ||
Inverts all the colors in the image, creating a negative effect. | ||
This means that each pixel of the image is replaced with the opposite color | ||
</def> | ||
<def title="Backend"> | ||
<a href="Modules.md" anchor="pytorch" summary="Image processing with pure Tensor without transformations.">PyTorch</a> | ||
</def> | ||
<def title="Input Parameters"> | ||
<deflist type="narrow"> | ||
<def title="Images"> | ||
RGB/A images | ||
</def> | ||
</deflist> | ||
</def> | ||
<def title="Output Parameters"> | ||
<deflist type="narrow"> | ||
<def title="Images"> | ||
RGB/A images | ||
</def> | ||
</deflist> | ||
</def> | ||
</deflist> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,29 @@ | ||
# Sepia | ||
|
||
<deflist type="narrow"> | ||
<def title="Full Name"> | ||
ImageEffectsSepia | ||
</def> | ||
<def title="Description"> | ||
Alters the color channels of the image | ||
so that they mimic the characteristic brownish-yellow sepia tint of the image | ||
</def> | ||
<def title="Backend"> | ||
<a href="Modules.md" anchor="pytorch" summary="Image processing with pure Tensor without transformations.">PyTorch</a> | ||
</def> | ||
<def title="Input Parameters"> | ||
<deflist type="narrow"> | ||
<def title="Images"> | ||
RGB/A images | ||
</def> | ||
</deflist> | ||
</def> | ||
<def title="Output Parameters"> | ||
<deflist type="narrow"> | ||
<def title="Images"> | ||
RGB/A images | ||
</def> | ||
</deflist> | ||
</def> | ||
</deflist> | ||
|