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
66777c19
Commit
66777c19
authored
Sep 29, 2023
by
Andrey Filippov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fixed gaps on maps
parent
1e2d8ada
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
2 deletions
+6
-2
TexturedModel.java
...n/java/com/elphel/imagej/tileprocessor/TexturedModel.java
+2
-1
Render3D.java
src/main/java/com/elphel/imagej/x3d/export/Render3D.java
+4
-1
No files found.
src/main/java/com/elphel/imagej/tileprocessor/TexturedModel.java
View file @
66777c19
...
...
@@ -7448,7 +7448,8 @@ public class TexturedModel {
faded_textures
[
nslice
][
0
],
// final double [] data,
null
,
// final boolean [] prohibit,
width
,
// int width,
16
,
// final int grow,
// CAREFUL ! Remaining NaN is grown by unsharp mask filter ************* !
100
,
// 2*width, // 16, // final int grow,
0.7
,
// double diagonal_weight, // relative to ortho
100
,
// int num_passes,
0.03
,
// final double max_rchange, // = 0.01 - does not need to be accurate
...
...
src/main/java/com/elphel/imagej/x3d/export/Render3D.java
View file @
66777c19
...
...
@@ -196,6 +196,7 @@ public class Render3D {
if
((
tri_meshes
==
null
)
||
tri_meshes
.
isEmpty
()
||
(
tri_meshes
.
get
(
0
).
getTexturePixels
()
==
null
))
{
return
null
;
}
final
int
dbg_ipix
=
1673752
;
// get total number of triangles
int
num_tri
=
0
;
for
(
TriMesh
tri:
tri_meshes
)
{
...
...
@@ -285,8 +286,10 @@ public class Render3D {
if
(!
cross2ccw
(
d02
,
d0p
))
continue
;
double
[]
d1p
=
new
double
[]
{
ipx
-
tri_out2
[
1
][
0
],
ipy
-
tri_out2
[
1
][
1
]};
if
(!
cross2ccw
(
d1p
,
d12
))
continue
;
//
int
ipix
=
ipx
+(
out_height
-
1
-
ipy
)
*
out_width
;
// Y goes down
if
(
ipix
==
dbg_ipix
)
{
System
.
out
.
println
(
"ipix="
+
ipix
);
}
// See if the rendered pixel is closer than the closest of the corners
if
((
rend
[
ipix
]
!=
null
)
&&
(
rend
[
ipix
][
z_index
]
<
min_max_xyz
[
2
][
0
]))
{
continue
;
...
...
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