Skip to content

Commit 1c6019c

Browse files
docs: fix blog article titles
2 parents e97341c + dbe758b commit 1c6019c

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

blog/release.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ We're excited to announce the release of a new major version of ImageJS. This ve
88

99
<!-- truncate -->
1010

11-
# API Changes
11+
# API changes
1212

13-
## 🔷 TypeScript Support
13+
## 🔷 TypeScript support
1414

1515
All APIs now have strict TypeScript definitions:
1616

@@ -111,7 +111,7 @@ const mask = new Mask(10, 10);
111111

112112
The new `Mask` class uses 1 byte per pixel (vs 8 pixels per byte), trading ~8x memory usage for significantly faster bit operations and simpler data manipulation.
113113

114-
### Regions of Interest
114+
### Regions of interest
115115

116116
API for handling of regions of interest has also been changed.
117117
ROI map creation methods like `fromMask()` and `fromWatershed()` are now standalone functions `fromMask()` and `watershed()`.
@@ -257,7 +257,7 @@ Several methods have been renamed for consistency:
257257

258258
- Node.js: 18+ (previously 14+)
259259

260-
### Removed Features
260+
### Removed features
261261

262262
The following deprecated features have been removed:
263263

@@ -291,7 +291,7 @@ The following deprecated features have been removed:
291291
- `mergeRoi()` and `mergeRois()` have been removed.
292292
- `minX`,`minY`,`meanX`,`meanY`,`maxX`,`maxY` have been removed. Use [ROI's `origin`, combined with its `width` and `height`](https://image-js.github.io/image-js/classes/index.Roi.html 'API link on ROI').
293293

294-
## 🆕 New Features
294+
## 🆕 New features
295295

296296
### `transform()`
297297

@@ -304,7 +304,7 @@ const warped = img.transform(matrix);
304304

305305
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.
306306

307-
### Bicubic Interpolation
307+
### Bicubic interpolation
308308

309309
High-quality image scaling is now available with [bicubic interpolation](https://en.wikipedia.org/wiki/Bicubic_interpolation 'wikipedia link on bicubic interpolation'):
310310

@@ -505,7 +505,7 @@ const clearedMask = mask.clearBorder();
505505

506506
The Stack class has been significantly expanded with new methods for batch processing and statistical analysis of image collections.
507507

508-
### Filtering and Transformations
508+
### Filtering and transformations
509509

510510
A user can now filter images based on custom criteria using `filter()`:
511511

@@ -532,7 +532,7 @@ const modifiedStack = stack.map((img) => {
532532
});
533533
```
534534

535-
### Stack Analysis Operations
535+
### Stack analysis operations
536536

537537
It is now possible to generate a median image from the entire stack - useful for noise reduction and background subtraction:
538538

@@ -548,7 +548,7 @@ const summedImage = stack.sum();
548548

549549
**Use Cases**: Time-lapse analysis, scientific imaging.
550550

551-
### Stack Pixel Value Access
551+
### Stack pixel value access
552552

553553
Access specific pixel values from any image in the stack using two convenient methods:
554554

0 commit comments

Comments
 (0)