Skip to content

Commit 14ab2c2

Browse files
docs: add one-liners to features (#71)
close: #63
1 parent d0a5b11 commit 14ab2c2

28 files changed

+57
-1
lines changed

docs/Features/Comparison/Addition.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
sidebar_position: 10
33
---
44

5+
_Makes an addition between two images._
6+
57
[Check options and parameters of `add` method](https://image-js.github.io/image-js-typescript/classes/Image.html#add 'github.io link')
68

79
:::caution

docs/Features/Comparison/Hypotenuse.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
sidebar_position: 30
33
---
44

5+
_Calculates the euclidean distance of two points between two images._
6+
57
[Check options and parameters of `hypotenuse` method](https://image-js.github.io/image-js-typescript/classes/Image.html#hypotenuse 'github.io link')
68

79
:::caution
@@ -30,5 +32,5 @@ Where $$Value1$$ is a value of the pixel in the first image and $$Value2$$ is th
3032
| [`channels`](https://image-js.github.io/image-js-typescript/interfaces/HypotenuseOptions.html#channels) | no | - |
3133

3234
:::caution
33-
Images must be compatible by size, bit depth, number of channels and number of alpha channels. However, for the resulting image the bit depth and number of channels depends on the input options.
35+
Images must be compatible by size, bit depth, number of channels and number of alpha channels. However, for the resulting image user can choose the bit depth of the resulting image as well as channels which the algorithm will be applied to.
3436
:::

docs/Features/Comparison/Logical conjunction.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
sidebar_position: 100
33
---
44

5+
_Makes a logical conjunction between masks._
6+
57
[Check options and parameters of `and` method](https://image-js.github.io/image-js-typescript/classes/Mask.html#and 'github.io link')
68

79
:::caution

docs/Features/Comparison/Logical disjunction.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
sidebar_position: 110
33
---
44

5+
_Makes a logical disjunction between masks._
6+
57
[Check options and parameters of `or` method](https://image-js.github.io/image-js-typescript/classes/Mask.html#or 'github.io link')
68

79
:::caution

docs/Features/Comparison/Subtraction.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
sidebar_position: 20
33
---
44

5+
_Makes a subtraction between two images._
6+
57
[Check options and parameters of `subtract` method](https://image-js.github.io/image-js-typescript/classes/Image.html#subtract 'github.io link')
68

79
Method called `subtract`, as the name suggests, takes another Image(or Mask) and makes a subtraction between each respective bit.

docs/Features/Filters/Blur.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ sidebar_position: 30
44

55
import BlurDemo from './blur.demo.tsx'
66

7+
_Reduces image details and sharpness by averaging or mixing neighboring pixel values._
8+
79
[Check options and parameters of `blur` method](https://image-js.github.io/image-js-typescript/classes/Image.html#blur 'link on github io')
810

911
:::caution

docs/Features/Filters/Derivative.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ sidebar_position: 70
55
import DerivativeDemo from './derivative.demo.tsx'
66
import GradientDemo from './gradient.demo.tsx'
77

8+
_Gradient filter but using predefined kernels._
9+
810
[Check options and parameters of `derivative` method](https://image-js.github.io/image-js-typescript/classes/Image.html#derivativeFilter 'link on github io')
911

1012
:::caution

docs/Features/Filters/Gaussian Blur.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ sidebar_position: 40
44

55
import GaussianBlurDemo from './gaussianBlur.demo.tsx'
66

7+
_A blur filter that uses gaussian function for smoothing._
8+
79
[Check options and parameters of `gaussianBlur` method](https://image-js.github.io/image-js-typescript/classes/Image.html#gaussianBlur 'link on github io')
810

911
:::caution

docs/Features/Filters/Gradient.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ sidebar_position: 60
44

55
import GradientDemo from './gradient.demo.tsx'
66

7+
_Highlights changes in color or intensity within an image by accentuating transitions and edges._
8+
79
[Check options and parameters of `gradient` method](https://image-js.github.io/image-js-typescript/functions/gradientFilter.html 'link on github.io')
810

911
:::caution

docs/Features/Filters/Grayscale.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ sidebar_position: 20
44

55
import GrayDemo from './grayscale.demo.tsx'
66

7+
_Converts color image into shades of gray._
8+
79
[Check options and parameters of `grayscale` method](https://image-js.github.io/image-js-typescript/classes/Image.html#grey 'github.io link')
810

911
:::caution

0 commit comments

Comments
 (0)