Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/scikit-surgery/scikit-surgery
SciKit-Surgery - Compact Libraries for Surgical Navigation
https://github.com/scikit-surgery/scikit-surgery
python scikit scikit-surgery surgery
Last synced: 2 months ago
JSON representation
SciKit-Surgery - Compact Libraries for Surgical Navigation
- Host: GitHub
- URL: https://github.com/scikit-surgery/scikit-surgery
- Owner: SciKit-Surgery
- License: other
- Created: 2020-04-28T12:51:50.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2022-11-30T13:22:13.000Z (about 2 years ago)
- Last Synced: 2023-08-06T00:33:46.482Z (over 1 year ago)
- Topics: python, scikit, scikit-surgery, surgery
- Language: Python
- Homepage: http://scikit-surgery.github.io/scikit-surgery/
- Size: 5.56 MB
- Stars: 28
- Watchers: 6
- Forks: 6
- Open Issues: 6
-
Metadata Files:
- Readme: README.rst
- Contributing: CONTRIBUTING.rst
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
- Citation: CITATION.cff
Awesome Lists containing this project
README
scikit-surgery
===============================.. image:: https://github.com/UCL/scikit-surgery/raw/master/weiss_logo.png
:height: 128px
:width: 128px
:target: https://github.com/UCL/scikit-surgery|
.. image:: https://readthedocs.org/projects/scikit-surgery/badge/?version=latest
:target: http://scikit-surgery.readthedocs.io/en/latest/?badge=latest
:alt: Documentation Status.. image:: https://img.shields.io/badge/Cite-SciKit--Surgery-informational
:target: https://doi.org/10.1007/s11548-020-02180-5
:alt: The SciKit-Surgery paper.. image:: https://img.shields.io/twitter/url?style=social&url=http%3A%2F%2Fscikit-surgery.org
:target: https://twitter.com/intent/tweet?screen_name=scikit_surgery&ref_src=twsrc%5Etfw
:alt: Get in touch via twitter.. image:: https://img.shields.io/twitter/follow/scikit_surgery?style=social
:target: https://twitter.com/scikit_surgery?ref_src=twsrc%5Etfw
:alt: Follow scikit_surgery on twitter.. introduction-start
SciKit-Surgery is a collection of compact libraries developed for surgical navigation. Individual libraries can
be combined using Python to create clinical applications for translational research. However because each application's requirements are unique the individual SciKit-Surgery libraries are kept independent, enabling them to be maintained, modified and combined in new ways to create new clinical applications. Keeping the libraries independent enables researchers to implement novel algorithms within a small library that can be readily reused and built on by the research community.A typical clinical application might consist of an imaging source (e.g. `SciKit-SurgeryBK`_ to stream ultrasound images), a tracking source (e.g. `SciKitSurgery-NDITracker`_) to locate the images in space, an image processor (e.g. `SciKit-SurgeryTorch`_) to segment anatomy from the image, and a visualisation layer (e.g. `SciKit-SurgeryVTK`_)
SciKit-Surgery is developed at the `Wellcome EPSRC Centre for Interventional and Surgical Sciences `_, part of `University College London (UCL) `_.
.. introduction-end
.. features-start
Packages
--------* `scikit-surgerycore `_ - Algorithms/tools common to all scikit-surgery packages
* `scikit-surgeryimage `_ - Image processing algorithms using OpenCV
* `scikit-surgeryvtk `_ - Implements VTK functionality for IGS applications
* `scikit-surgeryutils `_ - Example applications/utilities
* `scikit-surgerycalibration `_ - Calibration algorithms (camera/pointer/ultrasound etc)
* `scikit-surgerysurfacematch `_ - Stereo reconstruction and point cloud matching
* `scikit-surgerytf `_ - IGS models implemented in TensorFlow
* `scikit-surgerytorch `_ - IGS models implemented in PyTorch
* `scikit-surgerynditracker `_ - Interface for Northern Digital (NDI) trackers. Vicra, Spectra, Vega, Aurora.
* `scikit-surgeryarucotracker `_ - Interface for OpenCV ARuCo.
* `scikit-surgeryspeech `_ - Speech/Wakeword detection.. features-end
Please see `Documentation`_ for further module details.
.. tutorial-start
Tutorials
---------
Tutorials are split into three groups, those that show how to assemble SciKit-Surgery libraries into an application, those that concentrate on the workings a single application, and those that are aimed at general education in image guided interventions using SciKit-Surgery.**General Tutorials**
* `Use SciKit-SurgeryUtils and SciKit-SurgeryArUcoTracker to build an AR application using your webcam. `_
* `ROS Integration `_
**scikit-surgeryvtk*** `How To Use VTKOverlayWindow `_
* `How To Add Text To VTKOverlayWindow `_
* `Using The Rendering Generator `_* `Distance Fields & Voxelisation `_
**scikit-surgeryimage**
* `Point/Chessboard detectors `_
**scikit-surgerycalibration**
`* Camera Calibration `_
**Educational Tutorials**
* `Use a ready made application to investigate different ways of presenting augmented reality. `_
* `Improve your impact by creating high quality software implementations of your research. `_
* `Camera calibration using your phone or webcam. `_
* `Make and Calibrate a Pointer. `_
* `Online Fiducial Registration Tutorial. `_
* `Point Based Registration using Lego or anatomical phantoms. `_
* `Camera Calibration of Laparoscopes `_.. tutorial-end
Encountering Problems?
-----------------------
Please check list of `common issues`_.Contributing
------------Please see the `contributing guidelines`_.
Useful links
------------* `Source code repository`_
* `Documentation`_Licensing and copyright
-----------------------Copyright 2018 University College London.
scikit-surgery is released under the BSD-3 license. Please see the `license file`_ for details.Acknowledgements
----------------Supported by `Wellcome`_ and `EPSRC`_.
.. _`Wellcome EPSRC Centre for Interventional and Surgical Sciences`: http://www.ucl.ac.uk/weiss
.. _`source code repository`: https://github.com/UCL/scikit-surgery
.. _`Documentation`: https://scikit-surgery.readthedocs.io
.. _`SciKit-Surgery`: https://github.com/UCL/scikit-surgery/wiki
.. _`University College London (UCL)`: http://www.ucl.ac.uk/
.. _`Wellcome`: https://wellcome.ac.uk/
.. _`EPSRC`: https://www.epsrc.ac.uk/
.. _`contributing guidelines`: https://github.com/UCL/scikit-surgery/blob/master/CONTRIBUTING.rst
.. _`license file`: https://github.com/UCL/scikit-surgery/blob/master/LICENSE
.. _`common issues`: https://github.com/UCL/scikit-surgery/issues
.. _`SciKit-SurgeryBK`: https://github.com/UCL/scikit-surgerybk
.. _`SciKit-SurgeryVTK`: https://github.com/UCL/scikit-surgeryvtk
.. _`SciKitSurgery-NDITracker`: https://github.com/UCL/scikit-surgerynditracker
.. _`SciKit-SurgeryTorch`: https://github.com/UCL/scikit-surgerytorch