-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmy_node.cpp
1263 lines (1026 loc) · 36.5 KB
/
my_node.cpp
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
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// Se incluyó el siguiente header de la biblioteca
// estanda de C para operaciones de entrada y salida
#include <stdio.h>
// Se incluyó el siguiente header de la biblioteca
// estanda de C para gestion de memoria dinamica,
// control de procesos y otras
#include <stdlib.h>
// Se incluyo el siguiente header debido a que usaremos
// funciones matematicas
#include <math.h>
// Se incluyó debido a que se usa la funcion strcpy
#include <string.h>
//***
//***Insertar aqui los prototipos de nuestras funciones
//***
void geoLeerParametrosDeControlDeArchivoDeTexto();
void readRGBImageFromBMPFile(char *filename);
void geoInsertYourCodeHere();
void geoGetIntensityImageFromRGBimage();
void geoDrawALinealSegmentOnIntensityImage();
void geoDrawACircleOnIntensityImage();
void geoSaveIntensityImageIn_YUV400_file(unsigned char *pIntensity, char* filename);
void geoChangeImageCoordinateSystemFromLowerLeftSideToUpperLeftSide(unsigned char *pIntensity, unsigned char *presult);
int SaveIntensityImageIn_BMP_file(unsigned char *pintensity, char *filename);
int SaveRGBImageIn_BMP_file(unsigned char *prgb, char *filename);
void geoGetHistogramAndProbabilityDensityFunctionOfIntensityValues();
void geoGetMeanMeanOfSquaresAndVarianceOfIntensityValues();
void geoGetMeanImage();
void geoGetVariance();
void getXGradient();
void getYGradient();
void magGradientes();
void umbralization();
//***
//***Insertar aqui las definiciones de nuestros contenedores
//***(estructuras)
//***
// La siguiente definicion describe el contenedor que
// usaremos para guardar los parametros de control
// de flujo del programa
//Contenedor de imagenes
struct pInputImage
{
int width; // ancho de imagenes
int height; // alto de imagenes
unsigned char *prgb; // imagen rgb de entrada
unsigned char *pintensity; // imagen de intensidad
unsigned char *pthresholdedIntensity; // imagen resultado
unsigned char *pdrawnLinealSegmentOnIntensity; // imagen resultado
unsigned char *pdrawnCircleOnIntensity; // imagen resultado
int h[256];
double p[256];
double ms; // Valor cuadrático medio
double med; // Valor medio
double var; // Varianza
double *pmeanImage; // Imagen de media
unsigned char *pmeanImage_uc; // Imagen de media uc
double *pvarianceImage; // Imagen de varianza
unsigned char *pvarianceImage_uc; // Imagen de varianza
double *pXGradient; // Double para calcular gradiente en X
unsigned char *pXGradient_uc; // Unsigned chart para guardar la imagen de gradientes en x
double *pYGradient; // Double para calcular gradiente en Y
unsigned char *pYGradient_uc; // Unsigned chart para guardar la imagen de gradientes en y
double *magnitudGra; // Double para magnitud de gradientes
unsigned char *magnitudGra_uc; // UC para magnitud de gradientes
double *umbrali; // Double para imagen binaria (bordes)
unsigned char *umbrali_uc; // uc para imagen binaria (bordes)
};
// Contenedor de parametros de control
struct contenedor_de_parametros_de_control
{
int width; // ancho de las imagenes
int height; // alto de las imagenes
char pathAndInputImageFileName[256]; // directorio de entrada
char pathOfOutputDirectory[256]; // directorio de salida
int xi; // (xi,yi) punto inicial del segmento lineal
int yi;
int xf; // (xf,yf) punto final del segmento lineal
int yf;
int cx; // (cx,cy) centro del circulo
int cy;
int r; // radio del circulo
int umbral; // Umbral
};
//***
//***Insertar aqui las definiciones de variables globales,
//***que son aquellas variables que se podran acceder desde
//***cualquier funcion dentro de este archivo
//***
// El siguiente puntero global apuntara al contenedor que
// usaremos para guardar los valores de control de flujo
// del programa que se leeran de un archivo de texto
struct contenedor_de_parametros_de_control *p_parametros;
// El siguiente puntero global apuntara al contenedor que
// usaremos para guardar las imagenes que utilizaremos
// en el programa
struct pInputImage *pInputImage;
// La siguiente variable global se usara como contador
// el numero de datos leidos
int numeroDeDatosLeidos=0;
//***
//***Insertar aqui las constantes del programa
//***
#define PI 3.141592652
// Inicio de programa principal
int main()
{
// definición de variables locales
int i; //contador
int width, height;
// Despliegue de autoría en el terminal
printf("******************************************************************\n");
printf("** Calculo de imagen de intensidad y dibujo de figuras basicas **\n");
printf("** Vision por Computador **\n");
printf("******************************************************************\n");
printf("\n");
// Reservando memoria de contenedor p_parametros
p_parametros = (struct contenedor_de_parametros_de_control *)malloc(sizeof(struct contenedor_de_parametros_de_control));
// Esta función lee los parámetros de control de flujo del
// programa desde un archivo de texto y los almacena en el
// contenedor p_parametros
geoLeerParametrosDeControlDeArchivoDeTexto();
// Reservando memoria para la estructura pInputImage
pInputImage = (struct pInputImage *)malloc(sizeof(struct pInputImage));
pInputImage->width=p_parametros->width;
pInputImage->height=p_parametros->height;
// Reservando e inicializando la memoria de las imagenes del contenedor pInputImage
width=p_parametros->width;
height=p_parametros->height;
pInputImage->prgb = (unsigned char*)malloc(sizeof(unsigned char)*width*height*3);
pInputImage->pintensity =(unsigned char*)malloc(sizeof(unsigned char)*width*height);
pInputImage->pthresholdedIntensity =(unsigned char*)malloc(sizeof(unsigned char)*width*height);
pInputImage->pdrawnLinealSegmentOnIntensity =(unsigned char*)malloc(sizeof(unsigned char)*width*height);
pInputImage->pdrawnCircleOnIntensity =(unsigned char*)malloc(sizeof(unsigned char)*width*height);
pInputImage->pmeanImage = (double*)malloc(sizeof(double)*width*height);
pInputImage->pmeanImage_uc = (unsigned char*)malloc(sizeof(unsigned char)*width*height);
pInputImage->pvarianceImage = (double*)malloc(sizeof(double)*width*height);
pInputImage->pvarianceImage_uc = (unsigned char*)malloc(sizeof(unsigned char)*width*height);
pInputImage->pXGradient = (double*)malloc(sizeof(double)*width*height);
pInputImage->pXGradient_uc = (unsigned char*)malloc(sizeof(unsigned char)*width*height);
pInputImage->pYGradient = (double*)malloc(sizeof(double)*width*height);
pInputImage->pYGradient_uc = (unsigned char*)malloc(sizeof(unsigned char)*width*height);
pInputImage->magnitudGra = (double*)malloc(sizeof(double)*width*height);
pInputImage->magnitudGra_uc = (unsigned char*)malloc(sizeof(unsigned char)*width*height);
pInputImage->umbrali = (double*)malloc(sizeof(double)*width*height);
pInputImage->umbrali_uc = (unsigned char*)malloc(sizeof(unsigned char)*width*height);
// Cada píxel se inicializa en cero
for (i=0;i<width*height*3;i++) pInputImage->prgb[i]=0;
for (i=0;i<width*height;i++) {
pInputImage->pintensity[i]=0;
pInputImage->pthresholdedIntensity[i]=0;
pInputImage->pdrawnLinealSegmentOnIntensity[i]=0;
pInputImage->pdrawnCircleOnIntensity[i]=0;
pInputImage->pmeanImage_uc[i] = 0;
pInputImage->pmeanImage[i] = 0.0;
pInputImage->pvarianceImage_uc[i] = 0;
pInputImage->pvarianceImage[i] = 0.0;
pInputImage->pXGradient_uc[i] = 0;
pInputImage->pXGradient[i] = 0.0;
pInputImage->pYGradient_uc[i] = 0;
pInputImage->pYGradient[i] = 0.0;
pInputImage->magnitudGra_uc[i] = 0;
pInputImage->magnitudGra[i] = 0.0;
pInputImage->umbrali[i] = 0;
pInputImage->umbrali_uc[i] = 0.0;
}
// Leyendo la imagen RGB de archivo en formato BMP
readRGBImageFromBMPFile(p_parametros->pathAndInputImageFileName);
// Insertar codigo en esta funcion
geoInsertYourCodeHere();
// Liberando memoria de los contenedores e imagenes
free(pInputImage->pvarianceImage);
free(pInputImage->pvarianceImage_uc);
free(pInputImage->pmeanImage_uc);
free(pInputImage->pmeanImage);
free(pInputImage->pXGradient_uc);
free(pInputImage->pXGradient);
free(pInputImage->pYGradient_uc);
free(pInputImage->pYGradient);
free(pInputImage->magnitudGra_uc);
free(pInputImage->magnitudGra);
free(pInputImage->umbrali_uc);
free(pInputImage->umbrali);
free(pInputImage->prgb);
free(pInputImage->pintensity);
free(pInputImage->pthresholdedIntensity);
free(pInputImage->pdrawnLinealSegmentOnIntensity);
free(pInputImage->pdrawnCircleOnIntensity);
free(pInputImage);
free(p_parametros);
return 0;
}
// Fin de programa principal
//*******************************************************
//*******************************************************
//***** Introduzca aqui sus funciones *****
//*******************************************************
//*******************************************************
// Esta funcion es para insertar nuevo codigo.
void geoInsertYourCodeHere()
{
int i;
FILE *text; // Se declara el archivo FILE
// Abriendo archivo en modo de escritura
char here[256] = "output/momentos.txt";
text = fopen(here, "w");
if (!text) {
printf("No se pudo abrir el archivo: resultados.txt\n");
exit(1);
}
fprintf(text, "Datos computados:\n\n");
// Cerrando archivo
fclose(text);
// This block saves the readed image
char pathAndFileName[256];
strcpy(pathAndFileName,"output/rgb.bmp");
SaveRGBImageIn_BMP_file(pInputImage->prgb, pathAndFileName);
// Calculando la imagen de intensidad
geoGetIntensityImageFromRGBimage();
// Almacenando resultado en archivo en formato YUV400
// strcpy(pathAndFileName,"output/intensity.yuv");
// geoSaveIntensityImageIn_YUV400_file(pInputImage->pintensity, pathAndFileName);
strcpy(pathAndFileName,"output/intensity.bmp");
SaveIntensityImageIn_BMP_file(pInputImage->pintensity, pathAndFileName);
// Dibujando segmento lineal sobre imagen de intensidad
//geoDrawALinealSegmentOnIntensityImage();
//Almacenando resultado en archivo en formato YUV400
//strcpy(pathAndFileName,"output/linearSegment.yuv");
//geoSaveIntensityImageIn_YUV400_file(pInputImage->pdrawnLinealSegmentOnIntensity, pathAndFileName);
//strcpy(pathAndFileName,"output/linearSegment.bmp");
//SaveIntensityImageIn_BMP_file(pInputImage->pdrawnLinealSegmentOnIntensity, pathAndFileName);
// Dibujando circulo sobre imagen de intensidad
//geoDrawACircleOnIntensityImage();
//Almacenando resultado en archivo en formato YUV400
//strcpy(pathAndFileName,"output/circle.yuv");
//geoSaveIntensityImageIn_YUV400_file(pInputImage->pdrawnCircleOnIntensity, pathAndFileName);
//strcpy(pathAndFileName,"output/circle.bmp");
//SaveIntensityImageIn_BMP_file(pInputImage->pdrawnCircleOnIntensity, pathAndFileName);
//Calculando Histograma y densidad de probabilidad
geoGetHistogramAndProbabilityDensityFunctionOfIntensityValues();
//Calculando valor medio cuadrado y varianza
geoGetMeanMeanOfSquaresAndVarianceOfIntensityValues();
//Calculando la imagen media
geoGetMeanImage();
// Salvando la imagen de valores medios en formato bmp
strcpy(pathAndFileName,"output/imagenDeMediasLocales.bmp");
SaveIntensityImageIn_BMP_file(pInputImage->pmeanImage_uc, pathAndFileName);
// Obteniendo la imagen de varianzas locales de intensidad
geoGetVariance();
// Salvando la imagen de varianza local de intensidad bmp
strcpy(pathAndFileName,"output/imagenDeVarianzasLocales.bmp");
SaveIntensityImageIn_BMP_file(pInputImage->pvarianceImage_uc, pathAndFileName);
// Calculando gradiente en X
getXGradient();
// Salvando la imagen de gradientes X en formato bmp
strcpy(pathAndFileName,"output/gradienteSobelX.bmp");
SaveIntensityImageIn_BMP_file(pInputImage->pXGradient_uc, pathAndFileName);
// Calculando gradiente en Y
getYGradient();
// Salvando la imagen de gradientes X en formato bmp
strcpy(pathAndFileName,"output/gradienteSobelY.bmp");
SaveIntensityImageIn_BMP_file(pInputImage->pYGradient_uc, pathAndFileName);
// Calculando magnitud de gradiente
magGradientes();
// Salvando la imagen de magnitud de gradientes en formato bmp
strcpy(pathAndFileName,"output/magGradientes.bmp");
SaveIntensityImageIn_BMP_file(pInputImage->magnitudGra_uc, pathAndFileName);
// Umbralizando la imágen
umbralization();
// Salvando la imagen de bordes en formato bmp
strcpy(pathAndFileName,"output/imagenDeBordes.bmp");
SaveIntensityImageIn_BMP_file(pInputImage->umbrali_uc, pathAndFileName);
}
void umbralization()
{
int h, w, i, y, x, c, u;
c = 0;
int *bord; // Allow us to build borders
double *g; // Contains Magnitude of Grad
g = pInputImage->magnitudGra;
u = p_parametros->umbral; // Is the given umbral
h = pInputImage->height;
w = pInputImage->width;
// Allocating memory for bord
bord = (int *)malloc(sizeof(int)*w*h);
for (i = 0; i < h*w; i++)
{
bord[i] = 0; // Inicializando bord
}
for (y=1; y<(h-1); y++)
{
for (x=1; x<(w-1); x++)
{
if (g[y*w+x]>=u) // Si la magnitud de gradiente es mayor que el umbral
{
bord[y*w+x]=255; // Asignar color blanco
c = c+1;
}
else
{
bord[y*w+x]=0; // De otro modo, asignarlo negro
}
}
}
// Saving result
for (i = 0; i < w*h; i++)
{
pInputImage->umbrali[i] = (double)bord[i];
pInputImage->umbrali_uc[i] = (unsigned char)bord[i];
}
// Freeing memory
free(bord);
printf(" La cantidad de pixeles que conforman bordes son: %i\n", c);
}
void magGradientes()
{
int h, w, i, y, x;
double *g, *gx, *gy;
gx = pInputImage->pXGradient;
gy = pInputImage->pYGradient;
h = pInputImage->height;
w = pInputImage->width;
// Allocating memory for g image
g = (double *)malloc(sizeof(double)*w*h);
for (i = 0; i < h*w; i++)
{
g[i] = 0.0;
}
for (y=1; y<(h-1); y++)
{
for (x=1; x<(w-1); x++)
{
g[y*w+x] = sqrt( (double)(gx[y*w+x])*(double)(gx[y*w+x]) + (double)(gy[y*w+x])*(double)(gy[y*w+x]) );
}
}
// Saving result
for (i = 0; i < w*h; i++)
{
pInputImage->magnitudGra[i] = g[i];
}
for (i = 0; i < w*h; i++)
{
if (fabs(g[i])>=255.0)
{
pInputImage->magnitudGra_uc[i] = 255.0;
}
else
{
pInputImage->magnitudGra_uc[i] = fabs(g[i]);
}
}
// Freeing memory
free(g);
}
void getYGradient()
{
double *pgy;
int y, x, w, h, i;
unsigned char *pY;
pY = pInputImage->pintensity;
h = pInputImage->height;
w = pInputImage->width;
// Allocating memory for pgy image
pgy = (double *)malloc(sizeof(double)*w*h);
for (i = 0; i < h*w; i++)
{
pgy[i] = 0.0;
}
// Getting Y gradients
for (y = 1; y<h-1 ; y++)
{
for (x = 1; x < w-1; x++)
{
pgy[y*w+x]= (1.0/8.0)*((double)pY[(y+1)*w+(x-1)] +
+2.0*(double)pY[(y+1)*w+x] +
+(double)pY[(y+1)*w+(x+1)] +
-(double)pY[(y-1)*w+(x-1)] +
-2.0*(double)pY[(y-1)*w+x] +
-(double)pY[(y-1)*w+(x+1)]);
}
}
// Saving result
for (i = 0; i < w*h; i++)
{
pInputImage->pYGradient[i] = pgy[i];
}
for (i = 0; i < w*h; i++)
{
if (fabs(pgy[i])>=255.0)
{
pInputImage->pYGradient_uc[i] = 255;
}
else
{
pInputImage->pYGradient_uc[i] = fabs(pgy[i]);
}
}
// Freeing memory
free(pgy);
}
void getXGradient()
{
double *pgx;
int y, x, w, h, i;
unsigned char *pY;
pY = pInputImage->pintensity;
h = pInputImage->height;
w = pInputImage->width;
// Allocating memory for pgx image
pgx = (double *)malloc(sizeof(double)*w*h);
for (i = 0; i < h*w; i++)
{
pgx[i] = 0.0;
}
// Getting X gradients
for (y = 1; y<h-1 ; y++)
{
for (x = 1; x < w-1; x++)
{
pgx[y*w+x]= (double)(1.0/8.0)*((double)pY[(y+1)*w+(x+1)] +
+2.0*(double)pY[y*w+(x+1)] +
+(double)pY[(y-1)*w+(x+1)] +
-(double)pY[(y+1)*w+(x-1)] +
-2.0*(double)pY[y*w+(x-1)] +
-(double)pY[(y-1)*w+(x-1)]);
}
}
// Saving result
for (i = 0; i < w*h; i++)
{
pInputImage->pXGradient[i] = pgx[i];
}
for (i = 0; i < w*h; i++)
{
if (fabs(pgx[i])>=255.0)
{
pInputImage->pXGradient_uc[i]=255;
}
else
{
pInputImage->pXGradient_uc[i] = (unsigned char)fabs(pgx[i]);
}
}
// Freeing memory
free(pgx);
}
void geoGetVariance()
{
double *ptempImage, *pm;
unsigned char *pi;
int x, y, w, h, i, W, C, n, m;
h = pInputImage->height;
w = pInputImage->width;
pi = pInputImage->pintensity;
pm = pInputImage->pmeanImage;
// Allocating memory for temporal image
ptempImage = (double*)malloc(sizeof(double)*w*h);
for ( i = 0; i < h*w; ++i)
{
ptempImage[i]=0.0;
}
// Getting the variance image
W=1;
C=(2*W+1)*(2*W+1)-1;
for (y = W; y < (h-W); y++)
{
for (x = W; x < (w-W); x++)
{
for (n=-W; n<=W; n++)
{
for (m=-W; m<=W; m++)
{
ptempImage[y*w+x] = ptempImage[y*w+x]+
(double)pi[(y+n)*w+x+m]*(double)pi[(y+n)*w+x+m]-
pm[y*w+x]*pm[y*w+x];
}
}
ptempImage[y*w+x] = ptempImage[y*w+x]/(double)C;
}
}
// Saving result
for (i = 0; i < h*w; i++)
{
pInputImage->pvarianceImage[i]=ptempImage[i];
pInputImage->pvarianceImage_uc[i] = (unsigned char)ptempImage[i];
}
free(ptempImage);
}
void geoGetHistogramAndProbabilityDensityFunctionOfIntensityValues()
{
int w, h, i, N, intensityValue, his[256];
double p[256];
h = pInputImage->height;
w = pInputImage->width;
N = h*w;
//Initialization
for (i = 0;i < 256; i++)
{
his[i] = 0;
p[i] = 0.0;
}
//Getting the histogram of the intensity values
for(i = 0;i < w*h; i++)
{
intensityValue = pInputImage->pintensity[i];
his[intensityValue] = his[intensityValue]+1;
}
printf("\nLos histogramas son:\n");
for(i = 0;i < 256; i++)
{
printf(" Histograma[%d]: %d\n", i , his[i]);
}
//Getting the probability density function of the intensity values
for(i=0; i<256 ;i++)
{
p[i]=(double)his[i]/(double)N;
}
printf("\nLa densidad de probabilidad es:\n");
for(i=0;i<256;i++)printf(" P[%d]: [%f]\n", i, p[i]);
//saving results
for(i=0;i<256;i++)
{
pInputImage->h[i]=his[i];
pInputImage->p[i]=p[i];
}
FILE *text;
//Abriendo archivo en modo de escritura
char here[256] = "output/momentos.txt";
text = fopen(here, "at");
if (!text) {
printf("No se pudo abrir el archivo: resultados.txt\n");
exit(1);
}
fprintf(text,"\nLos histogramas son:\n");
for(i = 0;i < 256; i++)
{
fprintf(text," Histograma[%d]: %d\n", i , his[i]);
}
//Cerrando archivo
fclose(text);
}
void geoGetMeanMeanOfSquaresAndVarianceOfIntensityValues()
{
int i;
double m, ms, var;
//Getting the mean of intensity values
m=0.0;
for(i=0;i<256;i++){
m = m+(double)i*pInputImage->p[i];
}
printf("\n El valor medio es: [%f]\n", m);
//Getting the mean of squares of the intensity values
ms=0.0;
for(i=0;i<256;i++){
ms=ms+(double)(i*i)*pInputImage->p[i];
}
printf("\n El valor medio cuadrático es: [%f]\n", ms);
//Getting the variance of the intensity values
var = 0.0;
for(i=0;i<256;i++){
var=var+((double)i-m)*((double)i-m)*pInputImage->p[i];
}
printf("\n La varianza es: [%f]\n",var);
pInputImage->ms=ms;
pInputImage->med=m;
pInputImage->var=var;
FILE *text;
//Abriendo archivo en modo de escritura
char here[256] = "output/momentos.txt";
text = fopen(here, "at");
if (!text) {
printf("No se pudo abrir el archivo: resultados.txt\n");
exit(1);
}
fprintf(text,"\n El valor medio es: [%f]\n", m);
fprintf(text,"\n El valor medio cuadrático es: [%f]\n", ms);
fprintf(text,"\n La varianza es: [%f]\n",var);
//Cerrando archivo
fclose(text);
}
void geoGetMeanImage()
{
double *ptempImage, sum;
unsigned char *pi;
int x,y,w,h,i,W,C,n,m;
h=pInputImage->height;
w=pInputImage->width;
pi=pInputImage->pintensity;
//Allocating memory fot tempral image
ptempImage = (double *)malloc(sizeof(double)*w*h);
for(i=0;i<h*w;i++)ptempImage[i]=0.0;
//Getting the mean image
W=1;
C=(2*W+1)*(2*W+1);
for(y=W;y<(h-W);y++){
for(x=W;x<(w-W);x++){
sum =0.0;
for(n=-W;n<=W;n++){
for(m=-W;m<=W;m++){
sum = sum + (double)pi[(y+n)*w+x+m];
}
}
ptempImage[y*w+x]=sum/(double)C;
}
}
//saving result
for (i=0;i<h*w;i++)
{
pInputImage->pmeanImage[i] = ptempImage[i];
pInputImage->pmeanImage_uc[i] = (unsigned char)ptempImage[i];
}
//Freeing memory
free(ptempImage);
}
//Esta funcion obtiene la imagen de intensidad de
//una imagen RGB
void geoGetIntensityImageFromRGBimage()
{
int i,j;
int width, height;
//Renombrando para facilitar código
width= pInputImage->width;
height=pInputImage->height;
//Calculando la imagen de intensidad. El resultado será almacenado
//en el espacio que fue alocado para tal fin en nuestra estructura
//pInputImage
for (j=0;j<height; j++) {
for (i=0;i<width; i++) {
pInputImage->pintensity[j*width+i] =
(unsigned char)(0.299*(double)pInputImage->prgb[3*j*width+3*i]+
0.587*(double)pInputImage->prgb[3*j*width+3*i+1]+
0.114*(double)pInputImage->prgb[3*j*width+3*i+2]);
}
}
}
//Esta funcion dibuja un segmento lineal sobre
//la imagen de intensidad
void geoDrawALinealSegmentOnIntensityImage()
{
int x, y, i;
double alfa;
int xi, yi, xf, yf;
int height, width;
xi=p_parametros->xi;
yi=p_parametros->yi;
xf=p_parametros->xf;
yf=p_parametros->yf;
height=pInputImage->height;
width=pInputImage->width;
//Copiando la imagen de intensidad en la imagen que contendrá el segmento lineal
for (i=0;i<pInputImage->height*pInputImage->width;i++)
pInputImage->pdrawnLinealSegmentOnIntensity[i]=pInputImage->pintensity[i];
//Por cada valor del parámetro alfa se calcula un punto usando las ecuaciones
//paramétricas de un segmento lineal. Cada punto se pone en 255 (blanco) en la
//imagen de salida. Alfa varía entre 0.0 y 1.0 en pasos de GEO_ALFA_STEP. Cuando
//alfa en 0.0 se estaría en la posición inicial del segmento y cuando alfa es
//1.0 en el punto final del segmento.
for (alfa=0.0;alfa<=1.0;alfa=alfa+0.001) {
//x=xi+alfa*(xf-xi)
x=(int)((double)xi+alfa*((double)xf-(double)xi));
//y=iy+alfa*(fy-iy)
y=(int)((double)yi+alfa*((double)yf-(double)yi));
//Dibujando el punto (x,y) siempre y cuando no esté fuera de la imagen
if ((y>=0)&&(x>=0)&&(y<height)&&(x<width)) {
pInputImage->pdrawnLinealSegmentOnIntensity[y*width+x]=255;
}
}
}
//Esta funcion dibuja un circulo sobre la imagen de
//intensidad
void geoDrawACircleOnIntensityImage()
{
int x, y, i;
double angle;
int cx, cy, r;
int height, width;
cx=p_parametros->cx;
cy=p_parametros->cy;
r=p_parametros->r;
height=pInputImage->height;
width=pInputImage->width;
//Copiando la imagen de intensidad en la imagen que contendrá
//el círculo
for (i=0;i<height*width;i++)
pInputImage->pdrawnCircleOnIntensity[i]=pInputImage->pintensity[i];
//Por cada valor del parámetro angle se calcula un punto usando las ecuaciones
//paramétricas de un círculo. Cada punto se pone en 255 (blanco) en la
//imagen de salida. angle varía entre 0.0 y 2*PI en pasos de 0.001. Cuando
//angle en 0.0 se estaría en la posición inicial del círculo (a una distancia
//radius sobre el eje horizontal del círculo) y cuando angle es 2*PI ya
//habríamos dado la vuelta y estaríamos cerrando el círculo
for (angle=0.0;angle<2.0*(double)PI;angle=angle+0.001) {
//x=cx+r*cos(angle)
x=(int)((double)cx+(double)r*cos(angle));
//y=cy+r*sin(angle)
y=(int)((double)cy+(double)r*sin(angle));
//Dibujando el punto (x,y) siempre y cuando no esté fuera de la imagen
if ((y>=0)&&(x>=0)&&(y<height)&&(x<width)) {
pInputImage->pdrawnCircleOnIntensity[y*width+x]=255;
}
}
}
//Esta funcion lee los parametros de archivo de parametros
//de control
void geoLeerParametrosDeControlDeArchivoDeTexto()
{
FILE *archivo;
char d1[256], d2[256];
int res;
printf("Leyendo los datos de entrada:\n");
//Abriendo archivo en mode de lectura
char nombreDeArchivo[256]="current_control_parameters.txt";
archivo = fopen(nombreDeArchivo, "r");
if (!archivo) {
printf("No se pudo abrir el archivo: current_control_parameters.txt\n");
exit(1);
}
//Leyendo datos linea por linea
//Leyendo path
res=fscanf(archivo, "%s %s\n", d1, d2);
if (res==0) {printf("Error leyendo dato No. %d de archivo de parametros de control\n", numeroDeDatosLeidos); exit(0);}
strcpy(p_parametros->pathAndInputImageFileName,d2);
printf(" Entrada: %s\n", p_parametros->pathAndInputImageFileName);
numeroDeDatosLeidos++;
//Leyendo width
res=fscanf(archivo, "%s %s\n", d1, d2);
if (res==0) {printf("Error leyendo dato No. %d de archivo de parametros de control\n", numeroDeDatosLeidos); exit(0);}
p_parametros->width=(int)atof(d2);
printf(" width: %d\n", p_parametros->width);
numeroDeDatosLeidos++;
//Leyendo height
res=fscanf(archivo, "%s %s\n", d1, d2);
if (res==0) {printf("Error leyendo dato No. %d de archivo de parametros de control\n", numeroDeDatosLeidos); exit(0);}
p_parametros->height=(int)atof(d2);
printf(" height: %d\n", p_parametros->height);
numeroDeDatosLeidos++;
//Leyendo umbral
res=fscanf(archivo, "%s %s\n", d1, d2);
if (res==0) {printf("Error leyendo dato No. %d de archivo de parametros de control\n", numeroDeDatosLeidos); exit(0);}
p_parametros->umbral=(int)atof(d2);
printf(" Umbral: %d\n", p_parametros->umbral);
numeroDeDatosLeidos++;
//Leyendo directorio de salida
res=fscanf(archivo, "%s %s\n", d1, d2);
if (res==0) {printf("Error leyendo dato No. %d de archivo de parametros de control\n", numeroDeDatosLeidos); exit(0);}
strcpy(p_parametros->pathOfOutputDirectory,d2);
printf(" Salida: %s\n", p_parametros->pathOfOutputDirectory);
numeroDeDatosLeidos++;
//Cerrando archivo
fclose(archivo);
}
//****************************************
//****************************************
//** FUNCIONES DE LECTURA Y ESCRITURA **
//** DE IMAGENES **
//****************************************
//****************************************
struct BMPHeader
{
char bfType[3]; /* "BM" */
int bfSize; /* Size of file in bytes */
int bfReserved; /* set to 0 */
int bfOffBits; /* Byte offset to actual bitmap data (= 54) */
int biSize; /* Size of BITMAPINFOHEADER, in bytes (= 40) */
int biWidth; /* Width of image, in pixels */
int biHeight; /* Height of images, in pixels */
short biPlanes; /* Number of planes in target device (set to 1) */
short biBitCount; /* Bits per pixel (24 in this case) */
int biCompression; /* Type of compression (0 if no compression) */
int biSizeImage; /* Image size, in bytes (0 if no compression) */
int biXPelsPerMeter; /* Resolution in pixels/meter of display device */
int biYPelsPerMeter; /* Resolution in pixels/meter of display device */
int biClrUsed; /* Number of colors in the color table (if 0, use
maximum allowed by biBitCount) */
int biClrImportant; /* Number of important colors. If 0, all colors
are important */
};
//Esta funcion lee imagen RGB de archivo en formato BMP
void readRGBImageFromBMPFile(char *filename)
{
FILE *fd;
int width, height;
int i, j;
int n;
fd = fopen(filename, "rb");
if (fd == NULL)
{
printf("Error: fopen failed\n");
return;
}
unsigned char header[54];
// Read header
n=fread(header, sizeof(unsigned char), 54, fd);
if (n==0) {printf("No se pudieron leer datos\n"); exit(0);}
// Capture dimensions
width = *(int*)&header[18];
height = *(int*)&header[22];
int padding = 0;
// Calculate padding
while ((width * 3 + padding) % 4 != 0)
{
padding++;
}
// Compute new width, which includes padding