https://github.com/jeffreypullin/blinded
Blindly rate a series of images in R
https://github.com/jeffreypullin/blinded
Last synced: about 1 year ago
JSON representation
Blindly rate a series of images in R
- Host: GitHub
- URL: https://github.com/jeffreypullin/blinded
- Owner: jeffreypullin
- License: other
- Created: 2020-02-17T04:13:00.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2020-05-11T06:57:14.000Z (about 6 years ago)
- Last Synced: 2025-01-29T18:11:18.572Z (over 1 year ago)
- Language: R
- Homepage:
- Size: 12.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Blinded :see_no_evil:
**blinded** is desinged to faciliate the task of
rating a set of images blindly - that is without knowledge of any
characteristics of the image.
This task is complicated by the fact that images are generally stored with
filenames that contain information about the image. This may also mean
that the ordering of images in a file system is affected by
chracteristics of the images.
To circumvent these issues **blinded** provides the function `rate_blindly()`.
Running `rate_blindly()` on a directory of images will open the images and
allow ratings to be entered. The images will be opened **without showing filenames**
and in a **random** order.
## Caveat
**blinded** currently depends on **magick**'s integration with RStudio's viewer
pane to display images. This means that **blinded** will not work in other
R editing environements.
## Install
To install the package run:
```r
# install.packages("remotes")
remotes::install_github("jeffreypullin/blinded")
```