https://github.com/jesperancinha/multi-image-comparer
Implements most common used methods for image comparison with the goal of making a case study between the different proposed algorithms
https://github.com/jesperancinha/multi-image-comparer
Last synced: 7 months ago
JSON representation
Implements most common used methods for image comparison with the goal of making a case study between the different proposed algorithms
- Host: GitHub
- URL: https://github.com/jesperancinha/multi-image-comparer
- Owner: jesperancinha
- License: apache-2.0
- Created: 2015-11-05T23:52:24.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2024-09-14T13:07:23.000Z (about 1 year ago)
- Last Synced: 2025-01-21T21:32:18.655Z (9 months ago)
- Language: Go
- Size: 124 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: Readme.md
- License: LICENSE
Awesome Lists containing this project
README
# multi-image-comparer
[](https://github.com/jesperancinha/multi-image-comparer)
[](https://www.apache.org/licenses/LICENSE-2.0)
[](https://github.com/jesperancinha/multi-image-comparer/actions/workflows/multi-image-comparer.yml)
[](https://www.codacy.com/app/jofisaes/multi-image-comparer?utm_source=github.com&utm_medium=referral&utm_content=jesperancinha/multi-image-comparer&utm_campaign=Badge_Grade)
[](https://codebeat.co/projects/github-com-jesperancinha-multi-image-comparer-master)[](https://www.codacy.com/gh/jesperancinha/multi-image-comparer/dashboard?utm_source=github.com&utm_medium=referral&utm_content=jesperancinha/multi-image-comparer&utm_campaign=Badge_Coverage)
[](https://coveralls.io/github/jesperancinha/multi-image-comparer?branch=master)
[](https://codecov.io/gh/jesperancinha/multi-image-comparer)[](#)
[](#)
[](#)---
## Technologies used
Please check the [TechStack.md](TechStack.md) file for details.
## How to build
```shell
go get -t -v github.com/stretchr/testify/assert
```Check that the GO properties are correctly set:
### 1. MAC-OS
```shell
GOPATH=/Users//go
GOROOT=/usr/local/opt/go/libexec
GO111MODULE=auto
```>GO111MODULE can be unset in most test cases.
## How to run
Go to points directory:
```shell
cd pearson-correlation-coefficient
```or
```shell
cd pearson-correlation-coefficient
```### 1. Test
```shell
go test
```### 2. Coverage
```shell
go test --cover
```
### 3. Coverage with .out file```shell
go test -coverprofile=coverage.out
```### 4. Coverage with .html file
```shell
go test -coverprofile=coverage.out && go tool cover -html=coverage.out
```## How to install Go Lang
```shell
brew install golang
```## References
- [How To Install Go and Set Up a Local Programming Environment on Ubuntu 18.04](https://www.digitalocean.com/community/tutorials/how-to-install-go-and-set-up-a-local-programming-environment-on-ubuntu-18-04)
- [How To Install and Set Up a Local Programming Environment for Go](https://www.digitalocean.com/community/tutorial_series/how-to-install-and-set-up-a-local-programming-environment-for-go)## About me
[](https://github.com/jesperancinha)