Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
T
TFG
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
yonrodr
TFG
Commits
ced2c281
Commit
ced2c281
authored
Apr 28, 2023
by
Yonatan
Browse files
Options
Downloads
Patches
Plain Diff
Added documents folder
parent
e971d774
No related branches found
No related tags found
1 merge request
!1
Final merge
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
docs/memoria.pdf
+0
-0
0 additions, 0 deletions
docs/memoria.pdf
pom.xml
+7
-0
7 additions, 0 deletions
pom.xml
src/main/java/es/yonatan/tfg/Main.java
+1
-1
1 addition, 1 deletion
src/main/java/es/yonatan/tfg/Main.java
with
8 additions
and
1 deletion
docs/memoria.pdf
0 → 100644
+
0
−
0
View file @
ced2c281
File added
This diff is collapsed.
Click to expand it.
pom.xml
+
7
−
0
View file @
ced2c281
...
...
@@ -23,6 +23,13 @@
</build>
<dependencies>
<dependency>
<groupId>
opencv
</groupId>
<artifactId>
opencv
</artifactId>
<scope>
system
</scope>
<version>
4.7.0
</version>
<systemPath>
${project.basedir}/lib/opencv-470.jar
</systemPath>
</dependency>
<dependency>
<groupId>
com.github.jai-imageio
</groupId>
<artifactId>
jai-imageio-core
</artifactId>
...
...
This diff is collapsed.
Click to expand it.
src/main/java/es/yonatan/tfg/Main.java
+
1
−
1
View file @
ced2c281
...
...
@@ -27,7 +27,7 @@ public class Main {
var
tess
=
new
TesseractRecognizer
.
Builder
()
.
setDataPath
(
new
File
(
"C:/Proyectos/TFG/src/main/resources/tessdata/"
))
.
setLanguage
(
"spa"
)
.
setVariable
(
"user_defined_dpi"
,
"
30
0"
)
// TODO: 10/04/2023 300 dpi is too high, test lower dpi and see how it affects the results and completion time
.
setVariable
(
"user_defined_dpi"
,
"
7
0"
)
// TODO: 10/04/2023 300 dpi is too high, test lower dpi and see how it affects the results and completion time
.
build
();
var
words
=
tess
.
recognizeSync
(
image
,
80
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment