Skip to content

Commit f0bf30c

Browse files
committed
docs: fix broken links
1 parent 8d4c70d commit f0bf30c

File tree

1 file changed

+8
-9
lines changed

1 file changed

+8
-9
lines changed

blog/release.md

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
slug: Release of a new version
33
title: Release Notes
44
date: 2025-07-19
5-
tags: [release, v1, image-js]
65
---
76

87
We're excited to announce the release of image-js-typescript, a complete rewrite of the popular image-js library. This new version brings TypeScript support and a more intuitive API while maintaining the powerful image processing capabilities you love.
@@ -73,7 +72,7 @@ const sobelX = img.derivative({ filter: 'sobel' });
7372
const sobelY = img.derivative({ filter: 'scharr' });
7473
```
7574

76-
This filter also now accepts only grayscale images, since filters like sobel or scharr are used mainly on grayscale images to detect edges.
75+
This filter also now accepts only grayscale images, since filters like Sobel or Scharr are used mainly on grayscale images to detect edges.
7776

7877
### Enhanced TypeScript Support
7978

@@ -117,7 +116,7 @@ const matrix = getPerspectiveWarp(sourcePoints);
117116
const warped = img.transform(matrix);
118117
```
119118

120-
For more details visit our [tutorial](../docs/Tutorials/Applying%20transform%20function%20on%20images) on how image transformations work.
119+
For more details visit our [tutorial](/docs/Tutorials/Applying transform function on images.md) on how image transformations work.
121120

122121
### Bicubic Interpolation
123122

@@ -131,7 +130,7 @@ const resized = img.resize(800, 600, { interpolation: 'bicubic' });
131130

132131
### Canny Edge Detection
133132

134-
[Canny Edge Detector](../docs/Features/Morphology/Canny%20Edge%20Detector) is an advanced edge detection filter for computer vision applications:
133+
[Canny Edge Detector](https://en.wikipedia.org/wiki/Canny_edge_detector.md) is an advanced edge detection filter for computer vision applications:
135134

136135
```ts
137136
const edges = img.cannyEdgeDetector({
@@ -140,7 +139,7 @@ const edges = img.cannyEdgeDetector({
140139
});
141140
```
142141

143-
**Use case**: Object detection, image segmentation, feature extraction. You can learn more about it [here](../docs/Features/Morphology/Canny%20Edge%20Detector.md).
142+
**Use case**: Object detection, image segmentation, feature extraction. You can learn more about it [here](../docs/Features/Morphology/Canny Edge Detector.md).
144143

145144
### Prewitt filter
146145

@@ -150,11 +149,11 @@ const edges = img.cannyEdgeDetector({
150149
const prewitt = img.derivative({ filter: 'prewitt' });
151150
```
152151

153-
**Use case**: Object detection, image segmentation, feature extraction. You can learn more about it [here](../docs/Features/Morphology/Morphological%20Gradient).
152+
**Use case**: Object detection, image segmentation, feature extraction. You can learn more about it [here](../docs/Features/Morphology/Morphological Gradient.md).
154153

155154
### Migration from deprecated methods:
156155

157-
`warpingFourPoints` function has been deprecated.Now you have [`getPerspectiveWarp`](../docs/Features/Geometry/Get%20Perspective%20Warp%20Matrix) function that returns a matrix that can be applied on an image of interest in a new `transform` function.
156+
`warpingFourPoints` function has been deprecated.Now you have [`getPerspectiveWarp`](../docs/Features/Geometry/Get Perspective Warp Matrix.md) function that returns a matrix that can be applied on an image of interest in a new `transform` function.
158157

159158
```ts
160159
// Before
@@ -165,7 +164,7 @@ const matrix = getPerspectiveWarp(corners);
165164
const warped = img.transform(matrix);
166165
```
167166

168-
**Use case**: Rectification of a perspective angle of an image. You can learn more about it [here](../docs/Features/Geometry/Get%20Perspective%20Warp%20Matrix).
167+
**Use case**: Rectification of a perspective angle of an image. You can learn more about it [here](../docs/Features/Geometry/Get Perspective Warp Matrix.md).
169168

170169
# 🗑️ Removed Features
171170

@@ -182,7 +181,7 @@ The following deprecated features have been removed:
182181

183182
# 🚀 Getting Started
184183

185-
To get started with ImageJS, we recommend visiting our ["Get started"](../docs/Getting%20started) guide
184+
To get started with ImageJS, we recommend visiting our [\"Get started\"](../docs/Getting started.md) guide
186185

187186
# 📚 Resources
188187

0 commit comments

Comments
 (0)