Update deps to fix CI build issues
Showing 2 of 9 files from the diff.
src/EdgeCameras.jl
changed.
src/homography.jl
changed.
Other files ignored by Codecov
notebooks/red_stereo.ipynb
has changed.
notebooks/Project.toml
has changed.
Manifest.toml
has changed.
Project.toml
has changed.
notebooks/Manifest.toml
has changed.
.travis.yml
has changed.
notebooks/demo.ipynb
has changed.
@@ -1,8 +1,9 @@
Loading
1 | 1 | struct Homography2D{T, M <: AbstractMatrix{T}} <: Transformation |
|
2 | 2 | H::M |
|
3 | - | end |
|
4 | 3 | ||
5 | - | Homography2D(H::M) where {T, M <: AbstractMatrix{T}} = Homography2D{T, M}(H) |
|
4 | + | Homography2D{T, M}(H) where {T, M <: AbstractMatrix{T}} = new{T, M}(H) |
|
5 | + | Homography2D(H::M) where {T, M <: AbstractMatrix{T}} = new{T, M}(H) |
|
6 | + | end |
|
6 | 7 | ||
7 | 8 | Base.inv(H::Homography2D) = Homography2D(inv(H.H)) |
|
8 | 9 |
@@ -14,7 +15,7 @@
Loading
14 | 15 | ||
15 | 16 | const DEFAULT_CORNERS = [[0, 0], [0, 1], [1, 1], [1, 0]] |
|
16 | 17 | ||
17 | - | function rectify(original_corners, |
|
18 | + | function rectify(original_corners, |
|
18 | 19 | desired_corners = DEFAULT_CORNERS) |
|
19 | 20 | @assert length(original_corners) == length(desired_corners) |
|
20 | 21 | N = length(original_corners) |
Files | Coverage |
---|---|
src | 79.11% |
Project Totals (7 files) | 79.11% |
Sunburst
The inner-most circle is the entire project, moving away from the center are folders then, finally, a single file.
The size and color of each slice is representing the number of statements and the coverage, respectively.
Icicle
The top section represents the entire project. Proceeding with folders and finally individual files.
The size and color of each slice is representing the number of statements and the coverage, respectively.