├── .github ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ ├── build_macos.yml │ ├── build_macos_arm64.yml │ ├── build_ubuntu.yml │ └── build_windows.yml ├── .gitignore ├── CMakeLists.txt ├── LICENSE.md ├── README.md ├── cmake └── Package.cmake ├── data ├── Icons │ ├── cogwheel_process_icon.png │ ├── export_icon_new.png │ ├── export_icon_new_cropped.png │ ├── export_icon_new_cropped_resized.png │ ├── fastpathology_logo.ico │ ├── fastpathology_logo.png │ ├── fastpathology_logo_large.icns │ ├── fastpathology_logo_large.ico │ ├── fastpathology_logo_large.png │ ├── import_icon_new.png │ ├── import_icon_new_cropped.png │ ├── import_icon_new_cropped_resized.png │ ├── menu_icon.png │ ├── process_icon_new.png │ ├── process_icon_new_cropped.png │ ├── process_icon_new_cropped_resized.png │ ├── statistics_icon_new.png │ ├── statistics_icon_new_cropped.png │ ├── statistics_icon_new_cropped_resized.png │ ├── trash_delete_icon.jpeg │ ├── visualize_icon_new.png │ ├── visualize_icon_new_cropped.png │ └── visualize_icon_new_cropped_resized.png ├── Videos │ ├── fp_demo_v1.gif │ └── pw_predictions.gif └── pipelines │ └── tissue_segmentation.fpl ├── doc └── images │ ├── GUI_example_new.png │ ├── fastpathology_logo.png │ └── snapshot-youtube.png ├── misc ├── AppIcon.rc ├── Info.plist.in ├── inference_study │ ├── CMakeLists.txt │ ├── measurePipelinePerformance.cpp │ ├── results │ │ ├── neural-network-runtimes-case-1.csv │ │ ├── neural-network-runtimes-case-1_batch.csv │ │ ├── neural-network-runtimes-case-1_inceptionv3.csv │ │ ├── neural-network-runtimes-case-2.csv │ │ ├── neural-network-runtimes-case-3-hrss.csv │ │ ├── neural-network-runtimes-case-3.csv │ │ ├── neural-network-runtimes-case-3a.csv │ │ ├── neural-network-runtimes-case-4-odac.csv │ │ ├── neural-network-runtimes-case-4.csv │ │ └── neural-network-runtimes-case-5.csv │ ├── results_windows │ │ ├── neural-network-runtimes-case-1.csv │ │ └── neural-network-runtimes-case-1_inceptionv3.csv │ ├── results_windows2 │ │ ├── neural-network-runtimes-case-1.csv │ │ └── neural-network-runtimes-case-1_inceptionv3.csv │ ├── statistical_analysis.py │ └── test_latex_table.txt ├── qtres.cpp └── qtres.qrc └── source ├── gui ├── ExportTab │ ├── ExportWidget.cpp │ └── ExportWidget.h ├── MainSidePanelWidget.cpp ├── MainSidePanelWidget.h ├── MainWindow.cpp ├── MainWindow.hpp ├── ProcessTab │ ├── PipelineScriptEditorWidget.cpp │ ├── PipelineScriptEditorWidget.h │ ├── ProcessWidget.cpp │ └── ProcessWidget.h ├── ProjectTab │ ├── ProjectThumbnailPushButton.cpp │ ├── ProjectThumbnailPushButton.h │ ├── ProjectWidget.cpp │ └── ProjectWidget.h ├── SplashWidget.cpp ├── SplashWidget.hpp ├── StatsTab │ ├── StatsWidget.cpp │ └── StatsWidget.h └── ViewTab │ ├── ViewWidget.cpp │ └── ViewWidget.h ├── logic ├── Project.cpp ├── Project.h ├── WholeSlideImage.cpp └── WholeSlideImage.h ├── main.cpp └── utils ├── qutilities.h └── utilities.h /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AICAN-Research/FAST-Pathology/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AICAN-Research/FAST-Pathology/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AICAN-Research/FAST-Pathology/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AICAN-Research/FAST-Pathology/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/build_macos.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AICAN-Research/FAST-Pathology/HEAD/.github/workflows/build_macos.yml -------------------------------------------------------------------------------- /.github/workflows/build_macos_arm64.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AICAN-Research/FAST-Pathology/HEAD/.github/workflows/build_macos_arm64.yml -------------------------------------------------------------------------------- /.github/workflows/build_ubuntu.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AICAN-Research/FAST-Pathology/HEAD/.github/workflows/build_ubuntu.yml -------------------------------------------------------------------------------- /.github/workflows/build_windows.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AICAN-Research/FAST-Pathology/HEAD/.github/workflows/build_windows.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AICAN-Research/FAST-Pathology/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AICAN-Research/FAST-Pathology/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AICAN-Research/FAST-Pathology/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AICAN-Research/FAST-Pathology/HEAD/README.md -------------------------------------------------------------------------------- /cmake/Package.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AICAN-Research/FAST-Pathology/HEAD/cmake/Package.cmake -------------------------------------------------------------------------------- /data/Icons/cogwheel_process_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AICAN-Research/FAST-Pathology/HEAD/data/Icons/cogwheel_process_icon.png -------------------------------------------------------------------------------- /data/Icons/export_icon_new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AICAN-Research/FAST-Pathology/HEAD/data/Icons/export_icon_new.png -------------------------------------------------------------------------------- /data/Icons/export_icon_new_cropped.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AICAN-Research/FAST-Pathology/HEAD/data/Icons/export_icon_new_cropped.png -------------------------------------------------------------------------------- /data/Icons/export_icon_new_cropped_resized.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AICAN-Research/FAST-Pathology/HEAD/data/Icons/export_icon_new_cropped_resized.png -------------------------------------------------------------------------------- /data/Icons/fastpathology_logo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AICAN-Research/FAST-Pathology/HEAD/data/Icons/fastpathology_logo.ico -------------------------------------------------------------------------------- /data/Icons/fastpathology_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AICAN-Research/FAST-Pathology/HEAD/data/Icons/fastpathology_logo.png -------------------------------------------------------------------------------- /data/Icons/fastpathology_logo_large.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AICAN-Research/FAST-Pathology/HEAD/data/Icons/fastpathology_logo_large.icns -------------------------------------------------------------------------------- /data/Icons/fastpathology_logo_large.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AICAN-Research/FAST-Pathology/HEAD/data/Icons/fastpathology_logo_large.ico -------------------------------------------------------------------------------- /data/Icons/fastpathology_logo_large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AICAN-Research/FAST-Pathology/HEAD/data/Icons/fastpathology_logo_large.png -------------------------------------------------------------------------------- /data/Icons/import_icon_new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AICAN-Research/FAST-Pathology/HEAD/data/Icons/import_icon_new.png -------------------------------------------------------------------------------- /data/Icons/import_icon_new_cropped.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AICAN-Research/FAST-Pathology/HEAD/data/Icons/import_icon_new_cropped.png -------------------------------------------------------------------------------- /data/Icons/import_icon_new_cropped_resized.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AICAN-Research/FAST-Pathology/HEAD/data/Icons/import_icon_new_cropped_resized.png -------------------------------------------------------------------------------- /data/Icons/menu_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AICAN-Research/FAST-Pathology/HEAD/data/Icons/menu_icon.png -------------------------------------------------------------------------------- /data/Icons/process_icon_new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AICAN-Research/FAST-Pathology/HEAD/data/Icons/process_icon_new.png -------------------------------------------------------------------------------- /data/Icons/process_icon_new_cropped.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AICAN-Research/FAST-Pathology/HEAD/data/Icons/process_icon_new_cropped.png -------------------------------------------------------------------------------- /data/Icons/process_icon_new_cropped_resized.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AICAN-Research/FAST-Pathology/HEAD/data/Icons/process_icon_new_cropped_resized.png -------------------------------------------------------------------------------- /data/Icons/statistics_icon_new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AICAN-Research/FAST-Pathology/HEAD/data/Icons/statistics_icon_new.png -------------------------------------------------------------------------------- /data/Icons/statistics_icon_new_cropped.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AICAN-Research/FAST-Pathology/HEAD/data/Icons/statistics_icon_new_cropped.png -------------------------------------------------------------------------------- /data/Icons/statistics_icon_new_cropped_resized.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AICAN-Research/FAST-Pathology/HEAD/data/Icons/statistics_icon_new_cropped_resized.png -------------------------------------------------------------------------------- /data/Icons/trash_delete_icon.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AICAN-Research/FAST-Pathology/HEAD/data/Icons/trash_delete_icon.jpeg -------------------------------------------------------------------------------- /data/Icons/visualize_icon_new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AICAN-Research/FAST-Pathology/HEAD/data/Icons/visualize_icon_new.png -------------------------------------------------------------------------------- /data/Icons/visualize_icon_new_cropped.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AICAN-Research/FAST-Pathology/HEAD/data/Icons/visualize_icon_new_cropped.png -------------------------------------------------------------------------------- /data/Icons/visualize_icon_new_cropped_resized.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AICAN-Research/FAST-Pathology/HEAD/data/Icons/visualize_icon_new_cropped_resized.png -------------------------------------------------------------------------------- /data/Videos/fp_demo_v1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AICAN-Research/FAST-Pathology/HEAD/data/Videos/fp_demo_v1.gif -------------------------------------------------------------------------------- /data/Videos/pw_predictions.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AICAN-Research/FAST-Pathology/HEAD/data/Videos/pw_predictions.gif -------------------------------------------------------------------------------- /data/pipelines/tissue_segmentation.fpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AICAN-Research/FAST-Pathology/HEAD/data/pipelines/tissue_segmentation.fpl -------------------------------------------------------------------------------- /doc/images/GUI_example_new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AICAN-Research/FAST-Pathology/HEAD/doc/images/GUI_example_new.png -------------------------------------------------------------------------------- /doc/images/fastpathology_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AICAN-Research/FAST-Pathology/HEAD/doc/images/fastpathology_logo.png -------------------------------------------------------------------------------- /doc/images/snapshot-youtube.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AICAN-Research/FAST-Pathology/HEAD/doc/images/snapshot-youtube.png -------------------------------------------------------------------------------- /misc/AppIcon.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AICAN-Research/FAST-Pathology/HEAD/misc/AppIcon.rc -------------------------------------------------------------------------------- /misc/Info.plist.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AICAN-Research/FAST-Pathology/HEAD/misc/Info.plist.in -------------------------------------------------------------------------------- /misc/inference_study/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AICAN-Research/FAST-Pathology/HEAD/misc/inference_study/CMakeLists.txt -------------------------------------------------------------------------------- /misc/inference_study/measurePipelinePerformance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AICAN-Research/FAST-Pathology/HEAD/misc/inference_study/measurePipelinePerformance.cpp -------------------------------------------------------------------------------- /misc/inference_study/results/neural-network-runtimes-case-1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AICAN-Research/FAST-Pathology/HEAD/misc/inference_study/results/neural-network-runtimes-case-1.csv -------------------------------------------------------------------------------- /misc/inference_study/results/neural-network-runtimes-case-1_batch.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AICAN-Research/FAST-Pathology/HEAD/misc/inference_study/results/neural-network-runtimes-case-1_batch.csv -------------------------------------------------------------------------------- /misc/inference_study/results/neural-network-runtimes-case-1_inceptionv3.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AICAN-Research/FAST-Pathology/HEAD/misc/inference_study/results/neural-network-runtimes-case-1_inceptionv3.csv -------------------------------------------------------------------------------- /misc/inference_study/results/neural-network-runtimes-case-2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AICAN-Research/FAST-Pathology/HEAD/misc/inference_study/results/neural-network-runtimes-case-2.csv -------------------------------------------------------------------------------- /misc/inference_study/results/neural-network-runtimes-case-3-hrss.csv: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /misc/inference_study/results/neural-network-runtimes-case-3.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AICAN-Research/FAST-Pathology/HEAD/misc/inference_study/results/neural-network-runtimes-case-3.csv -------------------------------------------------------------------------------- /misc/inference_study/results/neural-network-runtimes-case-3a.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AICAN-Research/FAST-Pathology/HEAD/misc/inference_study/results/neural-network-runtimes-case-3a.csv -------------------------------------------------------------------------------- /misc/inference_study/results/neural-network-runtimes-case-4-odac.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AICAN-Research/FAST-Pathology/HEAD/misc/inference_study/results/neural-network-runtimes-case-4-odac.csv -------------------------------------------------------------------------------- /misc/inference_study/results/neural-network-runtimes-case-4.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AICAN-Research/FAST-Pathology/HEAD/misc/inference_study/results/neural-network-runtimes-case-4.csv -------------------------------------------------------------------------------- /misc/inference_study/results/neural-network-runtimes-case-5.csv: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /misc/inference_study/results_windows/neural-network-runtimes-case-1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AICAN-Research/FAST-Pathology/HEAD/misc/inference_study/results_windows/neural-network-runtimes-case-1.csv -------------------------------------------------------------------------------- /misc/inference_study/results_windows/neural-network-runtimes-case-1_inceptionv3.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AICAN-Research/FAST-Pathology/HEAD/misc/inference_study/results_windows/neural-network-runtimes-case-1_inceptionv3.csv -------------------------------------------------------------------------------- /misc/inference_study/results_windows2/neural-network-runtimes-case-1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AICAN-Research/FAST-Pathology/HEAD/misc/inference_study/results_windows2/neural-network-runtimes-case-1.csv -------------------------------------------------------------------------------- /misc/inference_study/results_windows2/neural-network-runtimes-case-1_inceptionv3.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AICAN-Research/FAST-Pathology/HEAD/misc/inference_study/results_windows2/neural-network-runtimes-case-1_inceptionv3.csv -------------------------------------------------------------------------------- /misc/inference_study/statistical_analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AICAN-Research/FAST-Pathology/HEAD/misc/inference_study/statistical_analysis.py -------------------------------------------------------------------------------- /misc/inference_study/test_latex_table.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AICAN-Research/FAST-Pathology/HEAD/misc/inference_study/test_latex_table.txt -------------------------------------------------------------------------------- /misc/qtres.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AICAN-Research/FAST-Pathology/HEAD/misc/qtres.cpp -------------------------------------------------------------------------------- /misc/qtres.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AICAN-Research/FAST-Pathology/HEAD/misc/qtres.qrc -------------------------------------------------------------------------------- /source/gui/ExportTab/ExportWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AICAN-Research/FAST-Pathology/HEAD/source/gui/ExportTab/ExportWidget.cpp -------------------------------------------------------------------------------- /source/gui/ExportTab/ExportWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AICAN-Research/FAST-Pathology/HEAD/source/gui/ExportTab/ExportWidget.h -------------------------------------------------------------------------------- /source/gui/MainSidePanelWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AICAN-Research/FAST-Pathology/HEAD/source/gui/MainSidePanelWidget.cpp -------------------------------------------------------------------------------- /source/gui/MainSidePanelWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AICAN-Research/FAST-Pathology/HEAD/source/gui/MainSidePanelWidget.h -------------------------------------------------------------------------------- /source/gui/MainWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AICAN-Research/FAST-Pathology/HEAD/source/gui/MainWindow.cpp -------------------------------------------------------------------------------- /source/gui/MainWindow.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AICAN-Research/FAST-Pathology/HEAD/source/gui/MainWindow.hpp -------------------------------------------------------------------------------- /source/gui/ProcessTab/PipelineScriptEditorWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AICAN-Research/FAST-Pathology/HEAD/source/gui/ProcessTab/PipelineScriptEditorWidget.cpp -------------------------------------------------------------------------------- /source/gui/ProcessTab/PipelineScriptEditorWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AICAN-Research/FAST-Pathology/HEAD/source/gui/ProcessTab/PipelineScriptEditorWidget.h -------------------------------------------------------------------------------- /source/gui/ProcessTab/ProcessWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AICAN-Research/FAST-Pathology/HEAD/source/gui/ProcessTab/ProcessWidget.cpp -------------------------------------------------------------------------------- /source/gui/ProcessTab/ProcessWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AICAN-Research/FAST-Pathology/HEAD/source/gui/ProcessTab/ProcessWidget.h -------------------------------------------------------------------------------- /source/gui/ProjectTab/ProjectThumbnailPushButton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AICAN-Research/FAST-Pathology/HEAD/source/gui/ProjectTab/ProjectThumbnailPushButton.cpp -------------------------------------------------------------------------------- /source/gui/ProjectTab/ProjectThumbnailPushButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AICAN-Research/FAST-Pathology/HEAD/source/gui/ProjectTab/ProjectThumbnailPushButton.h -------------------------------------------------------------------------------- /source/gui/ProjectTab/ProjectWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AICAN-Research/FAST-Pathology/HEAD/source/gui/ProjectTab/ProjectWidget.cpp -------------------------------------------------------------------------------- /source/gui/ProjectTab/ProjectWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AICAN-Research/FAST-Pathology/HEAD/source/gui/ProjectTab/ProjectWidget.h -------------------------------------------------------------------------------- /source/gui/SplashWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AICAN-Research/FAST-Pathology/HEAD/source/gui/SplashWidget.cpp -------------------------------------------------------------------------------- /source/gui/SplashWidget.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AICAN-Research/FAST-Pathology/HEAD/source/gui/SplashWidget.hpp -------------------------------------------------------------------------------- /source/gui/StatsTab/StatsWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AICAN-Research/FAST-Pathology/HEAD/source/gui/StatsTab/StatsWidget.cpp -------------------------------------------------------------------------------- /source/gui/StatsTab/StatsWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AICAN-Research/FAST-Pathology/HEAD/source/gui/StatsTab/StatsWidget.h -------------------------------------------------------------------------------- /source/gui/ViewTab/ViewWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AICAN-Research/FAST-Pathology/HEAD/source/gui/ViewTab/ViewWidget.cpp -------------------------------------------------------------------------------- /source/gui/ViewTab/ViewWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AICAN-Research/FAST-Pathology/HEAD/source/gui/ViewTab/ViewWidget.h -------------------------------------------------------------------------------- /source/logic/Project.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AICAN-Research/FAST-Pathology/HEAD/source/logic/Project.cpp -------------------------------------------------------------------------------- /source/logic/Project.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AICAN-Research/FAST-Pathology/HEAD/source/logic/Project.h -------------------------------------------------------------------------------- /source/logic/WholeSlideImage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AICAN-Research/FAST-Pathology/HEAD/source/logic/WholeSlideImage.cpp -------------------------------------------------------------------------------- /source/logic/WholeSlideImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AICAN-Research/FAST-Pathology/HEAD/source/logic/WholeSlideImage.h -------------------------------------------------------------------------------- /source/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AICAN-Research/FAST-Pathology/HEAD/source/main.cpp -------------------------------------------------------------------------------- /source/utils/qutilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AICAN-Research/FAST-Pathology/HEAD/source/utils/qutilities.h -------------------------------------------------------------------------------- /source/utils/utilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AICAN-Research/FAST-Pathology/HEAD/source/utils/utilities.h --------------------------------------------------------------------------------