Skip to content

Commit 4455f68

Browse files
authored
fix minor issue with code snippet format
Missing `
1 parent 80d8357 commit 4455f68

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

_pages/libs/imglib2/accessibles.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ final RandomAccess< UnsignedByteType > r = img.randomAccess();
2727
```
2828
[IterableInterval](http://javadoc.scijava.org/ImgLib2/net/imglib2/IterableInterval.html) represents an iterable collection of samples at integer coordinates. You can obtain a `Cursor` using the `cursor()` or `localizingCursor()` methods. You can obtain the number of elements using `size()`. The first element can be obtained by `firstElement()` which is a short-cut for `cursor().next()`.
2929

30-
[RandomAccessibleInterval](http://javadoc.scijava.org/ImgLib2/net/imglib2/RandomAccessibleInterval.html) and [IterableInterval](http://javadoc.scijava.org/ImgLib2/net/imglib2/IterableInterval.html) represent bounded images where all samples lie within an interval. Both extend [Interval](http://javadoc.scijava.org/ImgLib2/net/imglib2/Interval.html) which defines methods to obtain the minimum, maximum, and dimensions of the interval. Dimensions refers to the extend of the interval in every dimension, and is defined as `maximum - minimum + 1. You can obtain the maximum and minimum in a single or all dimensions. If you obtain it in all dimensions, it can be stored into a `long[]` array or a `Positionable`. (Have a look at the [Interval](http://javadoc.scijava.org/ImgLib2/net/imglib2/Interval.html) API doc.)
30+
[RandomAccessibleInterval](http://javadoc.scijava.org/ImgLib2/net/imglib2/RandomAccessibleInterval.html) and [IterableInterval](http://javadoc.scijava.org/ImgLib2/net/imglib2/IterableInterval.html) represent bounded images where all samples lie within an interval. Both extend [Interval](http://javadoc.scijava.org/ImgLib2/net/imglib2/Interval.html) which defines methods to obtain the minimum, maximum, and dimensions of the interval. Dimensions refers to the extend of the interval in every dimension, and is defined as `maximum - minimum + 1`. You can obtain the maximum and minimum in a single or all dimensions. If you obtain it in all dimensions, it can be stored into a `long[]` array or a `Positionable`. (Have a look at the [Interval](http://javadoc.scijava.org/ImgLib2/net/imglib2/Interval.html) API doc.)
3131

3232
### RandomAccessibles
3333

0 commit comments

Comments
 (0)