add help docs and ?

This commit is contained in:
2026-03-30 23:10:42 -07:00
parent ced43bec4f
commit 63d76bac72
76 changed files with 2184 additions and 1 deletions

View File

@@ -0,0 +1,26 @@
# Mask Operations
Apply boolean logic to two binary masks. Supports AND, OR, XOR, NAND, NOR, XNOR, directional subtraction (A minus B, B minus A), implication, pass-through, and constant true/false outputs.
## Inputs
| Name | Type | Required | Description |
|------|------|----------|-------------|
| mask_a | IMAGE | Yes | First binary mask operand |
| mask_b | IMAGE | Yes | Second binary mask operand |
## Outputs
| Name | Type | Description |
|------|------|-------------|
| mask | IMAGE | Result of the boolean operation |
## Controls
| Name | Type | Default | Description |
|------|------|---------|-------------|
| operation | dropdown | and | Boolean operation: and, or, xor, xnor, nand, nor, a_minus_b, b_minus_a, a, b, not_a, not_b, a_implies_b, b_implies_a, false, true |
## Limitations
- Both masks must have the same pixel dimensions.