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
270b2b7a
Commit
270b2b7a
authored
Aug 15, 2025
by
Andrey Filippov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fixing slice titles
parent
4f3abbd2
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
1 deletion
+5
-1
OpticalFlow.java
...ain/java/com/elphel/imagej/tileprocessor/OpticalFlow.java
+5
-1
No files found.
src/main/java/com/elphel/imagej/tileprocessor/OpticalFlow.java
View file @
270b2b7a
...
...
@@ -6455,7 +6455,11 @@ public class OpticalFlow {
String
[]
scene_titles
=
new
String
[
num_scenes
];
for
(
int
nscene
=
0
;
nscene
<
fpixels
.
length
;
nscene
++)
{
fpixels
[
nscene
]
=
(
float
[])
imp_targets
.
getStack
().
getPixels
(
nscene
+
first_corr
+
1
);
scene_titles
[
nscene
]
=
imp_targets
.
getStack
().
getSliceLabel
(
nscene
+
first_corr
+
1
);
String
s
=
imp_targets
.
getStack
().
getSliceLabel
(
nscene
+
first_corr
+
1
);
if
(
s
.
indexOf
(
"-0"
)
>=
0
)
{
s
=
s
.
substring
(
0
,
s
.
indexOf
(
"-0"
));
}
scene_titles
[
nscene
]
=
s
;
// imp_targets.getStack().getSliceLabel(nscene+first_corr+1);
}
master_CLT
.
processMovingTargets
(
clt_parameters
,
// CLTParameters clt_parameters,
...
...
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