Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
2 changes: 1 addition & 1 deletion docs/source/apps.rst
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ Clara MMARs
`Pathology`
-----------

.. automodule:: monai.apps.pathology.datasets
.. automodule:: monai.apps.pathology.data
.. autoclass:: PatchWSIDataset
:members:
.. autoclass:: SmartCachePatchWSIDataset
Expand Down
2 changes: 1 addition & 1 deletion monai/apps/pathology/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.

from .datasets import MaskedInferenceWSIDataset, PatchWSIDataset, SmartCacheDataset
from .data import MaskedInferenceWSIDataset, PatchWSIDataset, SmartCachePatchWSIDataset
from .handlers import ProbMapProducer
from .metrics import LesionFROC
from .transforms.stain.array import ExtractHEStains, NormalizeHEStains
Expand Down
12 changes: 12 additions & 0 deletions monai/apps/pathology/data/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# Copyright 2020 - 2021 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.

from .datasets import MaskedInferenceWSIDataset, PatchWSIDataset, SmartCachePatchWSIDataset
12 changes: 12 additions & 0 deletions monai/apps/pathology/metrics/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# Copyright 2020 - 2021 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.

from .lesion_froc import LesionFROC
2 changes: 1 addition & 1 deletion tests/test_masked_inference_wsi_dataset.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
from numpy.testing import assert_array_equal
from parameterized import parameterized

from monai.apps.pathology.datasets import MaskedInferenceWSIDataset
from monai.apps.pathology.data import MaskedInferenceWSIDataset
from monai.apps.utils import download_url
from monai.utils import optional_import
from tests.utils import skip_if_quick
Expand Down
2 changes: 1 addition & 1 deletion tests/test_patch_wsi_dataset.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
from numpy.testing import assert_array_equal
from parameterized import parameterized

from monai.apps.pathology.datasets import PatchWSIDataset
from monai.apps.pathology.data import PatchWSIDataset
from monai.apps.utils import download_url
from monai.utils import optional_import

Expand Down
2 changes: 1 addition & 1 deletion tests/test_smartcache_patch_wsi_dataset.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
from numpy.testing import assert_array_equal
from parameterized import parameterized

from monai.apps.pathology.datasets import SmartCachePatchWSIDataset
from monai.apps.pathology.data import SmartCachePatchWSIDataset
from monai.apps.utils import download_url
from monai.utils import optional_import

Expand Down