Skip to content

Commit 9a01e49

Browse files
Merge branch 'main' into 125-add-page-in-useful-tips-about-transform-parameters-and-options
2 parents a77814a + e9a68fa commit 9a01e49

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

docs/features/geometry/geometry.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,3 +16,4 @@ Geometric operations in image processing involve transforming the spatial coordi
1616
| [Transform(`transform`)](./transform 'internal link on transform') | ✅ | ❌ |
1717
| [Transform and rotate(`transformRotate`)](./transform-and-rotate 'internal link on transformRotate') | ✅ | ❌ |
1818
| [Get perspective warp matrix(`getPerspectiveWarp`)](./get-perspective-warp-matrix 'internal link on getPerspectiveWarp') | - | - |
19+

docs/tutorials/applying-transform-function-on-images.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -124,6 +124,7 @@ const stretchedImage = image.transform(transformationMatrix);
124124

125125
:::note
126126
ImageJS also has [`resize`](../features/geometry/resize) function that allows to scale an image.
127+
127128
The current tutorial just demonstrates the basic principle behind transformation of such kind.
128129
:::
129130

@@ -163,6 +164,7 @@ const flippedImage = image.transform(flipMatrix);
163164
![Flipped image](./images/transformations/lennaFlipped.png)
164165
:::note
165166
ImageJS also has [`flip`](../features/geometry/flip) function that allows to flip an image.
167+
166168
Current tutorial just demonstrates the basic principle behind transformation of such kind.
167169
:::
168170

@@ -303,6 +305,7 @@ const rotateAroundCenterImage = image.transform(
303305

304306
:::note
305307
Image-js also has [`rotate()`](../features/geometry/rotate) and [`transformRotate()`](../features/geometry/transform-and-rotate) functions. `rotate()` function allows rotating an image by multiple of 90 degrees.
308+
306309
`transformRotate()` allows rotating an image by any degree. It also allows choosing the axe of rotation. So, for rotation, you have other functions that allow you to perform it.
307310
:::
308311

0 commit comments

Comments
 (0)