https://github.com/gzt/rmsssim
Implementation of the MS-SSIM image comparison metric in R
https://github.com/gzt/rmsssim
image-processing ms-ssim r
Last synced: about 1 month ago
JSON representation
Implementation of the MS-SSIM image comparison metric in R
- Host: GitHub
- URL: https://github.com/gzt/rmsssim
- Owner: gzt
- License: gpl-3.0
- Created: 2018-12-14T05:54:26.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2019-03-24T02:20:53.000Z (over 7 years ago)
- Last Synced: 2025-01-20T06:47:18.900Z (over 1 year ago)
- Topics: image-processing, ms-ssim, r
- Language: R
- Size: 34.2 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.Rmd
- Contributing: .github/CONTRIBUTING.md
- License: LICENSE.md
- Code of conduct: .github/CODE_OF_CONDUCT.md
- Support: .github/SUPPORT.md
Awesome Lists containing this project
README
---
output: github_document
---
```{r setup, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/README-",
out.width = "100%"
)
```
# rmsssim
[](https://www.tidyverse.org/lifecycle/#experimental)
[](https://travis-ci.org/gzt/rmsssim)
[](https://codecov.io/github/gzt/rmsssim?branch=master)
The goal of `rmsssim` is to provide an R interface for the MS-SSIM image comparison metric. This was not written by me, `gzt`, this was imported from [spatialcompare](https://github.com/colinr23/spatialcompare), which has a number of other
functions I am not interested in and some dependencies that no longer work for me.
This package depends on [raster](https://cran.r-project.org/package=raster).
## Installation
You can install this from github with:
``` r
#install.packages('devtools')
devtools::install_github('gzt/rmsssim')
```
Installing this may still be a bit frustrating, as `rgdal` is non-trivial to get working.
On Fedora, make sure to run `dnf install proj proj-epsg proj-devel gdal gdal-devel` first.
On other systems, change the commands accordingly. This
[StackOverflow answer](https://stackoverflow.com/questions/15248815/rgdal-package-installation)
has some guidance.
Please note that the 'rmsssim' project is released with a [Contributor Code of Conduct](.github/CODE_OF_CONDUCT.md). By contributing to this project, you agree to abide by its terms.