IdentifiantMot de passe
Loading...
Mot de passe oublié ?Je m'inscris ! (gratuit)
Navigation

Inscrivez-vous gratuitement
pour pouvoir participer, suivre les réponses en temps réel, voter pour les messages, poser vos propres questions et recevoir la newsletter

MATLAB Discussion :

decouper une image


Sujet :

MATLAB

  1. #1
    Membre à l'essai
    Homme Profil pro
    Développeur informatique
    Inscrit en
    Février 2014
    Messages
    16
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : Tunisie

    Informations professionnelles :
    Activité : Développeur informatique

    Informations forums :
    Inscription : Février 2014
    Messages : 16
    Points : 14
    Points
    14
    Par défaut decouper une image
    salut j'ai une interface graphique je charge une photo par un bouton nommé charger ma tàche c'est d'extraire une partie de l'image chargée et l'enregistrer
    voici une imprime écran qui explique l'interface
    [ATTACH=CONFIG]145859[/ATTA
    Images attachées Images attachées  

  2. #2
    Membre à l'essai
    Homme Profil pro
    Développeur informatique
    Inscrit en
    Février 2014
    Messages
    16
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : Tunisie

    Informations professionnelles :
    Activité : Développeur informatique

    Informations forums :
    Inscription : Février 2014
    Messages : 16
    Points : 14
    Points
    14
    Par défaut code de l'application sans la partie d'extraction
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    79
    80
    81
    82
    83
    84
    85
    86
    87
    88
    89
    90
    91
    92
    93
    94
    95
    96
    97
    98
    99
    100
    101
    102
    103
    104
    105
    106
    107
    108
    109
    110
    111
    112
    113
    114
    115
    116
    117
    118
    119
    120
    121
    122
    123
    124
    125
    126
    127
    128
    129
    130
    131
    132
    133
    134
    135
    136
    function varargout = pfeInterface(varargin)
    % PFEINTERFACE M-file for pfeInterface.fig
    %      PFEINTERFACE, by itself, creates a new PFEINTERFACE or raises the existing
    %      singleton*.
    %
    %      H = PFEINTERFACE returns the handle to a new PFEINTERFACE or the handle to
    %      the existing singleton*.
    %
    %      PFEINTERFACE('CALLBACK',hObject,eventData,handles,...) calls the local
    %      function named CALLBACK in PFEINTERFACE.M with the given input arguments.
    %
    %      PFEINTERFACE('Property','Value',...) creates a new PFEINTERFACE or raises the
    %      existing singleton*.  Starting from the left, property value pairs are
    %      applied to the GUI before pfeInterface_OpeningFcn gets called.  An
    %      unrecognized property name or invalid value makes property application
    %      stop.  All inputs are passed to pfeInterface_OpeningFcn via varargin.
    %
    %      *See GUI Options on GUIDE's Tools menu.  Choose "GUI allows only one
    %      instance to run (singleton)".
    %
    % See also: GUIDE, GUIDATA, GUIHANDLES
     
    % Edit the above text to modify the response to help pfeInterface
     
    % Last Modified by GUIDE v2.5 21-Apr-2014 10:43:32
     
    % Begin initialization code - DO NOT EDIT
    gui_Singleton = 1;
    gui_State = struct('gui_Name',       mfilename, ...
                       'gui_Singleton',  gui_Singleton, ...
                       'gui_OpeningFcn', @pfeInterface_OpeningFcn, ...
                       'gui_OutputFcn',  @pfeInterface_OutputFcn, ...
                       'gui_LayoutFcn',  [] , ...
                       'gui_Callback',   []);
    if nargin && ischar(varargin{1})
        gui_State.gui_Callback = str2func(varargin{1});
    end
     
    if nargout
        [varargout{1:nargout}] = gui_mainfcn(gui_State, varargin{:});
    else
        gui_mainfcn(gui_State, varargin{:});
    end
    % End initialization code - DO NOT EDIT
     
     
    % --- Executes just before pfeInterface is made visible.
    function pfeInterface_OpeningFcn(hObject, eventdata, handles, varargin)
    % This function has no output args, see OutputFcn.
    % hObject    handle to figure
    % eventdata  reserved - to be defined in a future version of MATLAB
    % handles    structure with handles and user data (see GUIDATA)
    % varargin   command line arguments to pfeInterface (see VARARGIN)
     
    % Choose default command line output for pfeInterface
    handles.output = hObject;
    movegui('center');
     
    % Update handles structure
    guidata(hObject, handles);
     
    % UIWAIT makes pfeInterface wait for user response (see UIRESUME)
    % uiwait(handles.figure1);
     
     
    % --- Outputs from this function are returned to the command line.
    function varargout = pfeInterface_OutputFcn(hObject, eventdata, handles) 
    % varargout  cell array for returning output args (see VARARGOUT);
    % hObject    handle to figure
    % eventdata  reserved - to be defined in a future version of MATLAB
    % handles    structure with handles and user data (see GUIDATA)
     
    % Get default command line output from handles structure
    varargout{1} = handles.output;
     
     
    % --- Executes on button press in Charger.
    function Charger_Callback(hObject, eventdata, handles)
    % hObject    handle to Charger (see GCBO)
    % eventdata  reserved - to be defined in a future version of MATLAB
    % handles    structure with handles and user data (see GUIDATA)
    global im im2 im3 
    [path,user_cance]=imgetfile();
    if user_cance
        msgbox(sprintf('ERREUR'),'Error','Error');
        return
    end
    im=imread(path);
    im=im2double(im); %converts to double
    im2=im;
     
    axes(handles.axes1);
    f=imshow(im);
     
     
     
     
     
    % --- Executes on button press in Extraire.
    function Extraire_Callback(hObject, eventdata, handles)
    % hObject    handle to Extraire (see GCBO)
    % eventdata  reserved - to be defined in a future version of MATLAB
    % handles    structure with handles and user data (see GUIDATA)
     
    h = imgca;
    imshow(h);
     
     
     
     
    % --- Executes on button press in Enregistrer.
    function Enregistrer_Callback(hObject, eventdata, handles)
    % hObject    handle to Enregistrer (see GCBO)
    % eventdata  reserved - to be defined in a future version of MATLAB
    % handles    structure with handles and user data (see GUIDATA)
     
     
     
     
     
    % --- Executes on button press in Retour.
    function Retour_Callback(hObject, eventdata, handles)
    % hObject    handle to Retour (see GCBO)
    % eventdata  reserved - to be defined in a future version of MATLAB
    % handles    structure with handles and user data (see GUIDATA)
    Acceuil();
     
     
    % --- Executes on button press in Reset.
    function Reset_Callback(hObject, eventdata, handles)
    % hObject    handle to Reset (see GCBO)
    % eventdata  reserved - to be defined in a future version of MATLAB
    % handles    structure with handles and user data (see GUIDATA)
    global im2
    axes(handles.axes1);
    imshow(im2);

Discussions similaires

  1. [Image] Decouper une Image
    Par TheBlackReverand dans le forum Windows Presentation Foundation
    Réponses: 3
    Dernier message: 20/10/2008, 17h05
  2. Réponses: 3
    Dernier message: 24/07/2007, 09h28
  3. decouper une image (.png) avec c++
    Par MSM_007 dans le forum C++
    Réponses: 1
    Dernier message: 07/02/2007, 08h11
  4. decouper une image
    Par cobra85 dans le forum C++Builder
    Réponses: 1
    Dernier message: 06/02/2007, 09h59
  5. [Image]Decouper une image
    Par Elmilouse dans le forum 2D
    Réponses: 4
    Dernier message: 09/12/2004, 21h47

Partager

Partager
  • Envoyer la discussion sur Viadeo
  • Envoyer la discussion sur Twitter
  • Envoyer la discussion sur Google
  • Envoyer la discussion sur Facebook
  • Envoyer la discussion sur Digg
  • Envoyer la discussion sur Delicious
  • Envoyer la discussion sur MySpace
  • Envoyer la discussion sur Yahoo