Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Cresson Remi
otbtf
Commits
cd141dd8
Commit
cd141dd8
authored
Oct 29, 2019
by
Cresson Remi
Browse files
ENH: fix bug with nodata
parent
bf4e7c7b
Changes
1
Show whitespace changes
Inline
Side-by-side
include/otbTensorflowSampler.hxx
View file @
cd141dd8
...
...
@@ -200,11 +200,15 @@ TensorflowSampler<TInputImage, TVectorData>
for
(
int
i
;
i
<
pix
.
Size
();
i
++
)
if
(
pix
[
i
]
==
m_NodataValue
)
{
std
::
cout
<<
"[0]: pix["
<<
i
<<
"]="
<<
pix
[
i
]
<<
std
::
endl
;
std
::
cout
<<
"break"
<<
std
::
endl
;
hasBeenSampled
=
false
;
std
::
cout
<<
"no actually break"
<<
std
::
endl
;
break
;
}
if
(
!
hasBeenSampled
)
{
std
::
cout
<<
"BREAKED"
<<
std
::
endl
;
break
;
}
}
...
...
@@ -213,22 +217,6 @@ TensorflowSampler<TInputImage, TVectorData>
}
// Next input
if
(
hasBeenSampled
)
{
// TODO: delete
IndexType
outIndex
;
outIndex
[
0
]
=
0
;
outIndex
[
1
]
=
count
*
m_PatchSizes
[
0
][
1
];
RegionType
region
(
outIndex
,
m_PatchSizes
[
0
]);
IteratorType
it
(
m_OutputPatchImages
[
0
],
region
);
for
(
it
.
GoToBegin
();
!
it
.
IsAtEnd
();
++
it
)
{
PixelType
pix
=
it
.
Get
();
for
(
int
i
;
i
<
pix
.
Size
();
i
++
)
if
(
pix
[
i
]
==
m_NodataValue
)
{
std
::
cout
<<
"PROBLEM"
<<
std
::
endl
;
}
}
// Fill label
labelIndex
[
1
]
=
count
;
m_OutputLabelImage
->
SetPixel
(
labelIndex
,
labelPix
);
...
...
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