Skip to content

Commit

Permalink
Fill Effects nodes.
Browse files Browse the repository at this point in the history
  • Loading branch information
Nourepide committed Nov 27, 2023
1 parent 9aac39a commit 990ae4f
Show file tree
Hide file tree
Showing 5 changed files with 137 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Writerside/allor-doc.tree
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
<toc-element topic="Image-Draw-Ellipse.md"/>
<toc-element topic="Image-Draw-Ellipse-By-Container.md"/>
<toc-element topic="Image-Draw-Line.md"/>
<toc-element topic="Line-By-Container.md"/>
<toc-element topic="Image-Draw-Line-By-Container.md"/>
<toc-element topic="Image-Draw-Pieslice.md"/>
<toc-element topic="Image-Draw-Pieslice-By-Container.md"/>
<toc-element topic="Image-Draw-Rectangle.md"/>
Expand Down
54 changes: 54 additions & 0 deletions Writerside/topics/Image-Effects-Adjustment.md
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>
27 changes: 27 additions & 0 deletions Writerside/topics/Image-Effects-Grayscale.md
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>
27 changes: 27 additions & 0 deletions Writerside/topics/Image-Effects-Negative.md
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>
28 changes: 28 additions & 0 deletions Writerside/topics/Image-Effects-Sepia.md
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>

0 comments on commit 990ae4f

Please sign in to comment.