Skip to content

Commit f51eeeb

Browse files
committed
docs: update image in blurring techinques
1 parent 419531e commit f51eeeb

File tree

4 files changed

+1
-13
lines changed

4 files changed

+1
-13
lines changed

docs/useful-tips/blurring-techniques-and-their-differences.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ To be precise blur is a general term that refers to a reduction in the sharpness
1111
The key advantage of box blur compared to other filters is its speed. It is slightly faster than Gaussian Blur, and it doesn't need to sort all values within the cells, like median.
1212
However, this also means that every pixel has the same weight to the algorithm regardless of its position. Therefore the blurring quality drops compared to the gaussian blur and the output gets relatively blocky.
1313

14-
![Difference in quality](./images/blurring/MBvsGB.png)
14+
![Difference in quality](./images/blurring/blurVsGaussianBlur.png)
1515

1616
## Gaussian Blur
1717

-421 KB
Binary file not shown.
757 KB
Loading

src/demo/contexts/demo/defaultImages.ts

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -35,12 +35,6 @@ export const defaultImages: UrlOption[] = [
3535
label: 'House',
3636
imageType: 'image',
3737
},
38-
{
39-
type: 'url',
40-
value: `${standardUrl}/lenna.png`,
41-
label: 'Lenna',
42-
imageType: 'image',
43-
},
4438
];
4539

4640
export const defaultMasks: UrlOption[] = [
@@ -62,12 +56,6 @@ export const defaultMasks: UrlOption[] = [
6256
label: 'Shapes',
6357
imageType: 'mask',
6458
},
65-
{
66-
type: 'url',
67-
value: `${standardMaskUrl}/lenna.png`,
68-
label: 'Lenna',
69-
imageType: 'mask',
70-
},
7159
{
7260
type: 'url',
7361
value: `${standardMaskUrl}/barbara.png`,

0 commit comments

Comments
 (0)