Skip to content

Commit c6b4f37

Browse files
author
Evgeniy Sidenko
committed
Removed all of copyright protected images
1 parent bd7c6e5 commit c6b4f37

File tree

9 files changed

+45
-0
lines changed

9 files changed

+45
-0
lines changed

net/developer-guide/manipulating-images/kernel-filters/motion-blur-filter/_index.md

+45
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,51 @@ double[,] customKernel = new double[,]
3030
This effect simulates the appearance of camera movement during photo capture in a diagonal direction, creating the illusion of motion in the image.
3131
</p>
3232

33+
<style>
34+
.frame {
35+
border: 2px solid darkgray;
36+
padding: 5px;
37+
margin: 10px 0 5px 5px;
38+
background: #f0f0f0;
39+
align-items: center;
40+
}
41+
.marginauto {
42+
margin: 10px auto 20px;
43+
display: block;
44+
}
45+
.frame figcaption {
46+
margin: 0 auto;
47+
display: flex;
48+
flex-direction: row;
49+
justify-content: center;
50+
}
51+
.container {
52+
display: flex;
53+
flex-direction: row;
54+
align-items: center;
55+
justify-content: space-around;
56+
}
57+
</style>
58+
59+
<figure class="frame">
60+
<div class="container">
61+
<div>
62+
<figcaption>Original image</figcaption>
63+
</div>
64+
<div>
65+
<figcaption>MotionBlur filter</figcaption>
66+
</div>
67+
</div>
68+
<div class="container">
69+
<div>
70+
<img src="../template-landscape.webp" alt="Original vector image" width="793"/>
71+
</div>
72+
<div>
73+
<img src="./custom-motion-blur-kernel-filter.webp" alt="Custom Motion blur 7x7 horizontal kernel filter in Python" width="793" />
74+
</div>
75+
</div>
76+
<figcaption>Custom MotionBlur kernel filter</figcaption>
77+
</figure>
3378

3479
## C# code example
3580

Binary file not shown.

0 commit comments

Comments
 (0)