Skip to content

Commit

Permalink
Merge branch 'devel'
Browse files Browse the repository at this point in the history
  • Loading branch information
cdeldon committed Nov 8, 2017
2 parents b3410bc + ceae60d commit ebc4291
Show file tree
Hide file tree
Showing 67 changed files with 5,700 additions and 478 deletions.
10 changes: 10 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -101,3 +101,13 @@ ENV/

# mypy
.mypy_cache/

# Log directory
logs/*
!logs/.gitkeep

# Resource directory
resources/*
!resources/.gitkeep
resources/weights/*
!resources/weights/.gitkeep
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@

sudo: required
language: python

Expand Down
2 changes: 1 addition & 1 deletion gui/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
from .dialogs import ThermoGUI
from .dialogs import ThermoGUI, CreateDatasetGUI
36 changes: 18 additions & 18 deletions gui/about/about_rich_text.html
Original file line number Diff line number Diff line change
@@ -1,24 +1,24 @@
<html>
<body>
<img src="{logo_path}" alt="ThermoGUI logo">
<br/>
<h2>About ThermoGUI</h2>
<p>This application has been developed as a feasibility study<br/>
for automatic detection of damaged/not functional solar<br/>
panel modules at SUPSI - ISAAC in Canobbio, Lugano (CH).
</p>
<h2>Autor</h2>
<p>The project was implemented by the following authors<br/>
listed in temporal order:
<ul>
<li><i>Carlo Del Don</i> ([email protected])</li>
</ul>
</p>
<img src="{logo_path}" alt="ThermoGUI logo">
<br/>
<h2>About ThermoGUI</h2>
<p>This application has been developed as a feasibility study<br/>
for automatic detection of damaged/not functional solar<br/>
panel modules at SUPSI - ISAAC in Canobbio, Lugano (CH).
</p>
<h2>Autor</h2>
<p>The project was implemented by the following authors<br/>
listed in temporal order:
<ul>
<li><i>Carlo Del Don</i> ([email protected])</li>
</ul>
</p>

<br/>
<br/>

<h4>
Logo created on <a href="https://logomakr.com">logomakr</a>.
</h4>
<h4>
Logo created on <a href="https://logomakr.com">logomakr</a>.
</h4>
</body>
</html>
4 changes: 3 additions & 1 deletion gui/design/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
from .thermo_gui_design import Ui_ThermoGUI_main_window
from .webcam_dialog_design import Ui_WebCam
from .create_dataset_gui import Ui_CreateDataset_main_window
from .webcam_dialog_design import Ui_WebCam
from .image_saving_gui import Ui_Save_images_dialog
859 changes: 859 additions & 0 deletions gui/design/create_dataset_gui.py

Large diffs are not rendered by default.

Loading

0 comments on commit ebc4291

Please sign in to comment.