mergechannels 0.5.8__cp39-cp39-musllinux_1_2_x86_64.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,575 @@
1
+ Metadata-Version: 2.4
2
+ Name: mergechannels
3
+ Version: 0.5.8
4
+ Classifier: License :: OSI Approved :: MIT License
5
+ Classifier: Framework :: Matplotlib
6
+ Classifier: Programming Language :: Rust
7
+ Classifier: Programming Language :: Python :: Implementation :: CPython
8
+ Classifier: Programming Language :: Python :: 3
9
+ Classifier: Programming Language :: Python :: 3.9
10
+ Classifier: Programming Language :: Python :: 3.10
11
+ Classifier: Programming Language :: Python :: 3.11
12
+ Classifier: Programming Language :: Python :: 3.12
13
+ Classifier: Programming Language :: Python :: 3.13
14
+ Classifier: Programming Language :: Python :: 3.14
15
+ Classifier: Programming Language :: Python :: Free Threading
16
+ Requires-Dist: numpy>=1.25,<2.1 ; python_full_version == '3.9.*'
17
+ Requires-Dist: numpy>=1.25,<2.3 ; python_full_version == '3.10.*'
18
+ Requires-Dist: numpy>=1.25,<3 ; python_full_version == '3.11.*'
19
+ Requires-Dist: numpy>=1.26,<3 ; python_full_version == '3.12.*'
20
+ Requires-Dist: numpy>=2.0,<3 ; python_full_version == '3.13.*'
21
+ Requires-Dist: numpy>=2.4,<3 ; python_full_version == '3.14.*'
22
+ Requires-Dist: matplotlib>=3.5 ; extra == 'matplotlib'
23
+ Provides-Extra: matplotlib
24
+ License-File: LICENSE
25
+ Summary: Apply and merge colormaps
26
+ Author-email: Zac Swider <zac.swider@gmail.com>
27
+ License: MIT
28
+ Requires-Python: >=3.9, <3.15
29
+ Description-Content-Type: text/markdown; charset=UTF-8; variant=GFM
30
+
31
+ [![CI](https://github.com/zacswider/mergechannels/actions/workflows/CI.yml/badge.svg)](https://github.com/zacswider/mergechannels/actions/workflows/CI.yml)
32
+ ![PyPI - License](https://img.shields.io/pypi/l/mergechannels)
33
+ ![PyPI - Python Version](https://img.shields.io/pypi/pyversions/mergechannels)
34
+ ![PyPI](https://img.shields.io/pypi/v/mergechannels)
35
+
36
+ # mergechannels
37
+
38
+ This project was originally conceived because I often find myself wanting to apply and blend colormaps to images while working from Python, and many of my favorite colormaps are distributed as [FIJI](https://imagej.net/software/fiji/) lookup tables. I also care about things like speed and memory usage, so I was interested in seeing if I could at least match matplotlib's colormapping performance with my own hand-rolled colorizer in Rust (success! mergechannels is typically several times faster than matplotlib).
39
+
40
+ The current goal of this library is to be a simple, fast, and memory-efficient way to apply and blend colormaps to images. The api should be intuitive, flexible, and simple. If this is not the case in your hands, please open an issue.
41
+
42
+
43
+ ## Installation
44
+
45
+ Install pre-compiled binaries from [PyPI](https://pypi.org/project/mergechannels/):
46
+ ```bash
47
+ pip install mergechannels
48
+ ```
49
+
50
+ Build from source on your own machine (requires [Rust toolchain](https://rustup.rs/)):
51
+ ```bash
52
+ pip install git+https://github.com/zacswider/mergechannels.git
53
+ ```
54
+
55
+
56
+ ## Usage
57
+ *NOTE*: `skimage`, `matplotlib`, and `cmap` are not dependencies of this project, but are used in the examples below to fetch data/colormaps, and display images.
58
+
59
+
60
+ ### Apply a different colormap to each channel
61
+ The primary entrypoint for merging multiple channels is with `mergechannels.merge`. This function expects a sequence of arrays, a sequence of colormaps, a blending approach, and optionally a sequence of pre-determined saturation limits. The arrays are expected to be either u8 or u16 and 2 or 3D.
62
+
63
+ ```python
64
+ from skimage import data
65
+ import matplotlib.pyplot as plt
66
+ import mergechannels as mc
67
+
68
+ cells, nuclei = data.cells3d().max(axis=0)
69
+
70
+ fig, axes = plt.subplots(1, 3)
71
+ for ax in axes: ax.axis('off')
72
+ a, b, c = axes
73
+ a.imshow(cells, cmap='gray')
74
+ b.imshow(nuclei, cmap='gray')
75
+ c.imshow(mc.merge([cells, nuclei], ['Orange Hot', 'Cyan Hot']))
76
+ ```
77
+ ![simple channel blending](https://raw.githubusercontent.com/zacswider/README_Images/main/simple_channel_merge.png)
78
+
79
+ #### Using external colormaps
80
+ Colormaps can be the literal name of one of the colormaps compiled into the mergechannels binary (see a list as the bottom of the page), a matplotlib colormap, or a [cmap](https://pypi.org/project/cmap/) colormap. The example below creates a similar blending as above, but by explicitly passing pre-generated colormaps (one from the matplotlib library, one from the cmap library). These can also be combined with string literals.
81
+
82
+ ```python
83
+ import cmap
84
+ import matplotlib.pyplot as plt
85
+ from skimage import data
86
+ import mergechannels as mc
87
+
88
+ cells, nuclei = data.cells3d().max(axis=0)
89
+ blue = cmap.Colormap('seaborn:mako')
90
+ copper = plt.get_cmap('copper')
91
+
92
+ fig, axes = plt.subplots(1, 3)
93
+ for ax in axes: ax.axis('off')
94
+ a, b, c = axes
95
+ a.imshow(mc.apply_color_map(nuclei, blue))
96
+ b.imshow(mc.apply_color_map(cells, copper))
97
+ c.imshow(mc.merge([nuclei, cells], [blue, copper]))
98
+ ```
99
+ ![channel blending with external cmaps](https://raw.githubusercontent.com/zacswider/README_Images/main/external_cmaps.png)
100
+
101
+ #### Blending options
102
+ The `blending` argument to `mergechannels.merge` can be one of the following:
103
+ - `'max'`: the maximum RGB value of each pixel is used. This is the default (and intuitive) behavior.
104
+ - `'min'`: the minimum RGB value of each pixel is used. This is useful when combining inverted colormaps.
105
+ - `'mean'`: the mean RGB value of each pixel is used. This is typically most useful when combining fluorescence with brightfield, but can often require re-scaling the images after blending.
106
+ - `'sum'`: the sum of the RGB values of each pixel is used (saturating). Results in high saturation images but can often be overwhelming and difficult to interpret.
107
+
108
+ The default and intuitive behavior is the use `'max'` blending, but oftentimes minimum blending is desired when combining inverted colormaps.
109
+ ```python
110
+ from skimage import data
111
+ import matplotlib.pyplot as plt
112
+ import mergechannels as mc
113
+
114
+ cells, nuclei = data.cells3d().max(axis=0)
115
+ fig, axes = plt.subplots(1, 3, dpi=200)
116
+ for ax in axes: ax.axis('off')
117
+ a, b, c = axes
118
+ a.imshow(cells, cmap='gray')
119
+ b.imshow(nuclei, cmap='gray')
120
+ c.imshow(mc.merge([cells, nuclei],['I Blue', 'I Forest'], blending='min'))
121
+ ```
122
+ ![minimum blending with inverted colormaps](https://raw.githubusercontent.com/zacswider/README_Images/main/inverted_blending.png)
123
+
124
+ #### Control display brightness
125
+ If desired, pre-determined saturation limits can be passed to `apply_color_map` or `merge` to clip the images values to a range that best represents the contents of the image. These can be explicit pixel values passed with the `saturation_limits` argument, or as percentile values passed with the `percentiles` argument. If the latter, the percentile values will be used to calculate the saturation limits based on the distribution of pixel values in the images (this is sometimes referred to as "autoscaling"). The default behavior is to calculate use the 1.1th percentile value as the dark point and the 99.9th percentile as the bright point.
126
+
127
+ ```python
128
+ from skimage import data
129
+ import matplotlib.pyplot as plt
130
+ import mergechannels as mc
131
+
132
+ cells, nuclei = data.cells3d().max(axis=0)
133
+ channels = [cells, nuclei]
134
+ colormaps = ['I Blue', 'I Forest']
135
+ fig, axes = plt.subplots(1, 3, dpi=300)
136
+ for ax in axes: ax.axis('off')
137
+ (a, b, c) = axes
138
+ a.imshow(mc.merge(channels, colormaps, blending='min')) # use the default autoscaling
139
+ b.imshow(
140
+ mc.merge(
141
+ channels,
142
+ colormaps,
143
+ blending='min',
144
+ saturation_limits=[
145
+ (1000, 20_000), # pre-determined dark and light points for ch1
146
+ (1000, 50_000), # pre-determined dark and light points for ch2
147
+ ],
148
+ ),
149
+ )
150
+ c.imshow(
151
+ mc.merge(
152
+ channels,
153
+ colormaps,
154
+ blending='min',
155
+ percentiles=[(
156
+ 1, # bottom 1% of pixels set to black point
157
+ 97, # top 3% of pixels set to white point
158
+ )]*len(channels), # apply this to all channels
159
+ ),
160
+ )
161
+ ```
162
+ ![adjust the brightness with explicit or percentile based approaches](https://raw.githubusercontent.com/zacswider/README_Images/main/brightness_adjust.png)
163
+
164
+
165
+ NOTE: if you are already working with appropriately scaled u8 images, you will see ~10X performance improvements (relative to the mergechannels and matplotlib naive default implementations) by passing `saturation_limits=(0, 255)` as this significantly reduces the amount of arithmetic done per pixel.
166
+
167
+
168
+ ### apply a colormap to a whole stack
169
+ ```python
170
+ from skimage import data
171
+ from matplotlib import pyplot as plt
172
+ import mergechannels as mc
173
+
174
+ volume = data.cells3d()
175
+ cells = volume[:, 0]
176
+ nuclei = volume[:, 1]
177
+ merged = mc.merge([cells, nuclei],['Orange Hot', 'Cyan Hot'])
178
+ plt.imshow(merged[24]); plt.show()
179
+ ```
180
+ ![colorize a whole stack of images](https://raw.githubusercontent.com/zacswider/README_Images/main/merged_stacks.png)
181
+
182
+
183
+ ### colorize a single image
184
+ The primary entrypoint to applying a colormap to a single image is with `apply_color_map`. this function takes an array, a colormap, and an optional percentiles argument. The array is expected to be either u8 or u16 and 2 or 3D.
185
+
186
+ ```python
187
+ from skimage import data
188
+ import matplotlib.pyplot as plt
189
+ import mergechannels as mc
190
+
191
+ img = data.camera()
192
+ colorized = mc.apply_color_map(img, 'Red/Green')
193
+
194
+ fig, axes = plt.subplots(1, 2)
195
+ for ax in axes: ax.axis('off')
196
+ (a, b) = axes
197
+ a.imshow(img, cmap='gray')
198
+ b.imshow(colorized)
199
+ plt.show()
200
+ print(colorized.shape, colorized.dtype)
201
+ >> (512, 512, 3) uint8
202
+ ```
203
+ ![colorize a single image](https://raw.githubusercontent.com/zacswider/README_Images/main/camera_red-green.png)
204
+
205
+ Similar to `mergechannels.merge`, `apply_color_map` will also accept colormaps directly from `matplotlib` and `cmap`, explicit saturation limits, or percentile values for autoscaling.
206
+
207
+ ### export colormaps to matplotlib
208
+ If you want to use mergechannels' built-in colormaps with matplotlib directly, you can export them as `matplotlib.colors.ListedColormap` objects using `get_mpl_cmap`. This requires matplotlib to be installed, which can be done with the optional dependency:
209
+
210
+ ```bash
211
+ uv pip install matplotlib
212
+ ```
213
+ or:
214
+ ```bash
215
+ uv pip install "mergechannels[matplotlib]>=0.5.5"
216
+ ```
217
+
218
+ ```python
219
+ from skimage import data
220
+ import matplotlib.pyplot as plt
221
+ import mergechannels as mc
222
+
223
+ img = data.camera()
224
+
225
+ # Get a mergechannels colormap as a matplotlib ListedColormap
226
+ cmap = mc.get_mpl_cmap('Red/Green')
227
+
228
+ # Use it directly with matplotlib
229
+ fig, axes = plt.subplots(1, 2)
230
+ for ax in axes: ax.axis('off')
231
+ (a, b) = axes
232
+ a.imshow(img, cmap='gray')
233
+ b.imshow(img, cmap=cmap)
234
+ plt.show()
235
+ ```
236
+ ![colorize a single image](https://raw.githubusercontent.com/zacswider/README_Images/main/camera_red-green.png)
237
+
238
+
239
+ You can also retrieve the raw colormap data as a numpy array using `get_cmap_array`:
240
+
241
+ ```python
242
+ import mergechannels as mc
243
+
244
+ # Get the raw (256, 3) uint8 array of RGB values
245
+ cmap_array = mc.get_cmap_array('betterBlue')
246
+ print(cmap_array.shape, cmap_array.dtype)
247
+ >> (256, 3) uint8
248
+ ```
249
+
250
+
251
+ #### Overlay segmentation masks on top of colorized/merged channels
252
+ Both `apply_color_map` and `merge` support overlaying binary or instance masks on top of the colorized images. The examples below use `apply_color_map` but the arguments are identical for `merge`.
253
+
254
+ ```python
255
+ from skimage import data
256
+ from scipy import ndimage
257
+ from skimage.filters import threshold_otsu
258
+ import matplotlib.pyplot as plt
259
+
260
+ # get an image and create some masks
261
+ _, nuclei = data.cells3d().max(axis=0)
262
+ thresh = nuclei > threshold_otsu(nuclei)
263
+ thresh = ndimage.binary_fill_holes(thresh)
264
+ max_filter = ndimage.maximum_filter(thresh, size=3, mode='reflect')
265
+ min_filter = ndimage.minimum_filter(thresh, size=3, mode='reflect')
266
+ boundaries = max_filter != min_filter
267
+
268
+ # overlay the masks with mergechannels
269
+ import mergechannels as mc
270
+
271
+ fig, (a, b, c) = plt.subplots(1, 3, dpi=300)
272
+ for ax in (a, b, c): ax.axis('off')
273
+ a.imshow(mc.apply_color_map(nuclei, 'betterBlue')) # no overlay
274
+ b.imshow(mc.apply_color_map(nuclei, 'betterBlue', masks=[boundaries])) # add mask overlay
275
+ c.imshow(mc.apply_color_map(nuclei, 'betterBlue', masks=[boundaries], mask_colors=['#f00'])) # non-default color
276
+ plt.show()
277
+ ```
278
+ ![Overlay a single mask array with different color settings](https://raw.githubusercontent.com/zacswider/README_Images/main/overlay_masks.png)
279
+
280
+
281
+ Multiple masks can be overlaid with different color or alpha-blending values.
282
+
283
+ ```python
284
+ from skimage import (
285
+ data,
286
+ measure,
287
+ )
288
+ from scipy import ndimage
289
+ from skimage.filters import threshold_otsu
290
+ import numpy as np
291
+ import matplotlib.pyplot as plt
292
+
293
+ # get an image and create some masks
294
+ cells, nuclei = data.cells3d().max(axis=0)
295
+ thresh = nuclei > threshold_otsu(nuclei)
296
+ labels = np.asarray(measure.label(ndimage.binary_fill_holes(thresh)))
297
+ bright_nuclei_threshold = threshold_otsu(nuclei[thresh])
298
+ label_vals = [l for l in np.unique(labels) if l!=0]
299
+
300
+ # categorize two different types of nuclei masks
301
+ def only_keep_these_labels(arr, labels):
302
+ out = arr.copy()
303
+ mask = np.isin(out, labels)
304
+ out[~mask] = 0
305
+ return out
306
+
307
+ bright_nuclei_labels = [lv for lv in label_vals if nuclei[labels == lv].mean() > bright_nuclei_threshold ]
308
+ bright_nuclei_masks = only_keep_these_labels(
309
+ arr=labels,
310
+ labels=bright_nuclei_labels,
311
+ )
312
+ dim_nuclei_masks = only_keep_these_labels(
313
+ arr=labels,
314
+ labels=[lv for lv in label_vals if lv not in bright_nuclei_labels],
315
+ )
316
+
317
+ # overlay the masks with mergechannels
318
+ import mergechannels as mc
319
+
320
+ fig, (a, b, c) = plt.subplots(1, 3, dpi=300)
321
+ for ax in (a, b, c):
322
+ ax.axis('off')
323
+
324
+ a.imshow(bright_nuclei_masks, cmap=mc.get_mpl_cmap('glasbey'))
325
+ b.imshow(dim_nuclei_masks, cmap=mc.get_mpl_cmap('glasbey'))
326
+ c.imshow(
327
+ mc.apply_color_map(
328
+ arr=nuclei,
329
+ color='Grays',
330
+ masks=[bright_nuclei_masks, dim_nuclei_masks],
331
+ mask_colors=['betterOrange', 'betterBlue'],
332
+ mask_alphas=[0.2, 0.2],
333
+ )
334
+ ) # add mask overlay
335
+ plt.show()
336
+ ```
337
+ ![Overlay multiple mask arrays with different colors](https://raw.githubusercontent.com/zacswider/README_Images/main/overlay_masks_different_color.png)
338
+
339
+
340
+ Mask color specifications accept:
341
+ - Colormap names (see an exhaustive list at the bottom of README or print mergechannels.COLORMAPS)
342
+ - Hex strings (e.g., `'#FF0000'`)
343
+ - RGB tuples or sequences (e.g., `(255, 0, 0)` or `[255, 0, 0]`)
344
+
345
+
346
+ ## Dependencies
347
+ Mergechannels only depends on numpy, a matrix of compatible versions is shown below. Mergechannels can also interop with matplotlib and cmap (see the `Usage` sections below), but these dependencies are optional for core functionality.
348
+
349
+ | Python | 1.25.0 | 1.26.0 | 2.0.0 | 2.1.0 | 2.2.0 | 2.3.0 | 2.4.0 |
350
+ |--------|--------|--------|-------|-------|-------|-------|-------|
351
+ | 3.9 | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | ❌ |
352
+ | 3.10 | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ | ❌ |
353
+ | 3.11 | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ |
354
+ | 3.12 | ❌ | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ |
355
+ | 3.13 | ❌ | ❌ | ✅ | ✅ | ✅ | ✅ | ✅ |
356
+ | 3.14 | ❌ | ❌ | ❌ | ❌ | ❌ | ❌ | ✅ |
357
+ | 3.14t | ❌ | ❌ | ❌ | ❌ | ❌ | ❌ | ✅ |
358
+
359
+
360
+ ## Threading and Parallelism
361
+ Mergechannels is fully compatible with free-threaded Python (3.13t/3.14t). The extension declares itself thread-safe (`gil_used(false)`), so it won't re-enable the GIL in no-GIL builds, enabling true parallelism with Python's `ThreadPoolExecutor`.
362
+
363
+ By default, `parallel=True` uses [Rayon](https://github.com/rayon-rs/rayon) for internal parallelization across image rows/planes. This also works well alongside Python threading.
364
+
365
+ To configure Rayon's thread count, set the `RAYON_NUM_THREADS` environment variable **before** importing mergechannels:
366
+ ```python
367
+ import os
368
+ os.environ['RAYON_NUM_THREADS'] = '4' # Must be set before import
369
+ import mergechannels as mc
370
+ ```
371
+
372
+
373
+ ## Performance
374
+
375
+ Benchmarks show that with appropriately scaled images, (i.e., if pre-determined saturation limits are passed to `mc.merge` or `mc.apply_color_map`) mergechannel is either on par or significantly faster than the underlying numpy operations used by Matplotlib. Note: you can run the benchmarks on your own machine by creating a virtual environment with the dev dependencies `uv sync --dev && source .venv/bin/activate` and running the benchmark code `py.test --benchmark-only`
376
+
377
+ ## Roadmap
378
+ - ~~Add support to u8 and u16 images~~
379
+ - Add support for any numerical dtype
380
+ - ~~Add option to return any colormap as a matplotlib colormap~~
381
+ - ~~Add option to pass external colormaps to mergechannels~~
382
+ - ~~Parallelize colormap application on large images (it is helpful!)~~
383
+ - ~~Add option to overlay binary or instance masks onto colorized images~~
384
+ - ~~Add support for free-threaded Python~~
385
+
386
+ ## Acknowledgements
387
+
388
+ There are other great colormapping libraries available (e.g., [microfilm](https://github.com/guiwitz/microfilm), [cmap](https://github.com/pyapp-kit/cmap)) that are more feature-rich than this one, but which don't address my goals. My hope is that this project can fill an un-met niche and otherwise maintain full compatibility with these and similar libraries.
389
+
390
+ This project incorporates a number of colormaps that were hand-crafted by Christophe Leterrier and James Manton which were originally distributed [here](https://github.com/cleterrier/ChrisLUTs) and [here](https://sites.imagej.net/JDM_LUTs/) respectively.
391
+
392
+ ## Colormaps
393
+ ### FIJI built-in LUTs
394
+
395
+ <p>16_colors: <img src="https://raw.githubusercontent.com/zacswider/README_Images/main/builtin_luts_16_colors.png" style="vertical-align: middle"></p>
396
+ <p>3-3-2 RGB: <img src="https://raw.githubusercontent.com/zacswider/README_Images/main/builtin_luts_3-3-2 RGB.png" style="vertical-align: middle"></p>
397
+ <p>5_ramps: <img src="https://raw.githubusercontent.com/zacswider/README_Images/main/builtin_luts_5_ramps.png" style="vertical-align: middle"></p>
398
+ <p>6_shades: <img src="https://raw.githubusercontent.com/zacswider/README_Images/main/builtin_luts_6_shades.png" style="vertical-align: middle"></p>
399
+ <p>Blue: <img src="https://raw.githubusercontent.com/zacswider/README_Images/main/builtin_luts_Blue.png" style="vertical-align: middle"></p>
400
+ <p>Cyan: <img src="https://raw.githubusercontent.com/zacswider/README_Images/main/builtin_luts_Cyan.png" style="vertical-align: middle"></p>
401
+ <p>Cyan Hot: <img src="https://raw.githubusercontent.com/zacswider/README_Images/main/builtin_luts_Cyan Hot.png" style="vertical-align: middle"></p>
402
+ <p>Fire: <img src="https://raw.githubusercontent.com/zacswider/README_Images/main/builtin_luts_Fire.png" style="vertical-align: middle"></p>
403
+ <p>Grays: <img src="https://raw.githubusercontent.com/zacswider/README_Images/main/builtin_luts_Grays.png" style="vertical-align: middle"></p>
404
+ <p>Green: <img src="https://raw.githubusercontent.com/zacswider/README_Images/main/builtin_luts_Green.png" style="vertical-align: middle"></p>
405
+ <p>Green Fire Blue: <img src="https://raw.githubusercontent.com/zacswider/README_Images/main/builtin_luts_Green Fire Blue.png" style="vertical-align: middle"></p>
406
+ <p>HiLo: <img src="https://raw.githubusercontent.com/zacswider/README_Images/main/builtin_luts_HiLo.png" style="vertical-align: middle"></p>
407
+ <p>ICA: <img src="https://raw.githubusercontent.com/zacswider/README_Images/main/builtin_luts_ICA.png" style="vertical-align: middle"></p>
408
+ <p>ICA2: <img src="https://raw.githubusercontent.com/zacswider/README_Images/main/builtin_luts_ICA2.png" style="vertical-align: middle"></p>
409
+ <p>ICA3: <img src="https://raw.githubusercontent.com/zacswider/README_Images/main/builtin_luts_ICA3.png" style="vertical-align: middle"></p>
410
+ <p>Ice: <img src="https://raw.githubusercontent.com/zacswider/README_Images/main/builtin_luts_Ice.png" style="vertical-align: middle"></p>
411
+ <p>Magenta: <img src="https://raw.githubusercontent.com/zacswider/README_Images/main/builtin_luts_Magenta.png" style="vertical-align: middle"></p>
412
+ <p>Magenta Hot: <img src="https://raw.githubusercontent.com/zacswider/README_Images/main/builtin_luts_Magenta Hot.png" style="vertical-align: middle"></p>
413
+ <p>Orange Hot: <img src="https://raw.githubusercontent.com/zacswider/README_Images/main/builtin_luts_Orange Hot.png" style="vertical-align: middle"></p>
414
+ <p>Rainbow RGB: <img src="https://raw.githubusercontent.com/zacswider/README_Images/main/builtin_luts_Rainbow RGB.png" style="vertical-align: middle"></p>
415
+ <p>Red: <img src="https://raw.githubusercontent.com/zacswider/README_Images/main/builtin_luts_Red.png" style="vertical-align: middle"></p>
416
+ <p>Red Hot: <img src="https://raw.githubusercontent.com/zacswider/README_Images/main/builtin_luts_Red Hot.png" style="vertical-align: middle"></p>
417
+ <p>Red/Green: <img src="https://raw.githubusercontent.com/zacswider/README_Images/main/builtin_luts_Red%25Green.png" style="vertical-align: middle"></p>
418
+ <p>Spectrum: <img src="https://raw.githubusercontent.com/zacswider/README_Images/main/builtin_luts_Spectrum.png" style="vertical-align: middle"></p>
419
+ <p>Thermal: <img src="https://raw.githubusercontent.com/zacswider/README_Images/main/builtin_luts_Thermal.png" style="vertical-align: middle"></p>
420
+ <p>Yellow: <img src="https://raw.githubusercontent.com/zacswider/README_Images/main/builtin_luts_Yellow.png" style="vertical-align: middle"></p>
421
+ <p>Yellow Hot: <img src="https://raw.githubusercontent.com/zacswider/README_Images/main/builtin_luts_Yellow Hot.png" style="vertical-align: middle"></p>
422
+ <p>blue_orange_icb: <img src="https://raw.githubusercontent.com/zacswider/README_Images/main/builtin_luts_blue_orange_icb.png" style="vertical-align: middle"></p>
423
+ <p>brgbcmyw: <img src="https://raw.githubusercontent.com/zacswider/README_Images/main/builtin_luts_brgbcmyw.png" style="vertical-align: middle"></p>
424
+ <p>cool: <img src="https://raw.githubusercontent.com/zacswider/README_Images/main/builtin_luts_cool.png" style="vertical-align: middle"></p>
425
+ <p>edges: <img src="https://raw.githubusercontent.com/zacswider/README_Images/main/builtin_luts_edges.png" style="vertical-align: middle"></p>
426
+ <p>gem: <img src="https://raw.githubusercontent.com/zacswider/README_Images/main/builtin_luts_gem.png" style="vertical-align: middle"></p>
427
+ <p>glasbey: <img src="https://raw.githubusercontent.com/zacswider/README_Images/main/builtin_luts_glasbey.png" style="vertical-align: middle"></p>
428
+ <p>glasbey_inverted: <img src="https://raw.githubusercontent.com/zacswider/README_Images/main/builtin_luts_glasbey_inverted.png" style="vertical-align: middle"></p>
429
+ <p>glasbey_on_dark: <img src="https://raw.githubusercontent.com/zacswider/README_Images/main/builtin_luts_glasbey_on_dark.png" style="vertical-align: middle"></p>
430
+ <p>glow: <img src="https://raw.githubusercontent.com/zacswider/README_Images/main/builtin_luts_glow.png" style="vertical-align: middle"></p>
431
+ <p>mpl-inferno: <img src="https://raw.githubusercontent.com/zacswider/README_Images/main/builtin_luts_mpl-inferno.png" style="vertical-align: middle"></p>
432
+ <p>mpl-magma: <img src="https://raw.githubusercontent.com/zacswider/README_Images/main/builtin_luts_mpl-magma.png" style="vertical-align: middle"></p>
433
+ <p>mpl-plasma: <img src="https://raw.githubusercontent.com/zacswider/README_Images/main/builtin_luts_mpl-plasma.png" style="vertical-align: middle"></p>
434
+ <p>mpl-viridis: <img src="https://raw.githubusercontent.com/zacswider/README_Images/main/builtin_luts_mpl-viridis.png" style="vertical-align: middle"></p>
435
+ <p>phase: <img src="https://raw.githubusercontent.com/zacswider/README_Images/main/builtin_luts_phase.png" style="vertical-align: middle"></p>
436
+ <p>physics: <img src="https://raw.githubusercontent.com/zacswider/README_Images/main/builtin_luts_physics.png" style="vertical-align: middle"></p>
437
+ <p>royal: <img src="https://raw.githubusercontent.com/zacswider/README_Images/main/builtin_luts_royal.png" style="vertical-align: middle"></p>
438
+ <p>sepia: <img src="https://raw.githubusercontent.com/zacswider/README_Images/main/builtin_luts_sepia.png" style="vertical-align: middle"></p>
439
+ <p>smart: <img src="https://raw.githubusercontent.com/zacswider/README_Images/main/builtin_luts_smart.png" style="vertical-align: middle"></p>
440
+ <p>thal: <img src="https://raw.githubusercontent.com/zacswider/README_Images/main/builtin_luts_thal.png" style="vertical-align: middle"></p>
441
+ <p>thallium: <img src="https://raw.githubusercontent.com/zacswider/README_Images/main/builtin_luts_thallium.png" style="vertical-align: middle"></p>
442
+ <p>unionjack: <img src="https://raw.githubusercontent.com/zacswider/README_Images/main/builtin_luts_unionjack.png" style="vertical-align: middle"></p>
443
+
444
+ ### [My custom LUTs](https://github.com/zacswider/LUTs)
445
+
446
+ <p>OIMB1: <img src="https://raw.githubusercontent.com/zacswider/README_Images/main/zac_luts_OIMB1.png" style="vertical-align: middle"></p>
447
+ <p>OIMB2: <img src="https://raw.githubusercontent.com/zacswider/README_Images/main/zac_luts_OIMB2.png" style="vertical-align: middle"></p>
448
+ <p>OIMB3: <img src="https://raw.githubusercontent.com/zacswider/README_Images/main/zac_luts_OIMB3.png" style="vertical-align: middle"></p>
449
+ <p>betterBlue: <img src="https://raw.githubusercontent.com/zacswider/README_Images/main/zac_luts_betterBlue.png" style="vertical-align: middle"></p>
450
+ <p>betterCyan: <img src="https://raw.githubusercontent.com/zacswider/README_Images/main/zac_luts_betterCyan.png" style="vertical-align: middle"></p>
451
+ <p>betterGreen: <img src="https://raw.githubusercontent.com/zacswider/README_Images/main/zac_luts_betterGreen.png" style="vertical-align: middle"></p>
452
+ <p>betterOrange: <img src="https://raw.githubusercontent.com/zacswider/README_Images/main/zac_luts_betterOrange.png" style="vertical-align: middle"></p>
453
+ <p>betterRed: <img src="https://raw.githubusercontent.com/zacswider/README_Images/main/zac_luts_betterRed.png" style="vertical-align: middle"></p>
454
+ <p>betterYellow: <img src="https://raw.githubusercontent.com/zacswider/README_Images/main/zac_luts_betterYellow.png" style="vertical-align: middle"></p>
455
+
456
+ ### [Christophe Leterrier's LUTs](https://github.com/cleterrier/ChrisLUTs)
457
+
458
+ <p>3color-BMR: <img src="https://raw.githubusercontent.com/zacswider/README_Images/main/christ_luts_3color-BMR.png" style="vertical-align: middle"></p>
459
+ <p>3color-CGY: <img src="https://raw.githubusercontent.com/zacswider/README_Images/main/christ_luts_3color-CGY.png" style="vertical-align: middle"></p>
460
+ <p>3color-RMB: <img src="https://raw.githubusercontent.com/zacswider/README_Images/main/christ_luts_3color-RMB.png" style="vertical-align: middle"></p>
461
+ <p>3color-YGC: <img src="https://raw.githubusercontent.com/zacswider/README_Images/main/christ_luts_3color-YGC.png" style="vertical-align: middle"></p>
462
+ <p>BOP blue: <img src="https://raw.githubusercontent.com/zacswider/README_Images/main/christ_luts_BOP blue.png" style="vertical-align: middle"></p>
463
+ <p>BOP orange: <img src="https://raw.githubusercontent.com/zacswider/README_Images/main/christ_luts_BOP orange.png" style="vertical-align: middle"></p>
464
+ <p>BOP purple: <img src="https://raw.githubusercontent.com/zacswider/README_Images/main/christ_luts_BOP purple.png" style="vertical-align: middle"></p>
465
+ <p>I Blue: <img src="https://raw.githubusercontent.com/zacswider/README_Images/main/christ_luts_I Blue.png" style="vertical-align: middle"></p>
466
+ <p>I Bordeaux: <img src="https://raw.githubusercontent.com/zacswider/README_Images/main/christ_luts_I Bordeaux.png" style="vertical-align: middle"></p>
467
+ <p>I Cyan: <img src="https://raw.githubusercontent.com/zacswider/README_Images/main/christ_luts_I Cyan.png" style="vertical-align: middle"></p>
468
+ <p>I Forest: <img src="https://raw.githubusercontent.com/zacswider/README_Images/main/christ_luts_I Forest.png" style="vertical-align: middle"></p>
469
+ <p>I Green: <img src="https://raw.githubusercontent.com/zacswider/README_Images/main/christ_luts_I Green.png" style="vertical-align: middle"></p>
470
+ <p>I Magenta: <img src="https://raw.githubusercontent.com/zacswider/README_Images/main/christ_luts_I Magenta.png" style="vertical-align: middle"></p>
471
+ <p>I Purple: <img src="https://raw.githubusercontent.com/zacswider/README_Images/main/christ_luts_I Purple.png" style="vertical-align: middle"></p>
472
+ <p>I Red: <img src="https://raw.githubusercontent.com/zacswider/README_Images/main/christ_luts_I Red.png" style="vertical-align: middle"></p>
473
+ <p>I Yellow: <img src="https://raw.githubusercontent.com/zacswider/README_Images/main/christ_luts_I Yellow.png" style="vertical-align: middle"></p>
474
+ <p>OPF fresh: <img src="https://raw.githubusercontent.com/zacswider/README_Images/main/christ_luts_OPF fresh.png" style="vertical-align: middle"></p>
475
+ <p>OPF orange: <img src="https://raw.githubusercontent.com/zacswider/README_Images/main/christ_luts_OPF orange.png" style="vertical-align: middle"></p>
476
+ <p>OPF purple: <img src="https://raw.githubusercontent.com/zacswider/README_Images/main/christ_luts_OPF purple.png" style="vertical-align: middle"></p>
477
+ <p>Turbo: <img src="https://raw.githubusercontent.com/zacswider/README_Images/main/christ_luts_Turbo.png" style="vertical-align: middle"></p>
478
+
479
+ ### [James Manton's LUTs](https://sites.imagej.net/JDM_LUTs/)
480
+
481
+ <p>Circus Cherry: <img src="https://raw.githubusercontent.com/zacswider/README_Images/main/jdm_luts_Circus Cherry.png" style="vertical-align: middle"></p>
482
+ <p>Circus Cyan: <img src="https://raw.githubusercontent.com/zacswider/README_Images/main/jdm_luts_Circus Cyan.png" style="vertical-align: middle"></p>
483
+ <p>Circus Green: <img src="https://raw.githubusercontent.com/zacswider/README_Images/main/jdm_luts_Circus Green.png" style="vertical-align: middle"></p>
484
+ <p>Circus Ink Black: <img src="https://raw.githubusercontent.com/zacswider/README_Images/main/jdm_luts_Circus Ink Black.png" style="vertical-align: middle"></p>
485
+ <p>Circus Ink Cherry: <img src="https://raw.githubusercontent.com/zacswider/README_Images/main/jdm_luts_Circus Ink Cherry.png" style="vertical-align: middle"></p>
486
+ <p>Circus Ink Cyan: <img src="https://raw.githubusercontent.com/zacswider/README_Images/main/jdm_luts_Circus Ink Cyan.png" style="vertical-align: middle"></p>
487
+ <p>Circus Ink Green: <img src="https://raw.githubusercontent.com/zacswider/README_Images/main/jdm_luts_Circus Ink Green.png" style="vertical-align: middle"></p>
488
+ <p>Circus Ink Mint: <img src="https://raw.githubusercontent.com/zacswider/README_Images/main/jdm_luts_Circus Ink Mint.png" style="vertical-align: middle"></p>
489
+ <p>Circus Ink Purple: <img src="https://raw.githubusercontent.com/zacswider/README_Images/main/jdm_luts_Circus Ink Purple.png" style="vertical-align: middle"></p>
490
+ <p>Circus Ink Yellow: <img src="https://raw.githubusercontent.com/zacswider/README_Images/main/jdm_luts_Circus Ink Yellow.png" style="vertical-align: middle"></p>
491
+ <p>Circus Mint: <img src="https://raw.githubusercontent.com/zacswider/README_Images/main/jdm_luts_Circus Mint.png" style="vertical-align: middle"></p>
492
+ <p>Circus Purple: <img src="https://raw.githubusercontent.com/zacswider/README_Images/main/jdm_luts_Circus Purple.png" style="vertical-align: middle"></p>
493
+ <p>Circus Yellow: <img src="https://raw.githubusercontent.com/zacswider/README_Images/main/jdm_luts_Circus Yellow.png" style="vertical-align: middle"></p>
494
+ <p>Duo Cherry: <img src="https://raw.githubusercontent.com/zacswider/README_Images/main/jdm_luts_Duo Cherry.png" style="vertical-align: middle"></p>
495
+ <p>Duo Cyan: <img src="https://raw.githubusercontent.com/zacswider/README_Images/main/jdm_luts_Duo Cyan.png" style="vertical-align: middle"></p>
496
+ <p>Duo Green: <img src="https://raw.githubusercontent.com/zacswider/README_Images/main/jdm_luts_Duo Green.png" style="vertical-align: middle"></p>
497
+ <p>Duo Intense Cherry: <img src="https://raw.githubusercontent.com/zacswider/README_Images/main/jdm_luts_Duo Intense Cherry.png" style="vertical-align: middle"></p>
498
+ <p>Duo Intense Cyan: <img src="https://raw.githubusercontent.com/zacswider/README_Images/main/jdm_luts_Duo Intense Cyan.png" style="vertical-align: middle"></p>
499
+ <p>Duo Intense Green: <img src="https://raw.githubusercontent.com/zacswider/README_Images/main/jdm_luts_Duo Intense Green.png" style="vertical-align: middle"></p>
500
+ <p>Duo Intense Mint: <img src="https://raw.githubusercontent.com/zacswider/README_Images/main/jdm_luts_Duo Intense Mint.png" style="vertical-align: middle"></p>
501
+ <p>Duo Intense Purple: <img src="https://raw.githubusercontent.com/zacswider/README_Images/main/jdm_luts_Duo Intense Purple.png" style="vertical-align: middle"></p>
502
+ <p>Duo Intense Yellow: <img src="https://raw.githubusercontent.com/zacswider/README_Images/main/jdm_luts_Duo Intense Yellow.png" style="vertical-align: middle"></p>
503
+ <p>Duo Mint: <img src="https://raw.githubusercontent.com/zacswider/README_Images/main/jdm_luts_Duo Mint.png" style="vertical-align: middle"></p>
504
+ <p>Duo Purple: <img src="https://raw.githubusercontent.com/zacswider/README_Images/main/jdm_luts_Duo Purple.png" style="vertical-align: middle"></p>
505
+ <p>Duo Yellow: <img src="https://raw.githubusercontent.com/zacswider/README_Images/main/jdm_luts_Duo Yellow.png" style="vertical-align: middle"></p>
506
+ <p>Grays g=0.25: <img src="https://raw.githubusercontent.com/zacswider/README_Images/main/jdm_luts_Grays g=0.25.png" style="vertical-align: middle"></p>
507
+ <p>Grays g=0.25 inverted: <img src="https://raw.githubusercontent.com/zacswider/README_Images/main/jdm_luts_Grays g=0.25 inverted.png" style="vertical-align: middle"></p>
508
+ <p>Grays g=0.50: <img src="https://raw.githubusercontent.com/zacswider/README_Images/main/jdm_luts_Grays g=0.50.png" style="vertical-align: middle"></p>
509
+ <p>Grays g=0.50 inverted: <img src="https://raw.githubusercontent.com/zacswider/README_Images/main/jdm_luts_Grays g=0.50 inverted.png" style="vertical-align: middle"></p>
510
+ <p>Grays g=0.75: <img src="https://raw.githubusercontent.com/zacswider/README_Images/main/jdm_luts_Grays g=0.75.png" style="vertical-align: middle"></p>
511
+ <p>Grays g=0.75 inverted: <img src="https://raw.githubusercontent.com/zacswider/README_Images/main/jdm_luts_Grays g=0.75 inverted.png" style="vertical-align: middle"></p>
512
+ <p>Grays g=1.00 inverted: <img src="https://raw.githubusercontent.com/zacswider/README_Images/main/jdm_luts_Grays g=1.00 inverted.png" style="vertical-align: middle"></p>
513
+ <p>Grays g=1.25: <img src="https://raw.githubusercontent.com/zacswider/README_Images/main/jdm_luts_Grays g=1.25.png" style="vertical-align: middle"></p>
514
+ <p>Grays g=1.25 inverted: <img src="https://raw.githubusercontent.com/zacswider/README_Images/main/jdm_luts_Grays g=1.25 inverted.png" style="vertical-align: middle"></p>
515
+ <p>Grays g=1.50: <img src="https://raw.githubusercontent.com/zacswider/README_Images/main/jdm_luts_Grays g=1.50.png" style="vertical-align: middle"></p>
516
+ <p>Grays g=1.50 inverted: <img src="https://raw.githubusercontent.com/zacswider/README_Images/main/jdm_luts_Grays g=1.50 inverted.png" style="vertical-align: middle"></p>
517
+ <p>Grays g=1.75: <img src="https://raw.githubusercontent.com/zacswider/README_Images/main/jdm_luts_Grays g=1.75.png" style="vertical-align: middle"></p>
518
+ <p>Grays g=1.75 inverted: <img src="https://raw.githubusercontent.com/zacswider/README_Images/main/jdm_luts_Grays g=1.75 inverted.png" style="vertical-align: middle"></p>
519
+ <p>Grays g=2.00: <img src="https://raw.githubusercontent.com/zacswider/README_Images/main/jdm_luts_Grays g=2.00.png" style="vertical-align: middle"></p>
520
+ <p>Grays g=2.00 inverted: <img src="https://raw.githubusercontent.com/zacswider/README_Images/main/jdm_luts_Grays g=2.00 inverted.png" style="vertical-align: middle"></p>
521
+ <p>Ink Black: <img src="https://raw.githubusercontent.com/zacswider/README_Images/main/jdm_luts_Ink Black.png" style="vertical-align: middle"></p>
522
+ <p>Ink Cherry: <img src="https://raw.githubusercontent.com/zacswider/README_Images/main/jdm_luts_Ink Cherry.png" style="vertical-align: middle"></p>
523
+ <p>Ink Cyan: <img src="https://raw.githubusercontent.com/zacswider/README_Images/main/jdm_luts_Ink Cyan.png" style="vertical-align: middle"></p>
524
+ <p>Ink Green: <img src="https://raw.githubusercontent.com/zacswider/README_Images/main/jdm_luts_Ink Green.png" style="vertical-align: middle"></p>
525
+ <p>Ink Mint: <img src="https://raw.githubusercontent.com/zacswider/README_Images/main/jdm_luts_Ink Mint.png" style="vertical-align: middle"></p>
526
+ <p>Ink Purple: <img src="https://raw.githubusercontent.com/zacswider/README_Images/main/jdm_luts_Ink Purple.png" style="vertical-align: middle"></p>
527
+ <p>Ink Wash Black: <img src="https://raw.githubusercontent.com/zacswider/README_Images/main/jdm_luts_Ink Wash Black.png" style="vertical-align: middle"></p>
528
+ <p>Ink Wash Cherry: <img src="https://raw.githubusercontent.com/zacswider/README_Images/main/jdm_luts_Ink Wash Cherry.png" style="vertical-align: middle"></p>
529
+ <p>Ink Wash Cyan: <img src="https://raw.githubusercontent.com/zacswider/README_Images/main/jdm_luts_Ink Wash Cyan.png" style="vertical-align: middle"></p>
530
+ <p>Ink Wash Green: <img src="https://raw.githubusercontent.com/zacswider/README_Images/main/jdm_luts_Ink Wash Green.png" style="vertical-align: middle"></p>
531
+ <p>Ink Wash Mint: <img src="https://raw.githubusercontent.com/zacswider/README_Images/main/jdm_luts_Ink Wash Mint.png" style="vertical-align: middle"></p>
532
+ <p>Ink Wash Purple: <img src="https://raw.githubusercontent.com/zacswider/README_Images/main/jdm_luts_Ink Wash Purple.png" style="vertical-align: middle"></p>
533
+ <p>Ink Wash Yellow: <img src="https://raw.githubusercontent.com/zacswider/README_Images/main/jdm_luts_Ink Wash Yellow.png" style="vertical-align: middle"></p>
534
+ <p>Ink Yellow: <img src="https://raw.githubusercontent.com/zacswider/README_Images/main/jdm_luts_Ink Yellow.png" style="vertical-align: middle"></p>
535
+ <p>Parabolic RGB: <img src="https://raw.githubusercontent.com/zacswider/README_Images/main/jdm_luts_Parabolic RGB.png" style="vertical-align: middle"></p>
536
+ <p>Phase Bold Green-Magenta: <img src="https://raw.githubusercontent.com/zacswider/README_Images/main/jdm_luts_Phase Bold Green-Magenta.png" style="vertical-align: middle"></p>
537
+ <p>Phase Bold Ink Green-Magenta: <img src="https://raw.githubusercontent.com/zacswider/README_Images/main/jdm_luts_Phase Bold Ink Green-Magenta.png" style="vertical-align: middle"></p>
538
+ <p>Phase Bold Ink Mint-Cherry: <img src="https://raw.githubusercontent.com/zacswider/README_Images/main/jdm_luts_Phase Bold Ink Mint-Cherry.png" style="vertical-align: middle"></p>
539
+ <p>Phase Bold Ink Yellow-Cyan: <img src="https://raw.githubusercontent.com/zacswider/README_Images/main/jdm_luts_Phase Bold Ink Yellow-Cyan.png" style="vertical-align: middle"></p>
540
+ <p>Phase Bold Mint-Cherry: <img src="https://raw.githubusercontent.com/zacswider/README_Images/main/jdm_luts_Phase Bold Mint-Cherry.png" style="vertical-align: middle"></p>
541
+ <p>Phase Bold Yellow-Cyan: <img src="https://raw.githubusercontent.com/zacswider/README_Images/main/jdm_luts_Phase Bold Yellow-Cyan.png" style="vertical-align: middle"></p>
542
+ <p>Phase Green-Magenta: <img src="https://raw.githubusercontent.com/zacswider/README_Images/main/jdm_luts_Phase Green-Magenta.png" style="vertical-align: middle"></p>
543
+ <p>Phase Ink Green-Magenta: <img src="https://raw.githubusercontent.com/zacswider/README_Images/main/jdm_luts_Phase Ink Green-Magenta.png" style="vertical-align: middle"></p>
544
+ <p>Phase Ink Mint-Cherry: <img src="https://raw.githubusercontent.com/zacswider/README_Images/main/jdm_luts_Phase Ink Mint-Cherry.png" style="vertical-align: middle"></p>
545
+ <p>Phase Ink Yellow-Cyan: <img src="https://raw.githubusercontent.com/zacswider/README_Images/main/jdm_luts_Phase Ink Yellow-Cyan.png" style="vertical-align: middle"></p>
546
+ <p>Phase Mint-Cherry: <img src="https://raw.githubusercontent.com/zacswider/README_Images/main/jdm_luts_Phase Mint-Cherry.png" style="vertical-align: middle"></p>
547
+ <p>Phase Yellow-Cyan: <img src="https://raw.githubusercontent.com/zacswider/README_Images/main/jdm_luts_Phase Yellow-Cyan.png" style="vertical-align: middle"></p>
548
+ <p>Pop blue: <img src="https://raw.githubusercontent.com/zacswider/README_Images/main/jdm_luts_Pop blue.png" style="vertical-align: middle"></p>
549
+ <p>Pop blue inverted: <img src="https://raw.githubusercontent.com/zacswider/README_Images/main/jdm_luts_Pop blue inverted.png" style="vertical-align: middle"></p>
550
+ <p>Pop cherry: <img src="https://raw.githubusercontent.com/zacswider/README_Images/main/jdm_luts_Pop cherry.png" style="vertical-align: middle"></p>
551
+ <p>Pop cherry inverted: <img src="https://raw.githubusercontent.com/zacswider/README_Images/main/jdm_luts_Pop cherry inverted.png" style="vertical-align: middle"></p>
552
+ <p>Pop cyan: <img src="https://raw.githubusercontent.com/zacswider/README_Images/main/jdm_luts_Pop cyan.png" style="vertical-align: middle"></p>
553
+ <p>Pop cyan inverted: <img src="https://raw.githubusercontent.com/zacswider/README_Images/main/jdm_luts_Pop cyan inverted.png" style="vertical-align: middle"></p>
554
+ <p>Pop green: <img src="https://raw.githubusercontent.com/zacswider/README_Images/main/jdm_luts_Pop green.png" style="vertical-align: middle"></p>
555
+ <p>Pop green inverted: <img src="https://raw.githubusercontent.com/zacswider/README_Images/main/jdm_luts_Pop green inverted.png" style="vertical-align: middle"></p>
556
+ <p>Pop lavender inverted: <img src="https://raw.githubusercontent.com/zacswider/README_Images/main/jdm_luts_Pop lavender inverted.png" style="vertical-align: middle"></p>
557
+ <p>Pop magenta: <img src="https://raw.githubusercontent.com/zacswider/README_Images/main/jdm_luts_Pop magenta.png" style="vertical-align: middle"></p>
558
+ <p>Pop magenta inverted: <img src="https://raw.githubusercontent.com/zacswider/README_Images/main/jdm_luts_Pop magenta inverted.png" style="vertical-align: middle"></p>
559
+ <p>Pop mint: <img src="https://raw.githubusercontent.com/zacswider/README_Images/main/jdm_luts_Pop mint.png" style="vertical-align: middle"></p>
560
+ <p>Pop mint inverted: <img src="https://raw.githubusercontent.com/zacswider/README_Images/main/jdm_luts_Pop mint inverted.png" style="vertical-align: middle"></p>
561
+ <p>Pop purple: <img src="https://raw.githubusercontent.com/zacswider/README_Images/main/jdm_luts_Pop purple.png" style="vertical-align: middle"></p>
562
+ <p>Pop purple inverted: <img src="https://raw.githubusercontent.com/zacswider/README_Images/main/jdm_luts_Pop purple inverted.png" style="vertical-align: middle"></p>
563
+ <p>Pop red: <img src="https://raw.githubusercontent.com/zacswider/README_Images/main/jdm_luts_Pop red.png" style="vertical-align: middle"></p>
564
+ <p>Pop red inverted: <img src="https://raw.githubusercontent.com/zacswider/README_Images/main/jdm_luts_Pop red inverted.png" style="vertical-align: middle"></p>
565
+ <p>Pop yellow: <img src="https://raw.githubusercontent.com/zacswider/README_Images/main/jdm_luts_Pop yellow.png" style="vertical-align: middle"></p>
566
+ <p>Pop yellow inverted: <img src="https://raw.githubusercontent.com/zacswider/README_Images/main/jdm_luts_Pop yellow inverted.png" style="vertical-align: middle"></p>
567
+ <p>Quartetto MYGB Blue: <img src="https://raw.githubusercontent.com/zacswider/README_Images/main/jdm_luts_Quartetto MYGB Blue.png" style="vertical-align: middle"></p>
568
+ <p>Quartetto MYGB Green: <img src="https://raw.githubusercontent.com/zacswider/README_Images/main/jdm_luts_Quartetto MYGB Green.png" style="vertical-align: middle"></p>
569
+ <p>Quartetto MYGB Magenta: <img src="https://raw.githubusercontent.com/zacswider/README_Images/main/jdm_luts_Quartetto MYGB Magenta.png" style="vertical-align: middle"></p>
570
+ <p>Quartetto MYGB Yellow: <img src="https://raw.githubusercontent.com/zacswider/README_Images/main/jdm_luts_Quartetto MYGB Yellow.png" style="vertical-align: middle"></p>
571
+ <p>Quartetto RYGB Blue: <img src="https://raw.githubusercontent.com/zacswider/README_Images/main/jdm_luts_Quartetto RYGB Blue.png" style="vertical-align: middle"></p>
572
+ <p>Quartetto RYGB Green: <img src="https://raw.githubusercontent.com/zacswider/README_Images/main/jdm_luts_Quartetto RYGB Green.png" style="vertical-align: middle"></p>
573
+ <p>Quartetto RYGB Red: <img src="https://raw.githubusercontent.com/zacswider/README_Images/main/jdm_luts_Quartetto RYGB Red.png" style="vertical-align: middle"></p>
574
+ <p>Quartetto RYGB Yellow: <img src="https://raw.githubusercontent.com/zacswider/README_Images/main/jdm_luts_Quartetto RYGB Yellow.png" style="vertical-align: middle"></p>
575
+
@@ -0,0 +1,11 @@
1
+ mergechannels/__init__.py,sha256=T0AQYQNC4xg0rJLIBm403eUr_ti05m4JF-tm3pNXLnA,385
2
+ mergechannels/_blending.py,sha256=mE5Cr9wvVJRcwfymg_UUZUjdIKx2mldfLU8QJT95bVM,84
3
+ mergechannels/_internal.py,sha256=a4B0IiBTOyswm_jLMgTviLLMk8PhqngYpxTkDmdbXnY,21038
4
+ mergechannels/_luts.py,sha256=5FEvxQk4nvYYjbWPDEHL_gYChL78SBxakDbJuHRdamc,3480
5
+ mergechannels/mergechannels.cpython-39-x86_64-linux-gnu.so,sha256=hLDvDZAZF_-7TKneZNS5lz8asPH_G3EVxzgso83JVoQ,1621209
6
+ mergechannels/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
7
+ mergechannels-0.5.8.dist-info/METADATA,sha256=VUQdCF_SgcNkzNZSVtvG2AeAcZr7Gb7JK2HpWDRWvJA,43900
8
+ mergechannels-0.5.8.dist-info/WHEEL,sha256=FbohHGBm4uhuCtJZvrZbRivIkF5dmhXiH2pmD00BzA8,106
9
+ mergechannels-0.5.8.dist-info/licenses/LICENSE,sha256=csvD60rgtSorbYEM3f8867qNyPCzmIXyFNj8h01Bd6c,1071
10
+ mergechannels.libs/libgcc_s-6d2d9dc8.so.1,sha256=K3sghe0OS1atTYJSB8m0plft2csyIC36q20Ii8UMudc,536145
11
+ mergechannels-0.5.8.dist-info/RECORD,,
@@ -0,0 +1,4 @@
1
+ Wheel-Version: 1.0
2
+ Generator: maturin (1.11.2)
3
+ Root-Is-Purelib: false
4
+ Tag: cp39-cp39-musllinux_1_2_x86_64