-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #138 from qurator-spk/extracting_images_only
Extracting images only
- Loading branch information
Showing
34 changed files
with
773 additions
and
718 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
qurator/eynollah/ocrd-tool.json | ||
src/eynollah/ocrd-tool.json |
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,34 +1,43 @@ | ||
[build-system] | ||
requires = ["setuptools>=61.0"] | ||
build-backend = "setuptools.build_meta" | ||
requires = ["setuptools>=61.0", "wheel", "setuptools-ocrd"] | ||
|
||
[project] | ||
name = "eynollah" | ||
version = "0.1.0" | ||
|
||
|
||
|
||
|
||
dependencies = [ | ||
"ocrd >= 2.23.3", | ||
"tensorflow == 2.12.1", | ||
"scikit-learn >= 0.23.2", | ||
"imutils >= 0.5.3", | ||
"numpy < 1.24.0", | ||
"matplotlib", | ||
"torch == 2.0.1", | ||
"transformers == 4.30.2", | ||
"numba == 0.58.1", | ||
authors = [ | ||
{name = "Vahid Rezanezhad"}, | ||
{name = "Staatsbibliothek zu Berlin - Preußischer Kulturbesitz"}, | ||
] | ||
description = "Document Layout Analysis" | ||
readme = "README.md" | ||
license.file = "LICENSE" | ||
requires-python = ">=3.8" | ||
keywords = ["document layout analysis", "image segmentation"] | ||
|
||
dynamic = ["dependencies", "version"] | ||
|
||
classifiers = [ | ||
"Development Status :: 4 - Beta", | ||
"Environment :: Console", | ||
"Intended Audience :: Science/Research", | ||
"License :: OSI Approved :: Apache Software License", | ||
"Programming Language :: Python :: 3", | ||
"Programming Language :: Python :: 3 :: Only", | ||
"Topic :: Scientific/Engineering :: Image Processing", | ||
] | ||
|
||
[project.scripts] | ||
eynollah = "qurator.eynollah.cli:main" | ||
ocrd-eynollah-segment="qurator.eynollah.ocrd_cli:main" | ||
eynollah = "eynollah.cli:main" | ||
ocrd-eynollah-segment = "eynollah.ocrd_cli:main" | ||
|
||
[project.urls] | ||
Homepage = "https://github.com/qurator-spk/eynollah" | ||
Repository = "https://github.com/qurator-spk/eynollah.git" | ||
|
||
[tool.setuptools.dynamic] | ||
dependencies = {file = ["requirements.txt"]} | ||
|
||
[tool.setuptools.packages.find] | ||
where = ["."] | ||
include = ["qurator"] | ||
where = ["src"] | ||
|
||
[tool.setuptools.package-data] | ||
"*" = ["*.json", '*.yml', '*.xml', '*.xsd'] |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
File renamed without changes.
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
Oops, something went wrong.