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
da09d9a8
Commit
da09d9a8
authored
Oct 29, 2019
by
Cresson Remi
Browse files
ENH: fix bug with nodata
parent
7c3b028b
Changes
1
Hide whitespace changes
Inline
Side-by-side
include/otbTensorflowSampler.hxx
View file @
da09d9a8
...
...
@@ -163,8 +163,6 @@ TensorflowSampler<TInputImage, TVectorData>
labelIndex
[
0
]
=
0
;
PixelType
labelPix
;
labelPix
.
SetSize
(
1
);
std
::
cout
<<
"REJECT is "
<<
m_RejectPatchesWithNodata
<<
std
::
endl
;
std
::
cout
<<
"NODATAVAL is "
<<
m_NodataValue
<<
std
::
endl
;
while
(
!
itVector
.
IsAtEnd
())
{
if
(
!
itVector
.
Get
()
->
IsRoot
()
&&
!
itVector
.
Get
()
->
IsDocument
()
&&
!
itVector
.
Get
()
->
IsFolder
())
...
...
@@ -199,12 +197,11 @@ TensorflowSampler<TInputImage, TVectorData>
for
(
it
.
GoToBegin
();
!
it
.
IsAtEnd
();
++
it
)
{
PixelType
pix
=
it
.
Get
();
std
::
cout
<<
pix
<<
std
::
endl
;
for
(
int
i
;
i
<
pix
.
Size
();
i
++
)
if
(
pix
[
i
]
==
m_NodataValue
)
{
std
::
cout
<<
"[0]: pix["
<<
i
<<
"]="
<<
pix
[
i
]
<<
std
::
endl
;
hasBeenSampled
=
false
;
std
::
cout
<<
"break"
<<
std
::
endl
;
break
;
}
if
(
!
hasBeenSampled
)
...
...
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