You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: blog/releases/1.0.md
+10-11Lines changed: 10 additions & 11 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,10 +1,9 @@
1
1
---
2
-
slug: v1-release
3
-
title: Release notes v1
4
-
date: 2025-07-25
2
+
title: Announcing ImageJS 1.0
3
+
date: 2025-08-20
5
4
---
6
5
7
-
We're excited to announce the release of a new major version of ImageJS.
6
+
We're excited to announce the release of a new major version of ImageJS!
8
7
This version brings TypeScript support and a more intuitive API while maintaining the powerful image processing capabilities you love.
9
8
10
9
<!-- truncate -->
@@ -150,8 +149,8 @@ The new `blackRois` and `whiteRois` properties provide more intuitive access to
150
149
151
150
For more information, please visit these tutorials:
152
151
153
-
-[Image segmentation with `threshold()` and `fromMask()`](../docs/Tutorials/Image%20segmentation%20with%20threshold)
154
-
-[Image segmentation with `watershed()`](../docs/Tutorials/Image%20segmentation%20with%20watershed)
152
+
-[Image segmentation with `threshold()` and `fromMask()`](../../docs/Tutorials/Image%20segmentation%20with%20threshold)
153
+
-[Image segmentation with `watershed()`](../../docs/Tutorials/Image%20segmentation%20with%20watershed)
155
154
156
155
### Sobel and Scharr filters
157
156
@@ -267,7 +266,7 @@ The following deprecated features have been removed:
267
266
268
267
-`countAlphaPixel()` - Use custom pixel counting with [`getPixel()`](https://api.image-js.org/classes/index.Image.html#getpixel'API link on getPixel').
269
268
-`paintLabels()` and `roi.paint()` - Features have been removed due to dependency issues. We plan to add it back in future updates.
270
-
-`warpingFourPoints()` - Use [`getPerspectiveWarpMatrix()`](../docs/Features/Geometry/Get%20Perspective%20Warp%20Matrix'internal link on getPerspectiveWarp') + [`transform()`](release.md#transform) instead.
269
+
-`warpingFourPoints()` - Use [`getPerspectiveWarpMatrix()`](../../docs/Features/Geometry/Get%20Perspective%20Warp%20Matrix'internal link on getPerspectiveWarp') + [`transform()`](#transform) instead.
271
270
- 32-bit color depth support and `abs()` have been removed.
272
271
-`CMYK` and `HSL` color models have been removed.
273
272
-`paintMasks()` has been removed. Use [`paintMask()`](https://api.image-js.org/classes/index.Image.html#paintmask'API link on paintMask')+ a `for` loop.
For more details, [visit our tutorial](/docs/Tutorials/Applying%20transform%20function%20on%20images'internal link on transform function tutorial') on how image transformations work how they can be used.
306
+
For more details, [visit our tutorial](../../docs/Tutorials/Applying%20transform%20function%20on%20images'internal link on transform function tutorial') on how image transformations work how they can be used.
**Use cases**: Object detection, image segmentation, feature extraction. You can [learn more about it here](../docs/Features/Morphology/Morphological%20Gradient'internal link on morphological gradient').
326
+
**Use cases**: Object detection, image segmentation, feature extraction. You can [learn more about it here](../../docs/Features/Morphology/Morphological%20Gradient'internal link on morphological gradient').
328
327
329
328
### Migration from deprecated methods
330
329
331
-
`warpingFourPoints()` has been removed. Now you have [`getPerspectiveWarp()`](../docs/Features/Geometry/Get%20Perspective%20Warp%20Matrix'internal link on perspective warp') that returns a matrix that can be applied on the image of interest in a new `transform()`.
330
+
`warpingFourPoints()` has been removed. Now you have [`getPerspectiveWarp()`](../../docs/Features/Geometry/Get%20Perspective%20Warp%20Matrix'internal link on perspective warp') that returns a matrix that can be applied on the image of interest in a new `transform()`.
**Use cases**: Rectification of a perspective angle of an image. You can learn more about it [here](../docs/Features/Geometry/Get%20Perspective%20Warp%20Matrix'internal link on perspective warp').
341
+
**Use cases**: Rectification of a perspective angle of an image. You can learn more about it [here](../../docs/Features/Geometry/Get%20Perspective%20Warp%20Matrix'internal link on perspective warp').
0 commit comments