You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+10-1Lines changed: 10 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -8,14 +8,23 @@ The main function `MTM.matchTemplates` returns the best predicted locations prov
8
8
9
9
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.
10
10
11
-
__** News **__ : You might be interested to test the newer python implementation which is more object-oriented and only relying on scikit-image and shapely.*
11
+
# News
12
+
- 03/03/2023 : Version 1.6.4 contributed by @bartleboeuf comes with speed enhancement thanks to parallelizing of the individual template searches.
13
+
Thanks for this first PR !!
14
+
- 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.*
Using pip in a python environment, `pip install Multi-Template-Matching`
16
19
Once installed, `import MTM`should work.
17
20
Example jupyter notebooks can be downloaded from the tutorial folder of the github repository and executed in the newly configured python environement.
18
21
22
+
## Install in dev mode
23
+
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.
24
+
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).
25
+
- 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
26
+
- the . just tell pip to look for the package to install in the current directory
27
+
19
28
# Documentation
20
29
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.
21
30
The [website](https://multi-template-matching.github.io/Multi-Template-Matching/) of the project contains some more general documentation.
0 commit comments