Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
inovisao
pynovisao
Commits
876c518d
Commit
876c518d
authored
Mar 26, 2018
by
Gilberto Astolfi
Browse files
Merge branch 'syntactic'
parents
b0fd4f36
a0789973
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
50 additions
and
1 deletion
+50
-1
.project
.project
+17
-0
.pydevproject
.pydevproject
+5
-0
.settings/org.eclipse.core.resources.prefs
.settings/org.eclipse.core.resources.prefs
+27
-0
src/classification/syntactic.py
src/classification/syntactic.py
+1
-1
No files found.
.project
0 → 100644
View file @
876c518d
<?xml version="1.0" encoding="UTF-8"?>
Gabriel Kirsten
@gabriel.kirsten
·
Mar 28, 2018
Guest
Remover
Remover
Please
register
or
sign in
to reply
Gabriel Kirsten
@gabriel.kirsten
·
Mar 28, 2018
Guest
Remover
Remover
Please
register
or
sign in
to reply
<projectDescription>
<name>
pynovisao
</name>
<comment></comment>
<projects>
</projects>
<buildSpec>
<buildCommand>
<name>
org.python.pydev.PyDevBuilder
</name>
<arguments>
</arguments>
</buildCommand>
</buildSpec>
<natures>
<nature>
org.python.pydev.pythonNature
</nature>
</natures>
</projectDescription>
.pydevproject
0 → 100644
View file @
876c518d
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
Gabriel Kirsten
@gabriel.kirsten
·
Mar 28, 2018
Guest
Remover
Remover
Please
register
or
sign in
to reply
<?eclipse-pydev version="1.0"?>
<pydev_project>
<pydev_property
name=
"org.python.pydev.PYTHON_PROJECT_INTERPRETER"
>
Default
</pydev_property>
<pydev_property
name=
"org.python.pydev.PYTHON_PROJECT_VERSION"
>
python interpreter
</pydev_property>
</pydev_project>
.settings/org.eclipse.core.resources.prefs
0 → 100644
View file @
876c518d
eclipse.preferences.version=1
Gabriel Kirsten
@gabriel.kirsten
·
Mar 28, 2018
Guest
Remover
Remover
Please
register
or
sign in
to reply
encoding//src/classification/classifier.py=utf-8
encoding//src/classification/cnn_caffe.py=utf-8
encoding//src/classification/syntactic.py=utf-8
encoding//src/classification/syntactic_alias.py=utf-8
encoding//src/classification/weka_alias.py=utf-8
encoding//src/classification/weka_classifiers.py=utf-8
encoding//src/extraction/extractor.py=utf-8
encoding//src/extraction/hog.py=utf-8
encoding//src/interface/interface.py=utf-8
encoding//src/interface/tk/tk_canvas.py=utf-8
encoding//src/interface/tk/tk_config.py=utf-8
encoding//src/interface/tk/tk_customdialog.py=utf-8
encoding//src/interface/tk/tk_customframe.py=utf-8
encoding//src/interface/tk/tk_itemmenu.py=utf-8
encoding//src/interface/tk/tk_menu.py=utf-8
encoding//src/interface/tk/tk_popup.py=utf-8
encoding//src/interface/tk/tk_utils.py=utf-8
encoding//src/interface/tk_interface.py=utf-8
encoding//src/main.py=utf-8
encoding//src/pynovisao.py=utf-8
encoding//src/segmentation/felzenszwalb.py=utf-8
encoding//src/util/config.py=utf-8
encoding//src/util/file_utils.py=utf-8
encoding//src/util/syntactic_utils.py=utf-8
encoding//src/util/utils.py=utf-8
encoding//src/util/x11_colors.py=utf-8
src/classification/syntactic.py
View file @
876c518d
...
...
@@ -138,7 +138,7 @@ class Syntactic(Classifier):
def
classify
(
self
,
dataset
,
test_dir
,
test_data
):
def
classify
(
self
,
dataset
,
test_dir
,
test_data
,
image
):
path_test
=
dataset
+
'/'
+
test_dir
+
'/'
((
X_test
,
y_test
),
name_classes
)
=
self
.
__load_data
(
path_test
,
False
)
...
...
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