Skip to content

Commit d2fab59

Browse files
docs: rename menu titles (#48)
close: #46
1 parent 743611f commit d2fab59

27 files changed

+30
-30
lines changed

docs/Features/Comparison/add.md renamed to docs/Features/Comparison/Addition.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
This method works only with images.
55
:::
66

7-
Add method, opposed to [subtract](./subtract.md 'internal link on subtract'), takes another Image and makes an addition between each respective pixel value.
7+
Add method, opposed to [subtraction](./Subtraction.md 'internal link on subtract'), takes another Image and makes an addition between each respective pixel value.
88
It works like this:
99

1010
```ts

docs/Features/Comparison/Comparison.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@ The specific reasons for comparing images depend on the application and the desi
33

44
### Methods that can be applied on Images only
55

6-
- [add](./add.md 'internal link on add')
6+
- [add](./Addition.md 'internal link on add')
77

8-
- [hypotenuse](./hypotenuse.md 'internal link on hypotenuse')
8+
- [hypotenuse](./Hypotenuse.md 'internal link on hypotenuse')
99

1010
### Methods that can be applied on Images and Masks
1111

12-
- [subtract](./subtract.md 'internal link on subtract')
12+
- [subtract](./Subtraction.md 'internal link on subtract')
File renamed without changes.
File renamed without changes.

docs/Features/fill.md renamed to docs/Features/Fill.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
`fill` method fills the whole Mask with a designated value.
1+
Fill method fills the whole Mask with a designated value.
22
It works like this:
33

44
```ts

docs/Features/Filters/Blur.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Blur, also known as average blur or box blur, is a simple image processing techn
1111
<BlurDemo />
1212

1313
Box blur is particularly effective in reducing [salt-and-pepper](https://en.wikipedia.org/wiki/Salt-and-pepper_noise 'wikipedia link on salt and pepper noise') noise (random black and white pixels) and minor imperfections in an image. However, it also leads to loss of finer details, so the choice of [kernel](../../Glossary.md#kernel) size is important.
14-
More advanced blurring techniques, such as [Gaussian blur](./gaussianBlur.md 'internal link to gaussian blur') or [bilateral filter](https://en.wikipedia.org/wiki/Bilateral_filter 'wikipedia link on bilateral filters'), are often used for better results in various applications.
14+
More advanced blurring techniques, such as [Gaussian blur](./Gaussian%20Blur.md 'internal link to gaussian blur') or [bilateral filter](https://en.wikipedia.org/wiki/Bilateral_filter 'wikipedia link on bilateral filters'), are often used for better results in various applications.
1515

1616
### Parameters and default values
1717

docs/Features/Filters/Filters.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,27 +8,27 @@ sidebar_position: 0
88

99
### Methods that can be applied on Images only
1010

11-
- [Grayscale](grayscale.md 'internal link on grayscale')
11+
- [Grayscale](./Grayscale.md 'internal link on grayscale')
1212

13-
- [Blur](Blur.md 'internal link on blur')
13+
- [Blur](./Blur.md 'internal link on blur')
1414

15-
- [gaussianBlur](./gaussianBlur.md 'internal link on gaussianBlur')
15+
- [gaussianBlur](./Gaussian%20Blur.md 'internal link on gaussianBlur')
1616

1717
- [Gradient](./Gradient.md 'internal link on gradient')
1818

1919
- [Derivative](./Derivative.md 'internal link on derivative')
2020

2121
- [Median](./Median.md 'internal link on median')
2222

23-
- [level](./level.md 'internal link on level')
23+
- [level](./Level.md 'internal link on level')
2424

2525
- [pixelate](./Pixelate.md 'internal link on pixelate')
2626

2727
### Methods that can be applied on Masks only
2828

29-
- [and](./and.md 'internal link on and')
29+
- [and](./Logical%20conjunction.md 'internal link on and')
3030

31-
- [or](./or.md 'internal link on or')
31+
- [or](./Logical%20disjunction.md 'internal link on or')
3232

3333
### Methods that can be applied on Images or Masks
3434

File renamed without changes.

docs/Features/Filters/Gradient.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ Keep in mind that gradient filters can be sensitive to noise and might result in
4141

4242
Here's how gradient filter is implemented in ImageJS:
4343

44-
_Grayscale Conversion_: Before applying a gradient filter, the color image is converted into [grayscale](grayscale.md 'link to grayscale filter'). This simplifies the processing by reducing the image to a single channel representing pixel intensities.
44+
_Grayscale Conversion_: Before applying a gradient filter, the color image is converted into [grayscale](./Grayscale.md 'internal link on grayscale filter'). This simplifies the processing by reducing the image to a single channel representing pixel intensities.
4545

4646
_Kernel Operators_: Gradient filter consists of small convolution [kernels](../../Glossary.md#kernel 'glossary link on kernel'). Normally, one for detecting horizontal changes and another for vertical changes, however user might indicate only one kernel to check only one of directions. These kernels are usually 3x3 matrices of numerical weights.
4747

@@ -52,7 +52,7 @@ _Gradient Magnitude and Direction_: For each pixel, the gradient magnitude is ca
5252
_Edge Detection_: The gradient magnitude values are used to identify regions of rapid intensity change, which correspond to edges in the image. Higher gradient magnitude values indicate stronger edges.
5353

5454
:::tip
55-
_Thresholding_: To further refine the edges detected, a [thresholding](../Operations/threshold.md 'internal link on threshold filter') step is often applied. Pixels with gradient magnitudes below a certain threshold are considered as non-edges, while those above the threshold are considered edges. This helps in reducing noise and emphasizing significant edges.
55+
_Thresholding_: To further refine the edges detected, a [thresholding](../Operations/Threshold.md 'internal link on threshold filter') step is often applied. Pixels with gradient magnitudes below a certain threshold are considered as non-edges, while those above the threshold are considered edges. This helps in reducing noise and emphasizing significant edges.
5656
:::
5757

5858
</details>
File renamed without changes.

0 commit comments

Comments
 (0)