feat: First backup

This commit is contained in:
Louis Gallet 2024-10-30 16:40:03 +01:00
commit c8960bf835
Signed by: lgallet
GPG Key ID: 84D3DF1528A84511
11 changed files with 118 additions and 0 deletions

1
.gitattributes vendored Normal file
View File

@ -0,0 +1 @@
*.pdf filter=lfs diff=lfs merge=lfs -text

15
README.txt Normal file
View File

@ -0,0 +1,15 @@
Please add your content into the section folder. It should have the following structure:
(obviously, you should replase sections and subsectionX with the section name and the subsection name)
OCRudoku-first-defense/
├── main.txt
├── README.txt
└── sections
├── section1
│   └── section1.tex
└── section2
├── subsection1
│   └── subsection2.tex
└── subsection2
└── subsection2.tex

42
main.tex Normal file
View File

@ -0,0 +1,42 @@
\documentclass[12pt]{article}
\usepackage{graphicx} % Required for inserting images
%\usepackage[margin=0.5cm]{geometry} % Définit toutes les marges à 2cm
\usepackage{graphicx} % Required for inserting images
\usepackage[T1]{fontenc}
\usepackage{fancyhdr}
\usepackage[table,xcdraw]{xcolor}
\usepackage{float}
\title{First Defense Report}
\author{ Lilian Labat, Luca De-Donno, Louis Gallet }
\date{November 2024}
\begin{document}
\pagestyle{fancy}
\fancyhead{}
\fancyhead[RO,LE]{\textbf{OCRudoku - First Defense Report}}
\maketitle
\newpage
\tableofcontents % Sommaire
\newpage
\section{Introduction}
\input{sections/introduction/introduction}
\section{Membres du projet}
\input{sections/membres-projet/membres-projet}
\newpage
\section{Répartition des tâches}
\input{sections/repartition-des-taches/repartition-des-taches}
\end{document}

View File

@ -0,0 +1 @@
This document provides an update on the progress of the project undertaken by OCRudoku leading up to the first review, covering the period from September to November. It discusses a range of elements, including challenges encountered and the implementation of various features. The use of most methods is detailed in the corresponding section.

View File

@ -0,0 +1,11 @@
\subsection{Lilian Labat (Project Manager)}
To be completed: Lilian's bio
\subsection{Luca De-Donno}
To be completed: Luca's bio
\subsection{Louis Gallet}
Louis Gallet has been passionate about computers and programming from a young age. Alongside his coursework, he completed various independent projects in his free time. In his first year at EPITA, he served as project manager for the S2 project. This year, he is motivated to succeed in this new challenge, now in C programming. AI is a field that fascinates him, and he hopes to make it one of his areas of expertise. Contributing to the development of a neural network as part of this project is an opportunity he plans to fully leverage.

View File

@ -0,0 +1,48 @@
Below is the task allocation for the first project review:
% Please add the following required packages to your document preamble:
% \usepackage[table,xcdraw]{xcolor}
% Beamer presentation requires \usepackage{colortbl} instead of \usepackage[table,xcdraw]{xcolor}
\begin{table}[H]
\begin{tabular}{llll}
Task / Member & Lilian & Luca & Louis \\
\rowcolor[HTML]{C0C0C0}
Image Management & & & \\
Preprocessing & Principal & Secondary & \\
Rotation & Secondary & & Principal \\
Segmentation & Principal & & Secondary \\
\rowcolor[HTML]{C0C0C0}
OCR & & & \\
Neural Network & Principal & & Secondary \\
Image Bank Management & & Principal & Secondary \\
Training Management & Secondary & Principal & \\
\rowcolor[HTML]{C0C0C0}
Project Management & & & \\
Establishing Work Methods & Principal & & Secondary \\
Task Assignment & Secondary & & Principal \\
\rowcolor[HTML]{C0C0C0}
Git & & & \\
Repository Setup & Principal & Secondary & \\
Access Management & & Principal & Secondary \\
Git Security Management & & Secondary & Principal \\
CI/CD Management & & & Principal \\
P2P Checking & Principal & Principal & Principal \\
\rowcolor[HTML]{C0C0C0}
Other & & & \\
Report Writing & & Secondary & Principal \\
Solver Creation & & Principal & \\
GUI Implementation & Secondary & Principal &
\end{tabular}
\end{table}
\newpage
\subsection{Image Management}
\input{sections/repartition-des-taches/gestion-de-l-image/gestion-de-l-image}
\subsection{OCR}
\include{sections/repartition-des-taches/OCR/ocr}
\subsection{Project Management}
\include{sections/repartition-des-taches/gestion-du-projet/gestion-du-projet}
\subsection{Git}
\include{sections/repartition-des-taches/git/git}
\subsection{Other}
\include{sections/repartition-des-taches/autre/autre}