Add bandbool feature for channel-wise boolean operations (#496)

This commit is contained in:
Matt Hirsch
2016-07-07 16:03:49 -04:00
committed by Lovell Fuller
parent a982cfdb20
commit 65b7f7d7d5
12 changed files with 124 additions and 0 deletions

View File

@@ -92,6 +92,7 @@ struct PipelineBaton {
int convKernelHeight;
double convKernelScale;
double convKernelOffset;
VipsOperationBoolean bandBoolOp;
int tileSize;
int tileOverlap;
VipsForeignDzContainer tileContainer;
@@ -151,6 +152,7 @@ struct PipelineBaton {
convKernelHeight(0),
convKernelScale(0.0),
convKernelOffset(0.0),
bandBoolOp(VIPS_OPERATION_BOOLEAN_LAST),
tileSize(256),
tileOverlap(0),
tileContainer(VIPS_FOREIGN_DZ_CONTAINER_FS),