Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/shotaochi/magickgui
an R package that provides GUI tools for interactive image processing with the R package 'magick'
https://github.com/shotaochi/magickgui
gui image-processing magick r
Last synced: about 2 months ago
JSON representation
an R package that provides GUI tools for interactive image processing with the R package 'magick'
- Host: GitHub
- URL: https://github.com/shotaochi/magickgui
- Owner: ShotaOchi
- License: gpl-3.0
- Created: 2019-01-25T16:09:34.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2023-09-11T12:08:18.000Z (over 1 year ago)
- Last Synced: 2024-09-22T15:11:41.791Z (4 months ago)
- Topics: gui, image-processing, magick, r
- Language: R
- Homepage: https://CRAN.R-project.org/package=magickGUI
- Size: 161 KB
- Stars: 9
- Watchers: 3
- Forks: 1
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# magickGUI
[![Build Status](https://github.com/ShotaOchi/magickGUI/workflows/R-CMD-check/badge.svg)](https://github.com/ShotaOchi/magickGUI/actions)
[![CRAN Version](https://www.r-pkg.org/badges/version/magickGUI)](https://cran.r-project.org/package=magickGUI)
[![License: GPL v3](https://img.shields.io/badge/License-GPL%20v3-blue.svg)](https://www.gnu.org/licenses/gpl-3.0)
[![codecov](https://codecov.io/gh/ShotaOchi/magickGUI/branch/master/graph/badge.svg)](https://codecov.io/gh/ShotaOchi/magickGUI)## Note
magickGUI doesn't work on R 4.0.1 for Windows.
## Purpose
The purpose of magickGUI is to enable us to use the functions of the package 'magick' interactively.## Installation
you can install magickGUI from CRAN or GitHub.Run the following R code to install magickGUI.
```r
# install from CRAN
install.packages("magickGUI")
# install from Github
devtools::install_github("ShotaOchi/magickGUI")
```## Simple Demo
You can use image_threshold function of 'magick' interactively.Run the following code.
```r
library(magickGUI)
interactive_threshold(wizard)
```## Naming Rule
Just replace "image" with "interactive".For example, image_threshold → interactive_threshold.
## Contribution
You're welcome to create issues for any bug report or suggestion on the [issues page](https://github.com/ShotaOchi/magickGUI/issues).You can also fork this repository and send me a pull request for bug fixes or additional features.