- Timestamp:
- Aug 15, 2023, 4:59:00 AM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/eam_branches/ipp-20230313/psLib/test/imageops/tap_psImageMaskOps.c
r13123 r42493 121 121 } 122 122 psImageMaskRegion(img, reg, "=", maskVal); 123 psBoolerrorFlag = false;123 errorFlag = false; 124 124 for (int i = 0 ; i < numRows ; i++) { 125 125 for (int j = 0 ; j < numCols ; j++) { … … 149 149 maskVal = 0xf; 150 150 psImageMaskRegion(img, reg, "&", maskVal); 151 psBoolerrorFlag = false;151 errorFlag = false; 152 152 for (int i = 0 ; i < numRows ; i++) { 153 153 for (int j = 0 ; j < numCols ; j++) { … … 177 177 maskVal = 0xf; 178 178 psImageMaskRegion(img, reg, "^", maskVal); 179 psBoolerrorFlag = false;179 errorFlag = false; 180 180 for (int i = 0 ; i < numRows ; i++) { 181 181 for (int j = 0 ; j < numCols ; j++) { … … 250 250 } 251 251 psImageKeepRegion(img, reg, "=", maskVal); 252 psBoolerrorFlag = false;252 errorFlag = false; 253 253 for (int i = 0 ; i < numRows ; i++) { 254 254 for (int j = 0 ; j < numCols ; j++) { … … 278 278 maskVal = 0xf; 279 279 psImageKeepRegion(img, reg, "&", maskVal); 280 psBoolerrorFlag = false;280 errorFlag = false; 281 281 for (int i = 0 ; i < numRows ; i++) { 282 282 for (int j = 0 ; j < numCols ; j++) { … … 306 306 maskVal = 0xf; 307 307 psImageKeepRegion(img, reg, "^", maskVal); 308 psBoolerrorFlag = false;308 errorFlag = false; 309 309 for (int i = 0 ; i < numRows ; i++) { 310 310 for (int j = 0 ; j < numCols ; j++) { … … 381 381 } 382 382 psImageMaskCircle(img, (psF64) x, (psF64) y, (psF64) radius, "=", maskVal); 383 psBoolerrorFlag = false;383 errorFlag = false; 384 384 for (int i = 0 ; i < numRows ; i++) { 385 385 for (int j = 0 ; j < numCols ; j++) { … … 409 409 maskVal = 0xf; 410 410 psImageMaskCircle(img, (psF64) x, (psF64) y, (psF64) radius, "&", maskVal); 411 psBoolerrorFlag = false;411 errorFlag = false; 412 412 for (int i = 0 ; i < numRows ; i++) { 413 413 for (int j = 0 ; j < numCols ; j++) { … … 437 437 maskVal = 0xf; 438 438 psImageMaskCircle(img, (psF64) x, (psF64) y, (psF64) radius, "^", maskVal); 439 psBoolerrorFlag = false;439 errorFlag = false; 440 440 for (int i = 0 ; i < numRows ; i++) { 441 441 for (int j = 0 ; j < numCols ; j++) { … … 504 504 } 505 505 psImageKeepCircle(img, (psF64) x, (psF64) y, (psF64) radius, "=", maskVal); 506 psBoolerrorFlag = false;506 errorFlag = false; 507 507 for (int i = 0 ; i < numRows ; i++) { 508 508 for (int j = 0 ; j < numCols ; j++) { … … 532 532 maskVal = 0xf; 533 533 psImageKeepCircle(img, (psF64) x, (psF64) y, (psF64) radius, "&", maskVal); 534 psBoolerrorFlag = false;534 errorFlag = false; 535 535 for (int i = 0 ; i < numRows ; i++) { 536 536 for (int j = 0 ; j < numCols ; j++) { … … 560 560 maskVal = 0xf; 561 561 psImageKeepCircle(img, (psF64) x, (psF64) y, (psF64) radius, "^", maskVal); 562 psBoolerrorFlag = false;562 errorFlag = false; 563 563 for (int i = 0 ; i < numRows ; i++) { 564 564 for (int j = 0 ; j < numCols ; j++) {
Note:
See TracChangeset
for help on using the changeset viewer.
