{"id":21994229,"url":"https://github.com/scikit-surgery/imshowtk","last_synced_at":"2025-03-23T04:13:26.970Z","repository":{"id":156220403,"uuid":"623516077","full_name":"SciKit-Surgery/imshowTk","owner":"SciKit-Surgery","description":"A zero dependency alternative to cv2.imshow()","archived":false,"fork":false,"pushed_at":"2024-03-12T13:11:58.000Z","size":63,"stargazers_count":0,"open_issues_count":1,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-03-03T17:15:58.019Z","etag":null,"topics":["opencv-python","tkinter"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/SciKit-Surgery.png","metadata":{"files":{"readme":"README.rst","changelog":null,"contributing":"CONTRIBUTING.rst","funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":"CITATION.cff","codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null}},"created_at":"2023-04-04T14:23:31.000Z","updated_at":"2023-05-02T10:38:17.000Z","dependencies_parsed_at":null,"dependency_job_id":"e73842a7-3e7b-4b22-ac2a-cf37f296fcff","html_url":"https://github.com/SciKit-Surgery/imshowTk","commit_stats":null,"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SciKit-Surgery%2FimshowTk","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SciKit-Surgery%2FimshowTk/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SciKit-Surgery%2FimshowTk/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SciKit-Surgery%2FimshowTk/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/SciKit-Surgery","download_url":"https://codeload.github.com/SciKit-Surgery/imshowTk/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":245052673,"owners_count":20553172,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["opencv-python","tkinter"],"created_at":"2024-11-29T21:08:02.924Z","updated_at":"2025-03-23T04:13:26.934Z","avatar_url":"https://github.com/SciKit-Surgery.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"imshowTk\n===============================\n\n.. image:: https://github.com/SciKit-Surgery/imshowTk/raw/master/project-icon.png\n   :height: 128px\n   :width: 128px\n   :target: https://github.com/SciKit-Surgery/imshowTk\n   :alt: Logo\n\n|\n\n\n.. image:: https://github.com/SciKit-Surgery/imshowTk/workflows/.github/workflows/ci.yml/badge.svg\n   :target: https://github.com/SciKit-Surgery/imshowTk/actions/\n   :alt: GitHub CI test status\n\n.. image:: https://coveralls.io/repos/github/SciKit-Surgery/imshowTk/badge.svg?branch=master\u0026service=github\n    :target: https://coveralls.io/github/SciKit-Surgery/imshowTk?branch=master\n    :alt: Test coverage\n\n.. image:: https://readthedocs.org/projects/imshowTk/badge/?version=latest\n    :target: http://imshowTk.readthedocs.io/en/latest/?badge=latest\n    :alt: Documentation Status\n\n.. image:: https://img.shields.io/badge/Contributor%20Covenant-2.1-4baaaa.svg\n   :target: CODE_OF_CONDUCT.md\n\n.. image:: https://img.shields.io/badge/Cite-SciKit--Surgery-informational\n   :target: https://doi.org/10.1007/s11548-020-02180-5\n   :alt: The SciKit-Surgery paper\n\n.. image:: https://img.shields.io/twitter/follow/scikit_surgery?style=social\n   :target: https://twitter.com/scikit_surgery?ref_src=twsrc%5Etfw\n   :alt: Follow scikit_surgery on twitter\n\n\nAuthor: Stephen Thompson\n\nimshowTk is a zero dependency alternative to opencv's imshow function. It was developed to allow us to show an image window when using opencv-headless and don't want to use a larger UI library. It uses tkinter which comes as standard in most Python installations.\n\nimshowTk is part of the `SciKit-Surgery`_ software project, developed at the `Wellcome EPSRC Centre for Interventional and Surgical Sciences`_, part of `University College London (UCL)`_.\n\nBasic use case\n::\n\n    from from imshowtk.imshowtk import ImshowTk\n    imshow = ImshowTk()\n    frame = cv2.imread('project-icon.png')\n    imshow.imshow(frame)\n    del imshow\n\n\nDeveloping\n----------\n\nCloning\n^^^^^^^\n\nYou can clone the repository using the following command:\n\n::\n\n    git clone https://github.com/SciKit-Surgery/imshowTk\n\n\nRunning tests\n^^^^^^^^^^^^^\nPytest is used for running unit tests:\n::\n\n    pip install pytest\n    python -m pytest\n\n\nLinting\n^^^^^^^\n\nThis code conforms to the PEP8 standard. Pylint can be used to analyse the code:\n\n::\n\n    pip install pylint\n    pylint --rcfile=tests/pylintrc imshowtk\n\n\nInstalling\n----------\n\nYou can pip install directly from the repository as follows:\n\n::\n\n    pip install git+https://github.com/SciKit-Surgery/imshowTk\n\n\n\nContributing\n^^^^^^^^^^^^\n\nPlease see the `contributing guidelines`_.\n\n\nUseful links\n^^^^^^^^^^^^\n\n* `Source code repository`_\n* `Documentation`_\n\n\nLicensing and copyright\n-----------------------\n\nCopyright 2023 University College London.\nimshowTk is released under the BSD-3 license. Please see the `license file`_ for details.\n\n\nAcknowledgements\n----------------\n\nSupported by `Wellcome`_ and `EPSRC`_.\n\n\n.. _`Wellcome EPSRC Centre for Interventional and Surgical Sciences`: http://www.ucl.ac.uk/weiss\n.. _`source code repository`: https://github.com/SciKit-Surgery/imshowTk\n.. _`Documentation`: https://imshowTk.readthedocs.io\n.. _`SciKit-Surgery`: https://github.com/SciKit-Surgery\n.. _`University College London (UCL)`: http://www.ucl.ac.uk/\n.. _`Wellcome`: https://wellcome.ac.uk/\n.. _`EPSRC`: https://www.epsrc.ac.uk/\n.. _`contributing guidelines`: https://github.com/SciKit-Surgery/imshowTk/blob/master/CONTRIBUTING.rst\n.. _`license file`: https://github.com/SciKit-Surgery/imshowTk/blob/master/LICENSE\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fscikit-surgery%2Fimshowtk","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fscikit-surgery%2Fimshowtk","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fscikit-surgery%2Fimshowtk/lists"}