-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ocrd-dummy: make copying optional and disable by default, #803
- Loading branch information
Showing
4 changed files
with
30 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,15 @@ | ||
{ | ||
"executable": "ocrd-dummy", | ||
"description": "Bare-bones processor that copies file from input group to output group", | ||
"description": "Bare-bones processor creates PAGE-XML and optionally copies file from input group to output group", | ||
"steps": ["preprocessing/optimization"], | ||
"categories": ["Image preprocessing"], | ||
"input_file_grp": "DUMMY_INPUT", | ||
"output_file_grp": "DUMMY_OUTPUT" | ||
"output_file_grp": "DUMMY_OUTPUT", | ||
"parameters": { | ||
"copy_files": { | ||
"type": "boolean", | ||
"default": false, | ||
"description": "Whether to actually copy files (true) or just create PAGE-XML as a side effect (false)" | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters