generated from worldbank/template
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Create README.md * add files * Rename notebooks * Update content --------- Co-authored-by: Gabriel Stefanini Vicente <[email protected]>
- Loading branch information
1 parent
923bf6f
commit 52a6147
Showing
9 changed files
with
2,331 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,5 +8,6 @@ The Data Lab would like to express our sincere gratutude and appreciation for th | |
| [Jose Manuel Delgado Blasco](mailto:[email protected]) | Data Scientist | DECSC | | ||
| [Gabriel Stefanini Vicente](mailto:[email protected]) | Data Scientist | WB Data Lab, DECDG | | ||
| [Sahiti Sarva](mailto:[email protected]) | Data Scientist | WB Data Lab, DECDG | | ||
| [Xiaoqi Tang](mailto:[email protected]) | Data Scientist | ITSES | | ||
|
||
The Data Lab would also like to express our appreciation for Gianluca Mele, Lead Country Economist for Palestine, and Luan Zhao, Senior Economist, who have entrusted our team with using alternative data sources to understand a rapidly changing, complex problem. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
|
||
# Detection of Solar Panels | ||
|
||
This section contains a Computer Vision (CV) project aimed at detecting and identifying solar panels in the Gaza Strip. The project utilizes image processing techniques and machine learning to analyze satellite or aerial imagery for the presence of solar panels. |
378 changes: 378 additions & 0 deletions
378
notebooks/solar-panel-segmentation/panel-detection-gaza.ipynb
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
pytest==5.3.5 | ||
opencv-python-headless==4.6.0.66 | ||
numpy==1.18.1 | ||
scikit_image==0.16.2 | ||
matplotlib==3.1.3 | ||
requests==2.22.0 | ||
tensorflow==2.2.0 | ||
pandas==1.1.4 | ||
Pillow==8.0.1 | ||
detecto==1.2.1 | ||
scikit_learn==0.23.2 | ||
sphinx_rtd_theme==0.5.0 | ||
h5py==2.10.0 | ||
torch==1.9.0 | ||
torchvision==0.10.0 | ||
protobuf~=3.19.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
[versioneer] | ||
VCS = git | ||
style = pep440 | ||
versionfile_source = panel_segmentation/_version.py | ||
versionfile_build = panel_segmentation/_version.py | ||
tag_prefix = '' | ||
parentdir_prefix = panel_segmentation- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,76 @@ | ||
try: | ||
from setuptools import setup | ||
except ImportError: | ||
raise RuntimeError('setuptools is required') | ||
|
||
import versioneer | ||
|
||
KEYWORDS = [ | ||
'photovoltaic', | ||
'solar', | ||
'analytics', | ||
'analysis', | ||
'performance', | ||
'PV' | ||
'satellite' | ||
] | ||
|
||
|
||
INSTALL_REQUIRES = [ | ||
'opencv-python-headless==4.6.0.66', | ||
'numpy>=1.18.1', | ||
'scikit_image>=0.16.2', | ||
'matplotlib>=3.1.3', | ||
'requests>=2.22.0', | ||
'tensorflow>=2.2.0', | ||
'pandas>=1.1.4', | ||
'Pillow>=8.0.1', | ||
'scikit_learn>=0.23.2', | ||
'h5py>=2.10.0', | ||
'detecto>=1.2.1', | ||
'torch>=1.9.0', | ||
'torchvision>=0.10.0' | ||
] | ||
|
||
TESTS_REQUIRE = [ | ||
'pytest>=5.3.5' | ||
] | ||
|
||
EXTRAS_REQUIRE = { | ||
'doc': [ | ||
'sphinx==3.2', | ||
'jinja2<3.1', | ||
'sphinx_rtd_theme==0.5.2', | ||
'ipython' | ||
], | ||
'test': TESTS_REQUIRE | ||
} | ||
|
||
|
||
setup( | ||
name='panel_segmentation', | ||
version=versioneer.get_version(), | ||
install_requires=INSTALL_REQUIRES, | ||
tests_require=TESTS_REQUIRE, | ||
extras_require=EXTRAS_REQUIRE, | ||
description='A package to segment solar panels from a ' | ||
'satellite image and perform automated metadata extraction.', | ||
url='https://github.com/NREL/Panel-Segmentation', | ||
keywords=KEYWORDS, | ||
author='Ayobami Edun, Kirsten Perry, Kevin Anderson, Christopher Campos', | ||
author_email='[email protected]; [email protected]; ' | ||
'[email protected]; [email protected]', | ||
package_data={ | ||
'panel_segmentation': [ | ||
'panel_segmentation/examples/*', | ||
'panel_segmentation/tests/*', | ||
'panel_segmentation/models/VGG16Net_ConvTranpose_complete.h5', | ||
'panel_segmentation/models/VGG16_classification_model.h5', | ||
'panel_segmentation/models/object_detection_model.pth' | ||
], | ||
}, | ||
include_package_data=True, | ||
license='MIT', | ||
packages=['panel_segmentation'], | ||
zip_safe=False | ||
) |
Oops, something went wrong.