forked from tobac-project/tobac
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Speeding up 2D feature detection using what we learned from 3D (tobac…
…-project#10) * Improved speed from implementation of new indices get functions * Updated feature detection to be faster * Updated version I updated the version number in the setup.py script so that users can update with pip. * Added workflow to automatically run tests via github actions * Switched around order of dockerfile to improve performance. * Switched label around to use binary arrays, as that seems faster. * Speeding up binary_erosion
- Loading branch information
1 parent
d285d89
commit 4e4a8bd
Showing
4 changed files
with
126 additions
and
20 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
name: Docker Image CI | ||
|
||
on: | ||
push: | ||
branches: [ master, dev ] | ||
pull_request: | ||
branches: [ master, dev ] | ||
|
||
jobs: | ||
|
||
build: | ||
|
||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Build the Docker image | ||
run: docker build . --file Dockerfile --tag my-image-name:$(date +%s) |
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 |
---|---|---|
@@ -1,12 +1,12 @@ | ||
from setuptools import setup | ||
|
||
setup(name='tobac', | ||
version='1.2', | ||
version='1.3.0', | ||
description='Tracking and object-based analysis of clouds', | ||
url='http://github.com/climate-processes/tobac', | ||
author='Max Heikenfeld', | ||
author_email='[email protected]', | ||
license='GNU', | ||
author='Max Heikenfeld, Sean Freeman, Alex Sokolowsky', | ||
author_email='[email protected]', | ||
license='BSD-3', | ||
packages=['tobac'], | ||
install_requires=[], | ||
zip_safe=False) |
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