Skip to content

Commit 723aaf4

Browse files
kdw503claude
andcommitted
Remove freshen-package-status (all steps complete)
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent 767f397 commit 723aaf4

7 files changed

Lines changed: 32 additions & 16 deletions

File tree

.claude/freshen-package-status

Lines changed: 0 additions & 12 deletions
This file was deleted.

Project.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ AxisArrays = "0.3, 0.4"
3131
CoordinateTransformations = "0.5, 0.6"
3232
Distributed = "1"
3333
DualNumbers = "0.6"
34-
ExplicitImports = "1"
34+
ExplicitImports = "1.9"
3535
FileIO = "1"
3636
ForwardDiff = "0.10, 1"
3737
HDF5 = "0.14, 0.15, 0.16, 0.17"
@@ -45,14 +45,14 @@ LinearAlgebra = "1"
4545
OffsetArrays = "0.10, 0.11, 1"
4646
Pkg = "1"
4747
ProgressMeter = "1"
48-
RegisterUtilities = "0.1"
48+
RegisterUtilities = "0.1, 1"
4949
Requires = "0.5, 1"
5050
Rotations = "0.9, 0.10, 0.11, 0.12, 0.13, 1"
5151
SharedArrays = "1"
5252
StaticArrays = "0.10, 0.11, 0.12, 1"
5353
Statistics = "1"
5454
Test = "1"
55-
julia = "1.6"
55+
julia = "1.10"
5656

5757
[extras]
5858
Aqua = "4c88cf16-eb10-579e-8560-4a9242c79595"

docs/Project.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
[deps]
22
Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4"
3+
ImageAxes = "2803e5a7-5153-5ecf-9a86-9b4c37f5f5ac"
34
ImageMagick = "6218d12a-5da1-5696-b52f-db25d2ecc6d1"
5+
RegisterDeformation = "c19381b7-cf49-59d7-881c-50dfbd227eaf"
46
TestImages = "5e47fb64-e119-507b-a336-dd2b206d9990"
57

68
[compat]

docs/make.jl

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
using Documenter
22
using RegisterDeformation
3+
using ImageAxes
34

45
makedocs(
56
sitename = "RegisterDeformation",

docs/src/api.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,18 @@
11
# API summary
22

3+
## Overview
4+
5+
```@docs
6+
RegisterDeformation
7+
```
8+
39
## Types
410

511
```@docs
612
AbstractDeformation
713
GridDeformation
814
NodeIterator
15+
TransformedArray
916
WarpedArray
1017
```
1118

@@ -33,6 +40,7 @@ extrapolate!(::GridDeformation)
3340
warp
3441
warp!
3542
translate
43+
ImageAxes.getindex!
3644
```
3745

3846
## Composing deformations
@@ -44,6 +52,19 @@ image with `ϕ1` and then warping the result with `ϕ2`.
4452
compose
4553
```
4654

55+
## Affine transforms
56+
57+
```@docs
58+
tformeye
59+
tformtranslate
60+
tformrotate
61+
rotation2
62+
rotation3
63+
rotationparameters
64+
transform
65+
transform!
66+
```
67+
4768
## Temporal manipulations
4869

4970
```@docs
@@ -64,4 +85,7 @@ warpgrid
6485
```@docs
6586
eachnode
6687
centeraxes
88+
RegisterDeformation.arraysize
89+
vecindex
90+
vecgradient!
6791
```

src/warpedarray.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ is an `AbstractDeformation`. Indexing is evaluated on demand.
88
`A` can be any array; it is automatically wrapped in an extrapolation object
99
so that out-of-bounds accesses return `NaN` rather than throwing an error.
1010
11-
See also [`warp`](@ref), [`warp!`](@ref), [`getindex!`](@ref).
11+
See also [`warp`](@ref), [`warp!`](@ref), [`ImageAxes.getindex!`](@ref).
1212
"""
1313
struct WarpedArray{T, N, A <: Extrapolatable, D <: AbstractDeformation} <: AbstractArray{T, N}
1414
data::A

test/runtests.jl

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
using RegisterDeformation
33
using RegisterDeformation: arraysize
44
using CoordinateTransformations, Interpolations, ImageCore, ForwardDiff
5+
using Rotations: rotation_angle
56
using StaticArrays, LinearAlgebra, Distributed, Statistics
67
using AxisArrays: AxisArray
78
using OffsetArrays

0 commit comments

Comments
 (0)