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
6c9d6370
Commit
6c9d6370
authored
Nov 10, 2014
by
Andrey Filippov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
more debug output removed
parent
ee9e5fb6
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
MatchSimulatedPattern.java
src/main/java/MatchSimulatedPattern.java
+3
-3
No files found.
src/main/java/MatchSimulatedPattern.java
View file @
6c9d6370
...
...
@@ -3249,7 +3249,7 @@ public class MatchSimulatedPattern {
}
else
{
// new multithreaded mode
int
startScanIndex
=
3
;
for
(;(
startScanIndex
<
numTries
)
&&
triedIndices
[
startScanIndex
];
startScanIndex
++);
// skip already tried indices
if
(
global_debug_level
>
0
)
System
.
out
.
println
(
"distortions(): startScanIndex="
+
startScanIndex
);
if
(
(
global_debug_level
>
0
)
&&
(
startScanIndex
>
3
)
)
System
.
out
.
println
(
"distortions(): startScanIndex="
+
startScanIndex
);
if
(
startScanIndex
<
numTries
)
{
nodeQueue
=
findPatternCandidates
(
...
...
@@ -3300,7 +3300,7 @@ public class MatchSimulatedPattern {
this
.
PATTERN_GRID
=
null
;
return
0
;
}
if
(
global_debug_level
>
0
)
{
if
(
global_debug_level
>
1
)
{
System
.
out
.
println
(
"distortions(): found "
+
nodeQueue
.
size
()+
" grid candidates"
);
// System.out.println("*** distortions: Center x="+IJ.d2s(centerXY[0],3)+" y="+ IJ.d2s(centerXY[1],3));
}
...
...
@@ -3717,7 +3717,7 @@ public class MatchSimulatedPattern {
while
(
initialWave
.
size
()>
0
){
uvdir
=
getWaveList
(
initialWave
,
0
);
// clearPatternGridCell(PATTERN_GRID, uvdir);
if
(
global_debug_level
>
0
)
if
(
global_debug_level
>
1
)
System
.
out
.
println
(
"Removing x="
+
uvdir
[
0
]+
" y="
+
uvdir
[
1
]+
" dir="
+
uvdir
[
2
]);
markDeletedPatternGridCell
(
PATTERN_GRID
,
uvdir
);
initialWave
.
remove
(
0
);
...
...
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