Skip to content
Snippets Groups Projects
Commit db70eff6 authored by s224362's avatar s224362
Browse files

merging into main

parents 67169bfd c88c0c77
No related branches found
No related tags found
No related merge requests found
File added
data/baika_slice.png

107 KiB

File added
data/bipes_slice.png

57.4 KiB

File added
data/test_image.jpg

84.7 KiB

import sys
from PyQt5.QtWidgets import QApplication
from mainWindow import MainWindow
def main():
app = QApplication(sys.argv)
window = MainWindow()
window.show()
sys.exit(app.exec_())
if __name__ == "__main__":
main()
\ No newline at end of file
numpy>=1.23.3
opencv_python>=4.9.0.80
PyQt5>=5.15.11
PyQt5_sip>=12.11.1
scipy>=1.15.1
scikit-image>=0.23.2
setup.py 0 → 100644
from setuptools import find_packages, setup
# Read the contents of your README file
with open("README.md", "r", encoding="utf-8") as f:
long_description = f.read()
setup(
name="ast2d",
version="0.1.0",
author="Aske T. Rove, Christian L. Bjerregaard, Mikkel W. Breinstrup",
author_email="s224362@dtu.dk, s224389@dtu.dk, s224361@dtu.dk",
description="Interactive path tracing in 2D medical images",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://lab.compute.dtu.dk/QIM/tools/tracing_sutures",
packages=find_packages(),
include_package_data=True,
entry_points = {
'console_scripts': [
'ast2d=ast2d:main'
]
},
classifiers=[
"License :: MIT License",
"Programming Language :: Python :: 3",
"Development Status :: 3 - Alpha",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"Natural Language :: English",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Image Processing",
"Topic :: Scientific/Engineering :: Visualization",
"Topic :: Software Development :: User Interfaces",
],
python_requires=">=3.10",
install_requires=[
"numpy<=1.26.4",
"opencv_python>=4.9.0.80",
"PyQt5>=5.15.11",
"PyQt5_sip>=12.11.1",
"scipy>=1.15.1",
"scikit-image>=0.23.2"
]
)
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment