| 175 |
|
#endif |
| 176 |
|
case 'd': /* direct */ |
| 177 |
|
switch (argv[i][2]) { |
| 178 |
< |
case 't': /* tolerance */ |
| 178 |
> |
case 't': /* threshold */ |
| 179 |
|
check(3,1); |
| 180 |
|
shadthresh = atof(argv[++i]); |
| 181 |
|
break; |
| 194 |
|
check(3,1); |
| 195 |
|
psample = atoi(argv[++i]); |
| 196 |
|
break; |
| 197 |
< |
case 'd': /* difference */ |
| 197 |
> |
case 't': /* threshold */ |
| 198 |
|
check(3,1); |
| 199 |
|
maxdiff = atof(argv[++i]); |
| 200 |
|
break; |
| 537 |
|
printf("-x %-9d\t\t\t# x resolution\n", hresolu); |
| 538 |
|
printf("-y %-9d\t\t\t# y resolution\n", vresolu); |
| 539 |
|
#endif |
| 540 |
< |
printf("-dt %f\t\t\t# direct tolerance\n", shadthresh); |
| 540 |
> |
printf("-dt %f\t\t\t# direct threshold\n", shadthresh); |
| 541 |
|
printf("-dj %f\t\t\t# direct jitter\n", dstrsrc); |
| 542 |
|
#if RPICT|RVIEW |
| 543 |
|
printf("-sp %-9d\t\t\t# sample pixel\n", psample); |
| 544 |
< |
printf("-sd %f\t\t\t# sample difference\n", maxdiff); |
| 544 |
> |
printf("-st %f\t\t\t# sample threshold\n", maxdiff); |
| 545 |
|
#if RPICT |
| 546 |
|
printf("-sj %f\t\t\t# sample jitter\n", dstrpix); |
| 547 |
|
#endif |