-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This creates an abstract `AbstractColorChannels` type and two types, `ColorChannels` and `ColorMixture`. `ColorChannels` is a "bare" multichannel color that lacks conversion to other color types; it is intended to be used in conjunction with MappedArrays if one wishes to visualize these as RGB images. `ColorMixture` is the weighted-RGB color type.
- Loading branch information
Showing
9 changed files
with
139 additions
and
82 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
name = "FluorophoreColors" | ||
name = "MultichannelColors" | ||
uuid = "d4071afc-4203-49ee-90bc-13ebeb18d604" | ||
authors = ["Tim Holy <[email protected]> and contributors"] | ||
version = "0.1.0" | ||
|
@@ -13,7 +13,7 @@ Reexport = "189a3867-3050-52da-a836-e630ba90ab69" | |
Requires = "ae029012-a4dd-5104-9daa-d747884805df" | ||
|
||
[compat] | ||
ColorTypes = "0.11.1" | ||
ColorTypes = "0.11.2" | ||
ColorVectorSpace = "0.9" | ||
Colors = "0.12" | ||
FixedPointNumbers = "0.8" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
[deps] | ||
Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4" | ||
FluorophoreColors = "d4071afc-4203-49ee-90bc-13ebeb18d604" | ||
MultichannelColors = "d4071afc-4203-49ee-90bc-13ebeb18d604" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,16 @@ | ||
using FluorophoreColors | ||
using MultichannelColors | ||
using Documenter | ||
|
||
DocMeta.setdocmeta!(FluorophoreColors, :DocTestSetup, :(using FluorophoreColors); recursive=true) | ||
DocMeta.setdocmeta!(MultichannelColors, :DocTestSetup, :(using MultichannelColors); recursive=true) | ||
|
||
makedocs(; | ||
modules=[FluorophoreColors], | ||
modules=[MultichannelColors], | ||
authors="Tim Holy <[email protected]> and contributors", | ||
repo="https://github.com/JuliaImages/FluorophoreColors.jl/blob/{commit}{path}#{line}", | ||
sitename="FluorophoreColors.jl", | ||
repo="https://github.com/JuliaImages/MultichannelColors.jl/blob/{commit}{path}#{line}", | ||
sitename="MultichannelColors.jl", | ||
format=Documenter.HTML(; | ||
prettyurls=get(ENV, "CI", "false") == "true", | ||
canonical="https://JuliaImages.github.io/FluorophoreColors.jl", | ||
canonical="https://JuliaImages.github.io/MultichannelColors.jl", | ||
assets=String[], | ||
), | ||
pages=[ | ||
|
@@ -19,6 +19,6 @@ makedocs(; | |
) | ||
|
||
deploydocs(; | ||
repo="github.com/JuliaImages/FluorophoreColors.jl", | ||
repo="github.com/JuliaImages/MultichannelColors.jl", | ||
devbranch="main", | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
```@meta | ||
CurrentModule = FluorophoreColors | ||
CurrentModule = MultichannelColors | ||
``` | ||
|
||
# FluorophoreColors | ||
# MultichannelColors | ||
|
||
Documentation for [FluorophoreColors](https://github.com/JuliaImages/FluorophoreColors.jl). | ||
Documentation for [MultichannelColors](https://github.com/JuliaImages/MultichannelColors.jl). | ||
|
||
```@index | ||
``` | ||
|
||
```@autodocs | ||
Modules = [FluorophoreColors] | ||
Modules = [MultichannelColors] | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters