-
Notifications
You must be signed in to change notification settings - Fork 0
/
ClaseImagen.h
43 lines (38 loc) · 1.58 KB
/
ClaseImagen.h
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
/******************************************************************************************/
/* TPO2 DPOO */
/* ALUMNO: Damian del Campo */
/* LU: 1027477 */
/* CARRERA: Ingenieria en Telecomunicaciones */
/* FECHA: 28/11/2015 */
/* ARCHIVO: ClaseImagen.h */
/* */
/******************************************************************************************/
#ifndef _CLASEIMAGEN_H_INCLUDED_
#define _CLASEIMAGEN_H_INCLUDED_
#include "ClaseComplejo.h"
#include "ClaseLista.h"
#include <fstream>
#include <iostream>
#include <cstring>
#pragma warning(disable:4996)
#pragma warning(disable:4244)
using namespace std;
class IMG_PGM {
private:
//Atributos Privados
public:
//Metodos y Atributos Publicos
float imageWidth, imageHeight;
complejo pixel;
complejo resolucion, centro, semilla;
int intensidadPixel, tamCache, cantDig;
char name[128];
IMG_PGM();
IMG_PGM(complejo, complejo, float, float, char[128], int, int, int, complejo);
~IMG_PGM();
void Set_Imagen(void);
int findMandelbrot(void);
void copiaNombre(char[128], char[128]);
// bool cmp(complejo,complejo,int);
};
#endif