diff options
author | CoprDistGit <infra@openeuler.org> | 2023-05-31 05:31:22 +0000 |
---|---|---|
committer | CoprDistGit <infra@openeuler.org> | 2023-05-31 05:31:22 +0000 |
commit | 9c422152761cb1149576fee29926f82f1ff76b84 (patch) | |
tree | 9690469ad2412cc26727372e6a92e5f1a15f6fe6 | |
parent | a1adddff14616072984f0a26ec77c9ee10020543 (diff) |
automatic import of python-multi-template-matching
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | python-multi-template-matching.spec | 281 | ||||
-rw-r--r-- | sources | 1 |
3 files changed, 283 insertions, 0 deletions
@@ -0,0 +1 @@ +/Multi-Template-Matching-1.6.4.tar.gz diff --git a/python-multi-template-matching.spec b/python-multi-template-matching.spec new file mode 100644 index 0000000..997d3a3 --- /dev/null +++ b/python-multi-template-matching.spec @@ -0,0 +1,281 @@ +%global _empty_manifest_terminate_build 0 +Name: python-Multi-Template-Matching +Version: 1.6.4 +Release: 1 +Summary: Object-recognition in images using multiple templates +License: GNU General Public License v3 (GPLv3) +URL: https://github.com/multi-template-matching/MultiTemplateMatching-Python +Source0: https://mirrors.nju.edu.cn/pypi/web/packages/4b/4e/2edd434ededa7d365ff072e63f749f4ea1e4dfa79acd034ad7b8fef77278/Multi-Template-Matching-1.6.4.tar.gz +BuildArch: noarch + +Requires: python3-numpy +Requires: python3-opencv-python-headless +Requires: python3-scikit-image +Requires: python3-scipy +Requires: python3-pandas + +%description +[](https://mybinder.org/v2/gh/multi-template-matching/MultiTemplateMatching-Python/master?filepath=tutorials)
+
+[](https://saythanks.io/to/laurent132.thomas@laposte.net)
+
+# Multi-Template-Matching
+Multi-Template-Matching is a python package to perform object-recognition in images using one or several smaller template images.
+The main function `MTM.matchTemplates` returns the best predicted locations provided either a score_threshold and/or the expected number of objects in the image.
+
+The branch opencl contains some test using the UMat object to run on GPU, but it is actually slow, which can be expected for small dataset as the transfer of the data between the CPU and GPU is slow.
+
+# News
+- 03/03/2023 : Version 1.6.4 contributed by @bartleboeuf comes with speed enhancement thanks to parallelizing of the individual template searches.
+Thanks for this first PR !!
+- 10/11/2021 : You might be interested to test the newer python implementation which is more object-oriented and only relying on scikit-image and shapely.*
+https://github.com/multi-template-matching/mtm-python-oop
+
+# Installation
+Using pip in a python environment, `pip install Multi-Template-Matching`
+Once installed, `import MTM`should work.
+Example jupyter notebooks can be downloaded from the tutorial folder of the github repository and executed in the newly configured python environement.
+
+## Install in dev mode
+If you want to contribute or experiment with the source code, you can install the package "from source", by first downloading or cloning the repo.
+Then opening a command prompt in the repo's root directory (the one containing this README) and calling `pip install -e .` (mind the final dot).
+- the `-e` flag stands for editable and make sure that any change to the source code will be directly reflected when you import the package in your script
+- the . just tell pip to look for the package to install in the current directory
+
+# Documentation
+The [wiki](https://github.com/multi-template-matching/MultiTemplateMatching-Python/wiki) section of the repo contains a mini API documentation with description of the key functions of the package.
+The [website](https://multi-template-matching.github.io/Multi-Template-Matching/) of the project contains some more general documentation.
+
+
+# Examples
+Check out the [jupyter notebook tutorial](https://github.com/multi-template-matching/MultiTemplateMatching-Python/tree/master/tutorials) for some example of how to use the package.
+You can run the tutorials online using Binder, no configuration needed ! (click the Binder banner on top of this page).
+To run the tutorials locally, install the package using pip as described above, then clone the repository and unzip it.
+Finally open a jupyter-notebook session in the unzipped folder to be able to open and execute the notebook.
+The [wiki](https://github.com/multi-template-matching/MultiTemplateMatching-Fiji/wiki) section of this related repository also provides some information about the implementation.
+
+# Citation
+If you use this implementation for your research, please cite:
+
+Thomas, L.S.V., Gehrig, J. Multi-template matching: a versatile tool for object-localization in microscopy images.
+BMC Bioinformatics 21, 44 (2020). https://doi.org/10.1186/s12859-020-3363-7
+
+Download the citation as a .ris file from the journal website, [here](https://bmcbioinformatics.biomedcentral.com/articles/10.1186/s12859-020-3363-7.ris).
+
+# Releases
+Previous github releases were archived to Zenodo, but the best is to use pip to install specific versions.
+[](https://zenodo.org/badge/latestdoi/197186256)
+
+# Related projects
+See this [repo](https://github.com/multi-template-matching/MultiTemplateMatching-Fiji) for the implementation as a Fiji plugin.
+[Here](https://nodepit.com/workflow/com.nodepit.space%2Flthomas%2Fpublic%2FMulti-Template%20Matching.knwf) for a KNIME workflow using Multi-Template-Matching.
+
+
+# Origin of the work
+This work has been part of the PhD project of **Laurent Thomas** under supervision of **Dr. Jochen Gehrig** at ACQUIFER.
+
+<img src="https://github.com/multi-template-matching/MultiTemplateMatching-Python/blob/master/images/Acquifer_Logo_60k_cmyk_300dpi.png" alt="ACQUIFER" width="400" height="80">
+
+# Funding
+This project has received funding from the European Union’s Horizon 2020 research and innovation program under the Marie Sklodowska-Curie grant agreement No 721537 ImageInLife.
+
+<p float="left">
+<img src="https://github.com/multi-template-matching/MultiTemplateMatching-Python/blob/master/images/ImageInlife.png" alt="ImageInLife" width="130" height="100">
+<img src="https://github.com/multi-template-matching/MultiTemplateMatching-Python/blob/master/images/MarieCurie.jpg" alt="MarieCurie" width="130" height="130">
+</p>
+ + +%package -n python3-Multi-Template-Matching +Summary: Object-recognition in images using multiple templates +Provides: python-Multi-Template-Matching +BuildRequires: python3-devel +BuildRequires: python3-setuptools +BuildRequires: python3-pip +%description -n python3-Multi-Template-Matching +[](https://mybinder.org/v2/gh/multi-template-matching/MultiTemplateMatching-Python/master?filepath=tutorials)
+
+[](https://saythanks.io/to/laurent132.thomas@laposte.net)
+
+# Multi-Template-Matching
+Multi-Template-Matching is a python package to perform object-recognition in images using one or several smaller template images.
+The main function `MTM.matchTemplates` returns the best predicted locations provided either a score_threshold and/or the expected number of objects in the image.
+
+The branch opencl contains some test using the UMat object to run on GPU, but it is actually slow, which can be expected for small dataset as the transfer of the data between the CPU and GPU is slow.
+
+# News
+- 03/03/2023 : Version 1.6.4 contributed by @bartleboeuf comes with speed enhancement thanks to parallelizing of the individual template searches.
+Thanks for this first PR !!
+- 10/11/2021 : You might be interested to test the newer python implementation which is more object-oriented and only relying on scikit-image and shapely.*
+https://github.com/multi-template-matching/mtm-python-oop
+
+# Installation
+Using pip in a python environment, `pip install Multi-Template-Matching`
+Once installed, `import MTM`should work.
+Example jupyter notebooks can be downloaded from the tutorial folder of the github repository and executed in the newly configured python environement.
+
+## Install in dev mode
+If you want to contribute or experiment with the source code, you can install the package "from source", by first downloading or cloning the repo.
+Then opening a command prompt in the repo's root directory (the one containing this README) and calling `pip install -e .` (mind the final dot).
+- the `-e` flag stands for editable and make sure that any change to the source code will be directly reflected when you import the package in your script
+- the . just tell pip to look for the package to install in the current directory
+
+# Documentation
+The [wiki](https://github.com/multi-template-matching/MultiTemplateMatching-Python/wiki) section of the repo contains a mini API documentation with description of the key functions of the package.
+The [website](https://multi-template-matching.github.io/Multi-Template-Matching/) of the project contains some more general documentation.
+
+
+# Examples
+Check out the [jupyter notebook tutorial](https://github.com/multi-template-matching/MultiTemplateMatching-Python/tree/master/tutorials) for some example of how to use the package.
+You can run the tutorials online using Binder, no configuration needed ! (click the Binder banner on top of this page).
+To run the tutorials locally, install the package using pip as described above, then clone the repository and unzip it.
+Finally open a jupyter-notebook session in the unzipped folder to be able to open and execute the notebook.
+The [wiki](https://github.com/multi-template-matching/MultiTemplateMatching-Fiji/wiki) section of this related repository also provides some information about the implementation.
+
+# Citation
+If you use this implementation for your research, please cite:
+
+Thomas, L.S.V., Gehrig, J. Multi-template matching: a versatile tool for object-localization in microscopy images.
+BMC Bioinformatics 21, 44 (2020). https://doi.org/10.1186/s12859-020-3363-7
+
+Download the citation as a .ris file from the journal website, [here](https://bmcbioinformatics.biomedcentral.com/articles/10.1186/s12859-020-3363-7.ris).
+
+# Releases
+Previous github releases were archived to Zenodo, but the best is to use pip to install specific versions.
+[](https://zenodo.org/badge/latestdoi/197186256)
+
+# Related projects
+See this [repo](https://github.com/multi-template-matching/MultiTemplateMatching-Fiji) for the implementation as a Fiji plugin.
+[Here](https://nodepit.com/workflow/com.nodepit.space%2Flthomas%2Fpublic%2FMulti-Template%20Matching.knwf) for a KNIME workflow using Multi-Template-Matching.
+
+
+# Origin of the work
+This work has been part of the PhD project of **Laurent Thomas** under supervision of **Dr. Jochen Gehrig** at ACQUIFER.
+
+<img src="https://github.com/multi-template-matching/MultiTemplateMatching-Python/blob/master/images/Acquifer_Logo_60k_cmyk_300dpi.png" alt="ACQUIFER" width="400" height="80">
+
+# Funding
+This project has received funding from the European Union’s Horizon 2020 research and innovation program under the Marie Sklodowska-Curie grant agreement No 721537 ImageInLife.
+
+<p float="left">
+<img src="https://github.com/multi-template-matching/MultiTemplateMatching-Python/blob/master/images/ImageInlife.png" alt="ImageInLife" width="130" height="100">
+<img src="https://github.com/multi-template-matching/MultiTemplateMatching-Python/blob/master/images/MarieCurie.jpg" alt="MarieCurie" width="130" height="130">
+</p>
+ + +%package help +Summary: Development documents and examples for Multi-Template-Matching +Provides: python3-Multi-Template-Matching-doc +%description help +[](https://mybinder.org/v2/gh/multi-template-matching/MultiTemplateMatching-Python/master?filepath=tutorials)
+
+[](https://saythanks.io/to/laurent132.thomas@laposte.net)
+
+# Multi-Template-Matching
+Multi-Template-Matching is a python package to perform object-recognition in images using one or several smaller template images.
+The main function `MTM.matchTemplates` returns the best predicted locations provided either a score_threshold and/or the expected number of objects in the image.
+
+The branch opencl contains some test using the UMat object to run on GPU, but it is actually slow, which can be expected for small dataset as the transfer of the data between the CPU and GPU is slow.
+
+# News
+- 03/03/2023 : Version 1.6.4 contributed by @bartleboeuf comes with speed enhancement thanks to parallelizing of the individual template searches.
+Thanks for this first PR !!
+- 10/11/2021 : You might be interested to test the newer python implementation which is more object-oriented and only relying on scikit-image and shapely.*
+https://github.com/multi-template-matching/mtm-python-oop
+
+# Installation
+Using pip in a python environment, `pip install Multi-Template-Matching`
+Once installed, `import MTM`should work.
+Example jupyter notebooks can be downloaded from the tutorial folder of the github repository and executed in the newly configured python environement.
+
+## Install in dev mode
+If you want to contribute or experiment with the source code, you can install the package "from source", by first downloading or cloning the repo.
+Then opening a command prompt in the repo's root directory (the one containing this README) and calling `pip install -e .` (mind the final dot).
+- the `-e` flag stands for editable and make sure that any change to the source code will be directly reflected when you import the package in your script
+- the . just tell pip to look for the package to install in the current directory
+
+# Documentation
+The [wiki](https://github.com/multi-template-matching/MultiTemplateMatching-Python/wiki) section of the repo contains a mini API documentation with description of the key functions of the package.
+The [website](https://multi-template-matching.github.io/Multi-Template-Matching/) of the project contains some more general documentation.
+
+
+# Examples
+Check out the [jupyter notebook tutorial](https://github.com/multi-template-matching/MultiTemplateMatching-Python/tree/master/tutorials) for some example of how to use the package.
+You can run the tutorials online using Binder, no configuration needed ! (click the Binder banner on top of this page).
+To run the tutorials locally, install the package using pip as described above, then clone the repository and unzip it.
+Finally open a jupyter-notebook session in the unzipped folder to be able to open and execute the notebook.
+The [wiki](https://github.com/multi-template-matching/MultiTemplateMatching-Fiji/wiki) section of this related repository also provides some information about the implementation.
+
+# Citation
+If you use this implementation for your research, please cite:
+
+Thomas, L.S.V., Gehrig, J. Multi-template matching: a versatile tool for object-localization in microscopy images.
+BMC Bioinformatics 21, 44 (2020). https://doi.org/10.1186/s12859-020-3363-7
+
+Download the citation as a .ris file from the journal website, [here](https://bmcbioinformatics.biomedcentral.com/articles/10.1186/s12859-020-3363-7.ris).
+
+# Releases
+Previous github releases were archived to Zenodo, but the best is to use pip to install specific versions.
+[](https://zenodo.org/badge/latestdoi/197186256)
+
+# Related projects
+See this [repo](https://github.com/multi-template-matching/MultiTemplateMatching-Fiji) for the implementation as a Fiji plugin.
+[Here](https://nodepit.com/workflow/com.nodepit.space%2Flthomas%2Fpublic%2FMulti-Template%20Matching.knwf) for a KNIME workflow using Multi-Template-Matching.
+
+
+# Origin of the work
+This work has been part of the PhD project of **Laurent Thomas** under supervision of **Dr. Jochen Gehrig** at ACQUIFER.
+
+<img src="https://github.com/multi-template-matching/MultiTemplateMatching-Python/blob/master/images/Acquifer_Logo_60k_cmyk_300dpi.png" alt="ACQUIFER" width="400" height="80">
+
+# Funding
+This project has received funding from the European Union’s Horizon 2020 research and innovation program under the Marie Sklodowska-Curie grant agreement No 721537 ImageInLife.
+
+<p float="left">
+<img src="https://github.com/multi-template-matching/MultiTemplateMatching-Python/blob/master/images/ImageInlife.png" alt="ImageInLife" width="130" height="100">
+<img src="https://github.com/multi-template-matching/MultiTemplateMatching-Python/blob/master/images/MarieCurie.jpg" alt="MarieCurie" width="130" height="130">
+</p>
+ + +%prep +%autosetup -n Multi-Template-Matching-1.6.4 + +%build +%py3_build + +%install +%py3_install +install -d -m755 %{buildroot}/%{_pkgdocdir} +if [ -d doc ]; then cp -arf doc %{buildroot}/%{_pkgdocdir}; fi +if [ -d docs ]; then cp -arf docs %{buildroot}/%{_pkgdocdir}; fi +if [ -d example ]; then cp -arf example %{buildroot}/%{_pkgdocdir}; fi +if [ -d examples ]; then cp -arf examples %{buildroot}/%{_pkgdocdir}; fi +pushd %{buildroot} +if [ -d usr/lib ]; then + find usr/lib -type f -printf "/%h/%f\n" >> filelist.lst +fi +if [ -d usr/lib64 ]; then + find usr/lib64 -type f -printf "/%h/%f\n" >> filelist.lst +fi +if [ -d usr/bin ]; then + find usr/bin -type f -printf "/%h/%f\n" >> filelist.lst +fi +if [ -d usr/sbin ]; then + find usr/sbin -type f -printf "/%h/%f\n" >> filelist.lst +fi +touch doclist.lst +if [ -d usr/share/man ]; then + find usr/share/man -type f -printf "/%h/%f.gz\n" >> doclist.lst +fi +popd +mv %{buildroot}/filelist.lst . +mv %{buildroot}/doclist.lst . + +%files -n python3-Multi-Template-Matching -f filelist.lst +%dir %{python3_sitelib}/* + +%files help -f doclist.lst +%{_docdir}/* + +%changelog +* Wed May 31 2023 Python_Bot <Python_Bot@openeuler.org> - 1.6.4-1 +- Package Spec generated @@ -0,0 +1 @@ +9eee8228ff159282dd8066b9f11d9bfc Multi-Template-Matching-1.6.4.tar.gz |