An open API service indexing awesome lists of open source software.

https://github.com/bbuchsbaum/imfeatures

image feature representations from neural network models
https://github.com/bbuchsbaum/imfeatures

Last synced: 5 months ago
JSON representation

image feature representations from neural network models

Awesome Lists containing this project

README

          

---
output: github_document
---

```{r, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/README-",
out.width = "100%"
)
```

# imfeatures

[![R-CMD-check](https://github.com/bbuchsbaum/imfeatures/actions/workflows/R-CMD-check.yaml/badge.svg)](https://github.com/bbuchsbaum/imfeatures/actions/workflows/R-CMD-check.yaml)
[![Codecov coverage](https://codecov.io/gh/bbuchsbaum/imfeatures/branch/main/graph/badge.svg)](https://app.codecov.io/gh/bbuchsbaum/imfeatures)

The goal of imfeatures is to ...

## Get started

Install the development version from [GitHub](https://github.com/) with:

``` r
# install.packages("devtools")
devtools::install_github("bbuchsbaum/imfeatures")
```

## Cookbook

This is a basic example which shows you how to solve a common problem:

```{r example}
library(imfeatures)
## basic example code
im1 = "testdata/1_A_1.jpeg"
im2 = "testdata/1_B_1.jpeg"

im_feature_sim(c(im1,im2), layers=c(1,2,3))
```