Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
49 commits
Select commit Hold shift + click to select a range
3d03bd6
Try 1
finalelement May 13, 2022
d8c2c56
dataset prep addition
finalelement May 16, 2022
3d22109
Refactoring of transforms as there were loose hanging functions
finalelement May 18, 2022
04e8782
Minor changes to transforms
finalelement May 20, 2022
bbadb70
Added test cases for all transforms
finalelement May 20, 2022
0e7199d
Removed dataset prep, it will be a part of tutorial, added opencv to …
finalelement May 20, 2022
1e60194
Added Init for NuClick
finalelement May 20, 2022
bdd1697
Code formatting changes
finalelement May 20, 2022
4c8d809
Linting & Formatting
finalelement May 20, 2022
95a56f6
Fixed Flake 8 & opencv addition to requirement & env files
finalelement May 20, 2022
3925e8d
Fixed Flake 8 & opencv addition to requirement & env files
finalelement May 20, 2022
a951b42
Fixed Flake 8 & opencv addition to requirement & env files
finalelement May 20, 2022
e8e47fd
Fixed Flake 8 & opencv addition to requirement & env files
finalelement May 20, 2022
3c2e928
Minor in line docs need to be updated
finalelement May 20, 2022
2f49e1a
Minor in line docs need to be updated
finalelement May 20, 2022
865ffe2
Adding Two Transforms & Test Cases
finalelement May 24, 2022
ae5209f
Formatted the PR
finalelement May 24, 2022
e3e3b6c
opencv changes
finalelement May 24, 2022
e627725
opencv changes
finalelement May 24, 2022
0e41da5
More optional import based changes
finalelement May 24, 2022
9ecdadc
Removed opencv-python-headles as that does not workout
finalelement May 24, 2022
b713fe5
adding sk image back to requirement.txt till we figure out an alterna…
finalelement May 24, 2022
7db648d
Replaced MapTransform instead of Transform for SplitLabeld
finalelement May 24, 2022
225b6b5
Added skimage and cv2 requirements.txt as tests fail otherwise
finalelement May 24, 2022
419fc33
Added MapTransform Inheritance to AddClickSignalsd
finalelement May 24, 2022
12fac7c
Spatial Pad Incorporated to ExtractPatchd
finalelement May 24, 2022
c92d247
Remvoed comments and added doc-strings
finalelement May 25, 2022
bed1829
codeformat
finalelement May 25, 2022
62697d9
Adding NuClick Test to Min tests and removing opencv & scikit from re…
finalelement May 25, 2022
f93f636
Merge branch 'dev' into nc_transforms
Nic-Ma May 25, 2022
1b22052
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] May 25, 2022
73f0f8a
Removed cv2 dependency after modification of FlattenLabeld Transform …
finalelement May 25, 2022
c67f531
Minor addition to doc string
finalelement May 25, 2022
ad27c24
update based on comments
wyli May 25, 2022
cecc7ec
adds unit test case
wyli May 25, 2022
998e655
remove unused import
wyli May 25, 2022
39d1c3d
Merge branch 'dev' into nc_transforms
bhashemian May 26, 2022
1f5385c
Merge branch 'dev' into nc_transforms
wyli May 26, 2022
606789d
Merge branch 'dev' into nc_transforms
wyli May 26, 2022
78fe16e
fixes unit test
wyli May 26, 2022
5e68d80
Adding changes as docs and init arguments, 2 additional test cases
finalelement May 26, 2022
97ea052
Merge branch 'dev' into nc_transforms
bhashemian May 27, 2022
f6a3606
Merge branch 'dev' into nc_transforms
bhashemian May 27, 2022
fc5180c
Minor changes
finalelement May 27, 2022
9dfeaa2
Merge branch 'nc_transforms' of https://github.com/finalelement/MONAI…
finalelement May 27, 2022
ba1cc06
Merge branch 'dev' into nc_transforms
bhashemian May 28, 2022
5b12725
kwargs added to ExtractPatchd
finalelement May 30, 2022
dd18857
Added a unit test for kwargs of SpatialPad in ExtractPatchd and a doc…
finalelement May 31, 2022
5102f2d
Merge branch 'dev' into nc_transforms
Nic-Ma May 31, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,10 @@ repos:
monai/__init__.py|
docs/source/conf.py
)$
- repo: https://github.com/hadialqattan/pycln
rev: v1.3.3
hooks:
- id: pycln

- repo: https://github.com/hadialqattan/pycln
rev: v1.3.3
Expand Down
10 changes: 10 additions & 0 deletions monai/apps/nuclick/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# Copyright (c) MONAI Consortium
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
# http://www.apache.org/licenses/LICENSE-2.0
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
Loading