Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
I
imagej-elphel
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
3
Issues
3
List
Board
Labels
Milestones
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Elphel
imagej-elphel
Commits
fceab18b
Commit
fceab18b
authored
Sep 19, 2024
by
Andrey Filippov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added bicubic, fixed map inversion
parent
8e12622f
Changes
2
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
278 additions
and
17 deletions
+278
-17
VegetationModel.java
...n/java/com/elphel/imagej/orthomosaic/VegetationModel.java
+277
-16
Render3D.java
src/main/java/com/elphel/imagej/x3d/export/Render3D.java
+1
-1
No files found.
src/main/java/com/elphel/imagej/orthomosaic/VegetationModel.java
View file @
fceab18b
This diff is collapsed.
Click to expand it.
src/main/java/com/elphel/imagej/x3d/export/Render3D.java
View file @
fceab18b
...
...
@@ -649,7 +649,7 @@ public class Render3D {
(
1.0
-
fy
)
*
(
fx
)
*
texture
[
chn
][
indx10
]
+
(
fy
)
*
(
1.0
-
fx
)
*
texture
[
chn
][
indx01
]
+
(
fy
)
*
(
fx
)
*
texture
[
chn
][
indx11
];
if
(
pbsif
[
tri_index
[
indx
][
0
]][
chn
].
isValidPoint
(
px
,
py
))
{
// t
g
hen overwrite with bicubic
if
(
pbsif
[
tri_index
[
indx
][
0
]][
chn
].
isValidPoint
(
px
,
py
))
{
// then overwrite with bicubic
pix_val
[
chn
]
=
pbsif
[
tri_index
[
indx
][
0
]][
chn
].
value
(
px
,
py
);
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment