-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path__init__.py
44 lines (38 loc) · 1.71 KB
/
__init__.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
"""
▗▄▄▖▗▄▄▄▖▗▖ ▗▖▗▄▄▄▖▗▖ ▗▄▄▖ ▗▄▄▖ ▗▄▄▄▖ ▗▄▄▖▗▖ ▗▖
▐▌ ▐▌ █ ▝▚▞▘ ▐▌ ▐▌ ▐▌ ▐▌▐▌ ▐▌ █ ▐▌ ▐▛▚▞▜▌
▐▛▀▘ █ ▐▌ ▐▛▀▀▘▐▌ ▐▛▀▘ ▐▛▀▚▖ █ ▝▀▚▖▐▌ ▐▌
▐▌ ▗▄█▄▖▗▞▘▝▚▖▐▙▄▄▖▐▙▄▄▖ ▐▌ ▐▌ ▐▌▗▄█▄▖▗▄▄▞▘▐▌ ▐▌
Image Manipulation, Procedural Generation & Visual Effects
https://github.com/nschaetti/PixelPrism
@title: Pixel Prism
@author: Nils Schaetti
@category: Image Processing
@reference: https://github.com/nils-schaetti/pixel-prism
@tags: image, pixel, animation, compositing, effects, shader, procedural, generation,
mask, layer, video, transformation, depth, AI, automation, creative, rendering
@description: Pixel Prism is a creative toolkit for procedural image and video
generation. Includes support for advanced compositing, GLSL shaders, depth maps,
image segmentation, and AI-powered effects. Automate your workflow with a rich
set of nodes for blending, masking, filtering, and compositional adjustments.
Perfect for artists, designers, and researchers exploring image aesthetics.
@node list:
ContourFindingNode
@version: 0.0.1
"""
# Imports
from pixel_prism.nodes import (
ContourFinding,
VectorsToString,
SelectChannel,
GrayScale,
DrawPolygon
)
# Node class mappings
NODE_CLASS_MAPPINGS = {
"ContourFinding": ContourFinding,
"SelectChannel": SelectChannel,
"VectorsToString": VectorsToString,
"GrayScale": GrayScale,
"DrawPolygon": DrawPolygon
}