Beispiel #1
0
 def artifacts(self):
     return [("warped",
              Input(Artifact.CONTOURS, Artifact.FLOW, stage=Stage.WARPED)),
             ("output",
              Output(Artifact.DEWARPING_TRANSFORM,
                     Artifact.CONTOURS,
                     stage=Stage.DEWARPED))]
Beispiel #2
0
 def artifacts(self):
     return [
         ("warped", Input(Artifact.SEGMENTATION, stage=Stage.WARPED)),
         ("input", Input(Artifact.CONTOURS, stage=self._stage)),
         ("output",
          Output(Annotation("contours." + self._stage.name.lower()))),
     ]
Beispiel #3
0
	def artifacts(self):
		return [
			("reliable", Input(
				Artifact.LINES, Artifact.TABLES,
				stage=Stage.RELIABLE)),
			("output", Output(Artifact.OCR)),
		]
Beispiel #4
0
 def artifacts(self):
     return [
         ("warped",
          Input(Artifact.SEGMENTATION,
                Artifact.CONTOURS,
                Artifact.LINES,
                stage=Stage.WARPED)),
         ("output", Output(Annotation("flow"))),
     ]
Beispiel #5
0
	def artifacts(self):
		return [
			("warped", Input(Artifact.SEGMENTATION)),
			("reliable", Input(
				Artifact.CONTOURS, Artifact.LINES,
				Artifact.TABLES, Artifact.ORDER,
				stage=Stage.RELIABLE)),
			("output", Output(Annotation("layout"))),
		]
Beispiel #6
0
 def artifacts(self):
     return [
         ("warped", Input(Artifact.SEGMENTATION, stage=Stage.WARPED)),
         ("dewarped", Input(Artifact.CONTOURS, stage=Stage.DEWARPED)),
         ("aggregate", Input(Artifact.CONTOURS, stage=Stage.AGGREGATE)),
         ("reliable",
          Input(Artifact.CONTOURS, Artifact.LINES, stage=Stage.RELIABLE)),
         ("output", Output(Artifact.ORDER, stage=Stage.RELIABLE)),
     ]
Beispiel #7
0
 def artifacts(self):
     return [
         ("warped",
          Input(Artifact.SEGMENTATION,
                Artifact.CONTOURS,
                Artifact.LINES,
                Artifact.DEWARPING_TRANSFORM,
                stage=Stage.WARPED)),
         ("output", Output(Annotation("grid"))),
     ]
Beispiel #8
0
    def artifacts(self):
        if self._options["do_not_dewarp"]:
            stage = Stage.WARPED
            artifacts = [Artifact.LINES]
        else:
            stage = Stage.RELIABLE
            artifacts = [Artifact.LINES, Artifact.TABLES]

        return [("input", Input(*artifacts, stage=stage)),
                ("output", Output(self.output))]
Beispiel #9
0
 def artifacts(self):
     return [
         ("input",
          Input(Artifact.CONTOURS,
                Artifact.LINES,
                Artifact.OCR,
                Artifact.ORDER,
                Artifact.TABLES,
                stage=Stage.RELIABLE)),
         ("output", Output(Artifact.COMPOSE)),
     ]
Beispiel #10
0
 def artifacts(self):
     return [("warped",
              Input(Artifact.CONTOURS,
                    Artifact.LINES,
                    Artifact.SEGMENTATION,
                    stage=Stage.WARPED)),
             ("dewarped", Input(Artifact.CONTOURS, stage=Stage.DEWARPED)),
             ("output",
              Output(Artifact.CONTOURS,
                     Artifact.TABLES,
                     stage=Stage.AGGREGATE))]
Beispiel #11
0
	def artifacts(self):
		return [
			("data", Input(Artifact.COMPOSE)),
			("output", Output(Artifact.DINGLEHOPPER))
		]
Beispiel #12
0
 def artifacts(self):
     return [("input", Input(Artifact.SEGMENTATION)),
             ("output", Output(Artifact.CONTOURS, stage=Stage.WARPED))]
Beispiel #13
0
 def artifacts(self):
     return [("dewarped",
              Input(Artifact.DEWARPING_TRANSFORM, stage=Stage.DEWARPED)),
             ("output", Output(Annotation("dewarped")))]
Beispiel #14
0
 def artifacts(self):
     return [("input", Input(stage=Stage.WARPED)),
             ("output", Output(Artifact.THUMBNAIL))]
Beispiel #15
0
	def artifacts(self):
		return [
			("input", Input(Artifact.CONTOURS, stage=Stage.AGGREGATE)),
			("output", Output(Artifact.SIGNATURE))
		]