Skip to content

Commit

Permalink
UI update and integration with revamped backend (#7)
Browse files Browse the repository at this point in the history
* added files for the UI
* Save with annotations
  • Loading branch information
mukheshpugal authored Aug 3, 2021
1 parent a6c7560 commit 87b8e72
Show file tree
Hide file tree
Showing 28 changed files with 1,042 additions and 1,336 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/qualitycheck.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
# This workflow will install Python dependencies, run tests and lint with a variety of Python versions
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions

name: Code quality check

on:
push:
branches: [ master ]
pull_request:
branches: [ master ]

jobs:
build:

runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: [3.8]

steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install pylama
- name: PyLama
run: |
pylama .
5 changes: 1 addition & 4 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1 @@
__pycache__/
*.SEQ
DJI_0586.jpg
images/
__pycache__/
Loading

3 comments on commit 87b8e72

@RogerFx
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hi,

I´m interested in finding a thermal image analysis software that can use .hir files from Seek Shot camera. Can your software use this format?

Tks, Roger

@rsnk96
Copy link
Member

@rsnk96 rsnk96 commented on 87b8e72 Aug 23, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hi,

I´m interested in finding a thermal image analysis software that can use .hir files from Seek Shot camera. Can your software use this format?

Tks, Roger

@RogerFx - shifting the discussion to the Issues section: #8

@RogerFx
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks rsnk96 for shifting the discussion to the correct section.

Please sign in to comment.