Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
M
module_image
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
VWALUMA JEAN-MARC p2108190
module_image
Commits
e4758638
Commit
e4758638
authored
3 weeks ago
by
Jean-Marc
Browse files
Options
Downloads
Patches
Plain Diff
final2
parent
9d54f66e
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Pipeline
#190694
failed
3 weeks ago
Stage: test
Stage: deploy
Changes
5
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
README.md
+10
-0
10 additions, 0 deletions
README.md
bin/affichage
+0
-0
0 additions, 0 deletions
bin/affichage
obj/ImageViewer.o
+0
-0
0 additions, 0 deletions
obj/ImageViewer.o
obj/mainAffichage.o
+0
-0
0 additions, 0 deletions
obj/mainAffichage.o
src/ImageViewer.h
+4
-5
4 additions, 5 deletions
src/ImageViewer.h
with
14 additions
and
5 deletions
README.md
+
10
−
0
View file @
e4758638
...
...
@@ -7,8 +7,18 @@ Pour voir le résultat de l'exécution du script, il faut aller sur la forge dan
# Module Image, UE LIFAPCD
## Contributeurs et License
-
VWALUMA Jean Marc p2108190
-
BECHANI Yasser p2100684
-
BRENNER Remy p1809115
## Pour compiler
-
Pour compiler placez vous dans le repertoire du projet (dans un terminal) et tapez la commande "make"
-
Pour executer tapez soit "bin/exemple" soit "bin/test" soit "bin/affichage" depuis un terminal
## Les fichiers
-
Dans le repertoire src vous trouverez les fichiers .cpp et .h
-
Dans le repertoire obj vous trouverez les fichiers objets de chacun des .cpp
-
Dans le repertoire bin vous trouverez 3 executables permetant de tester le module image.
-
Dans le repertoire data vous trouverez les images sauvées et lues.
-
Dans le repertoire doc vous trouverez la documentation.
## Bugs
-
Lors du premier test des fonctions "sauver" et "ouvrir" le repertoire "data" n'existait pas.
-
Les coordonnées des pixels de l'image sauvé ne sont pas corrects, ils sont divisés par deux.
...
...
This diff is collapsed.
Click to expand it.
bin/affichage
+
0
−
0
View file @
e4758638
No preview for this file type
This diff is collapsed.
Click to expand it.
obj/ImageViewer.o
+
0
−
0
View file @
e4758638
No preview for this file type
This diff is collapsed.
Click to expand it.
obj/mainAffichage.o
+
0
−
0
View file @
e4758638
No preview for this file type
This diff is collapsed.
Click to expand it.
src/ImageViewer.h
+
4
−
5
View file @
e4758638
...
...
@@ -6,7 +6,6 @@
/**
* @class ImageViewer
*
* @brief La classe ImageViewer permettant d'afficher une image avec SDL2.
*
*/
...
...
@@ -34,10 +33,10 @@
class
ImageViewer
{
private
:
SDL_Window
*
window
;
SDL_Renderer
*
renderer
;
SDL_Surface
*
m_surface
;
SDL_Texture
*
m_texture
;
SDL_Window
*
window
;
///< Lien vers la fenêtre SDL
SDL_Renderer
*
renderer
;
///< Lien vers le renderer
SDL_Surface
*
m_surface
;
///< Lien vers la surface
SDL_Texture
*
m_texture
;
///< Lien vers la texture
public
:
...
...
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