-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmy_node_2.cpp
1092 lines (906 loc) · 37.1 KB
/
my_node_2.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
//Este programa lee una imagen RGB en formato BMP, obtiene la componente de
//intensidad correspondiente, asi como dubuja un segmento lineal y un circulo
//sobre ella. Los resultados se almacenan en archivos en formato YUV400 y BMP.
//Las dimensiones de las imagenes, el directorio de entrada, el directorio de
//salida, y los parametros para dibujar el segmento lineal y el circulo se
//obtienen de un archivo de parametros de control.
//***************COMIENZO PASO (1)***********
//*******************************************
//*********De codeBlocks a ROS***************
//*******************************************
//Se incluyen los siguientes headers para poder hacer uso
//de funciones de ROS en nuestro programa
#include <ros/ros.h>
#include <image_transport/image_transport.h>
#include <cv_bridge/cv_bridge.h>
#include <sensor_msgs/image_encodings.h>
//Se incluyo el siguiente header para poder hacer uso de
//funciones de OpenCV
#include <opencv2/imgproc/imgproc.hpp>
#include <opencv2/highgui/highgui.hpp>
//Se incluyen los siguientes prototipos de funciones
void geoDisplayInWindowIntensityImage(const unsigned char *pIntensityImage, char windowName[256]);
void geoCopyTheRGBImageDataFromTheOpencvImageStructureToOurpInputImageStructure();
void geoFunctionToHandlePublishedImage(const sensor_msgs::ImageConstPtr& msg);
//Se definen las siguientes variables globales
image_transport::Subscriber sub_ourImageTopic_;
cv_bridge::CvImagePtr cv_ptr;
cv_bridge::CvImagePtr cv_ptr_display;
namespace enc = sensor_msgs::image_encodings;
int contadorDeImagenesRecibidas=0;
char windowName0[256];
char windowName1[256];
char windowName2[256];
char windowName3[256];
//*******************************************
//*********De codeBlocks a ROS***************
//*******************************************
//***************FIN PASO (1)****************
//***
//***Incluir aqui los headers (archivos terminados en .h) que
//***contienen los prototipos de las funciones de otras librerias que
//***usaremos en nuestro programa
//***
//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);
//***
//***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
};
//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
};
//***
//***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
//***************COMIENZO PASO (2)***********
//*******************************************
//*********De codeBlocks a ROS***************
//*******************************************
//CAMBIAR:
//int main()
//POR:
int main(int argc, char** argv)
//*******************************************
//*********De codeBlocks a ROS***************
//*******************************************
//***************FIN PASO (2)****************
{
//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);
//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;
}
//***************COMIENZO PASO (3)***********
//*******************************************
//*********De codeBlocks a ROS***************
//*******************************************
//CAMBIAR:
//Leyendo la imagen RGB de archivo en formato BMP
//readRGBImageFromBMPFile(p_parametros->pathAndInputImageFileName);
//Insertar codigo en esta funcion
//geoInsertYourCodeHere();
//POR:
//Levantando del nodo ROS llamado "my_node_2".
ros::init(argc, argv, "my_node_2");
ros::NodeHandle nh_;
//Dandole al nodo la capacidad de recepcion de
//mensajes con imagenes
image_transport::ImageTransport it_(nh_);
//Subscripción al topico "/usb_cam/image_raw", a traves del cual
//se recibiran las imagenes capturadas por la camara usb de su
//laptop. Se define un buffer de entrada de máximo 1 imágenes
sub_ourImageTopic_ = it_.subscribe("/usb_cam/image_raw", 1,
geoFunctionToHandlePublishedImage);
//La función geoFunctionToHandlePublishedImage se ejecutara cada vez
//que un mensaje se reciba a través del tópico "/usb_cam/image_raw".
//Creando ventanas OpenCV para desplegar imagenes
strcpy(windowName0,"Imagen RGB recibida en mensaje");
strcpy(windowName1,"Intensidad");
strcpy(windowName2,"Segmento lineal");
strcpy(windowName3,"Circulo");
cv::namedWindow(windowName0);
cv::moveWindow(windowName0, 0, 0);
cv::namedWindow(windowName1);
cv::moveWindow(windowName1, 300, 0);
cv::namedWindow(windowName2);
cv::moveWindow(windowName2, 0, 200);
cv::namedWindow(windowName3);
cv:: moveWindow(windowName3, 300, 200);
cvWaitKey(30); //Esta funcion ademas de hacer esperar al
//programa 30 ms, tambien fuerza a OpenCv a crear
//inmediatamente las ventanas
//El valor de X en la función ros::Rate loop_rate(X)
//indica el número de ciclos "while (ros::ok())" que ROS
//deberá realizar por segundo aproximadamente. Esta función
//trabaja en forma conjunta con la función loop_rate.sleep()
ros::Rate loop_rate(20);
//ros::ok() es cero cuando ctrl+c es presionado en el teclado.
//Utilice esa combinación de teclas para salirse del programa.
while (ros::ok()) {
//Dentro de la funcion "ros::spinOnce()" ROS ejecuta
//sus funciones. Los mensajes se atenderán solamente
//dentro de "ros::spinOnce()".
ros::spinOnce();
loop_rate.sleep();
}
//*******************************************
//*********De codeBlocks a ROS***************
//*******************************************
//***************FIN PASO (3)****************
//Liberando memoria de los contenedores e imagenes
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()
{
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);
//***************COMIENZO PASO (4)***********
//*******************************************
//*********De codeBlocks a ROS***************
//*******************************************
//AGREGAR:
//Desplegando imagenes en las ventanas OpenCV
geoDisplayInWindowIntensityImage(pInputImage->pintensity, windowName1);
geoDisplayInWindowIntensityImage(pInputImage->pdrawnLinealSegmentOnIntensity, windowName2);
geoDisplayInWindowIntensityImage(pInputImage->pdrawnCircleOnIntensity, windowName3);
cvWaitKey(30); //para que se desplieguen de una vez
//*******************************************
//*********De codeBlocks a ROS***************
//*******************************************
//***************FIN PASO (4)****************
}
//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], d3[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
//Brincando la primera y segunda lineas
res=fscanf(archivo, "%s %s %s\n", d1, d2, d3);
if (res==0) {printf("Error leyendo dato No. %d de archivo de parametros de control\n", numeroDeDatosLeidos); exit(0);}
res=fscanf(archivo, "\n");
numeroDeDatosLeidos++;
printf(" Dimensiones de las imagenes\n");
//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++;
//Brincando linea de texto
res=fscanf(archivo, "\n");
printf(" Imagen de entrada y directorio de salida\n");
//Leyendo path y nombre de imagen de entrada
res=fscanf(archivo, "%s %s %s\n", d1, d2, d3);
if (res==0) {printf("Error leyendo dato No. %d de archivo de parametros de control\n", numeroDeDatosLeidos); exit(0);}
strcpy(p_parametros->pathAndInputImageFileName,d3);
printf(" imagen de entrada: %s\n", p_parametros->pathAndInputImageFileName);
numeroDeDatosLeidos++;
//Leyendo directorio de salida
res=fscanf(archivo, "%s %s %s\n", d1, d2, d3);
if (res==0) {printf("Error leyendo dato No. %d de archivo de parametros de control\n", numeroDeDatosLeidos); exit(0);}
strcpy(p_parametros->pathOfOutputDirectory,d3);
printf(" directorio de salida: %s\n", p_parametros->pathOfOutputDirectory);
numeroDeDatosLeidos++;
res=fscanf(archivo, "\n");
printf(" Punto inicial y punto final\n");
//Leyendo xi
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->xi=(int)atof(d2);
printf(" xi: %d\n", p_parametros->xi);
numeroDeDatosLeidos++;
//Leyendo yi
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->yi=(int)atof(d2);
printf(" yi: %d\n", p_parametros->yi);
numeroDeDatosLeidos++;
//Brincando linea de texto
res=fscanf(archivo, "\n");
//Leyendo xi
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->xf=(int)atof(d2);
printf(" xf: %d\n", p_parametros->xf);
numeroDeDatosLeidos++;
//Leyendo yf
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->yf=(int)atof(d2);
printf(" yf: %d\n", p_parametros->yf);
numeroDeDatosLeidos++;
//Brincando linea de texto
res=fscanf(archivo, "\n");
printf(" Centro del circulo\n");
//Leyendo cx
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->cx=(int)atof(d2);
printf(" cx: %d\n", p_parametros->cx);
numeroDeDatosLeidos++;
//Leyendo cy
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->cy=(int)atof(d2);
printf(" cy: %d\n", p_parametros->cy);
numeroDeDatosLeidos++;
//Brincando linea de texto
res=fscanf(archivo, "\n");
printf(" Radio dl circulo\n");
//Leyendo r
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->r=(int)atof(d2);
printf(" r: %d\n", p_parametros->r);
numeroDeDatosLeidos++;
printf(" Numero de datos leidos: %d\n", 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
int widthnew = width * 3 + padding;
// Allocate temporary memory to read widthnew size of data
unsigned char* data = (unsigned char *)malloc(widthnew * sizeof (unsigned int));
// Read row by row of data and remove padded data.
for (i = 0; i<height; i++)
{
// Read widthnew length of data
n=fread(data, sizeof(unsigned char), widthnew, fd);
if (n==0) {printf("No se pudieron leer datos\n"); exit(0);}
// Retain width length of data, and swizzle RB component.
// BMP stores in BGR format, my usecase needs RGB format
for (j = 0; j < width * 3; j += 3)
{
int index = (i * width * 3) + (j);
pInputImage->prgb[index + 0] = data[j + 2];
pInputImage->prgb[index + 1] = data[j + 1];
pInputImage->prgb[index + 2] = data[j + 0];
}
}
free(data);
fclose(fd);
}
//Esta funcion almacena una imagen de intensidad en
//archivo en formato YUV400
void geoSaveIntensityImageIn_YUV400_file(unsigned char *pintensity, char* filename)
{
int numread, j, jj, i;
FILE *fpointer;
int width, height;
unsigned char *ptempImage;
width=pInputImage->width;
height=pInputImage->height;
//Imagen de uso local y temporal
ptempImage = (unsigned char *)malloc(sizeof(unsigned char)*width*height);
printf("Saving unsigned char image in: %s\n", filename);
//Abriendo archivo
fpointer = fopen(filename, "w");
if (fpointer == NULL) {
printf("could not read the file: %s\n", filename);
exit(0);
}
//Cambiando posición del sistema de coordenadas de la equina inferior
//izquierda a la esquina superior izquierda.
for (i=0;i<width*height;i++) ptempImage[i]=0;
jj=0;
for (j=height-1;j>=0;j--) {
for (i=0;i<width;i++) {
ptempImage[jj*width+i]= pintensity[j*width+i];
}
jj++;
}
//Almacenando valores de intensidad en archivo
numread = (int)fwrite(ptempImage, sizeof(unsigned char), (unsigned int)(height*width), fpointer);
if (numread==0) {
printf("Por alguna razon no se pudo escribir dato alguno en archivo\n");
exit(0);
}
fclose(fpointer);
free(ptempImage);
}
//Esta funcion almacena una imagen de intensidad en
//archivo en formato BMP
int SaveIntensityImageIn_BMP_file(unsigned char *pintensity, char *filename)
{
int i, j, jj, ipos;
int bytesPerLine;
unsigned char *line;
unsigned char *ptempImage;
int height, width;
height=pInputImage->height;
width=pInputImage->width;
FILE *file;
struct BMPHeader bmph;
/* The length of each line must be a multiple of 4 bytes */
bytesPerLine = (3 * (width + 1) / 4) * 4;
strcpy(bmph.bfType, "BM");
bmph.bfOffBits = 54;
bmph.bfSize = bmph.bfOffBits + bytesPerLine * height;
bmph.bfReserved = 0;
bmph.biSize = 40;
bmph.biWidth = width;
bmph.biHeight = height;
bmph.biPlanes = 1;
bmph.biBitCount = 24;
bmph.biCompression = 0;
bmph.biSizeImage = bytesPerLine * height;
bmph.biXPelsPerMeter = 0;
bmph.biYPelsPerMeter = 0;
bmph.biClrUsed = 0;
bmph.biClrImportant = 0;
file = fopen (filename, "wb");
if (file == NULL) return(0);
fwrite(&bmph.bfType, 2, 1, file);
fwrite(&bmph.bfSize, 4, 1, file);
fwrite(&bmph.bfReserved, 4, 1, file);
fwrite(&bmph.bfOffBits, 4, 1, file);
fwrite(&bmph.biSize, 4, 1, file);
fwrite(&bmph.biWidth, 4, 1, file);
fwrite(&bmph.biHeight, 4, 1, file);
fwrite(&bmph.biPlanes, 2, 1, file);
fwrite(&bmph.biBitCount, 2, 1, file);
fwrite(&bmph.biCompression, 4, 1, file);
fwrite(&bmph.biSizeImage, 4, 1, file);
fwrite(&bmph.biXPelsPerMeter, 4, 1, file);
fwrite(&bmph.biYPelsPerMeter, 4, 1, file);
fwrite(&bmph.biClrUsed, 4, 1, file);
fwrite(&bmph.biClrImportant, 4, 1, file);
line = (unsigned char*) malloc(bytesPerLine);
if (line == NULL)
{
fprintf(stderr, "Can't allocate memory for BMP file.\n");
return(0);
}
//Cambiando posición del sistema de coordenadas de la equina inferior
//izquierda a la esquina superior izquierda.
ptempImage = (unsigned char *)malloc(sizeof(unsigned char)*width*height);
for (i=0;i<width*height;i++) ptempImage[i]=0;
jj=0;
for (j=height-1;j>=0;j--) {
for (i=0;i<width;i++) {
ptempImage[jj*width+i]= pintensity[j*width+i];
}
jj++;
}
for (i = height - 1; i >= 0; i--)
{
for (j = 0; j < width; j++)
{
ipos = (width * i + j);
line[3*j] = ptempImage[ipos];
line[3*j+1] = ptempImage[ipos];
line[3*j+2] = ptempImage[ipos];
}
fwrite(line, bytesPerLine, 1, file);
}
free(line);
fclose(file);
free(ptempImage);
return(1);
}
//Esta funcion almacena una imagen RGB en
//archivo en formato BMP
int SaveRGBImageIn_BMP_file(unsigned char *prgb, char *filename)
{
int i, j, jj, ipos;
int bytesPerLine;
unsigned char *line;
unsigned char *ptempImage;
int height, width;
height=pInputImage->height;
width=pInputImage->width;
FILE *file;
struct BMPHeader bmph;
/* The length of each line must be a multiple of 4 bytes */
bytesPerLine = (3 * (width + 1) / 4) * 4;
strcpy(bmph.bfType, "BM");
bmph.bfOffBits = 54;
bmph.bfSize = bmph.bfOffBits + bytesPerLine * height;
bmph.bfReserved = 0;
bmph.biSize = 40;
bmph.biWidth = width;
bmph.biHeight = height;
bmph.biPlanes = 1;
bmph.biBitCount = 24;
bmph.biCompression = 0;
bmph.biSizeImage = bytesPerLine * height;
bmph.biXPelsPerMeter = 0;
bmph.biYPelsPerMeter = 0;
bmph.biClrUsed = 0;
bmph.biClrImportant = 0;
file = fopen (filename, "wb");
if (file == NULL) return(0);
fwrite(&bmph.bfType, 2, 1, file);
fwrite(&bmph.bfSize, 4, 1, file);
fwrite(&bmph.bfReserved, 4, 1, file);
fwrite(&bmph.bfOffBits, 4, 1, file);
fwrite(&bmph.biSize, 4, 1, file);
fwrite(&bmph.biWidth, 4, 1, file);
fwrite(&bmph.biHeight, 4, 1, file);
fwrite(&bmph.biPlanes, 2, 1, file);
fwrite(&bmph.biBitCount, 2, 1, file);
fwrite(&bmph.biCompression, 4, 1, file);
fwrite(&bmph.biSizeImage, 4, 1, file);
fwrite(&bmph.biXPelsPerMeter, 4, 1, file);
fwrite(&bmph.biYPelsPerMeter, 4, 1, file);
fwrite(&bmph.biClrUsed, 4, 1, file);
fwrite(&bmph.biClrImportant, 4, 1, file);
line = (unsigned char*) malloc(bytesPerLine);
if (line == NULL)
{
fprintf(stderr, "Can't allocate memory for BMP file.\n");
return(0);
}
//Cambiando posición del sistema de coordenadas de la equina inferior
//izquierda a la esquina superior izquierda.
ptempImage = (unsigned char *)malloc(sizeof(unsigned char)*width*height*3);
for (i=0;i<width*height*3;i++) ptempImage[i]=0;
jj=0;
for (j=height-1;j>=0;j--) {
for (i=0;i<width;i++) {
ptempImage[jj*3*width+3*i]= prgb[j*3*width+3*i];
ptempImage[jj*3*width+3*i+1]= prgb[j*3*width+3*i+1];
ptempImage[jj*3*width+3*i+2]= prgb[j*3*width+3*i+2];
}
jj++;
}
for (i = height - 1; i >= 0; i--)
{
for (j = 0; j < width; j++)
{
ipos = 3*(width * i + j);
line[3*j] = ptempImage[ipos+2];
line[3*j+1] = ptempImage[ipos+1];
line[3*j+2] = ptempImage[ipos];
}
fwrite(line, bytesPerLine, 1, file);
}
free(line);
fclose(file);
free(ptempImage);
return(1);
}
//***************COMIENZO PASO (5)***********
//*******************************************
//*********De codeBlocks a ROS***************
//*******************************************
//AGREGAR:
//Esta función se ejecutará automáticamente cada vez que un mensaje sea recibido
//a través del tópico "/usb_cam/image_raw".
void geoFunctionToHandlePublishedImage(const sensor_msgs::ImageConstPtr& msg)
{
//Extrayendo la imagen rgb del mensaje recibido
try
{
//cv_prt es un puntero a una estructura ROS que
//contiene un puntero a otra estructura OpenCV que
//a su vez contiene un puntero a la imagen rgb
//recibida.
cv_ptr = cv_bridge::toCvCopy(msg, enc::BGR8);
//cv_prt_display es una copia de cv_prt. Esta copia
//se usará únicamente para visualización
cv_ptr_display = cv_bridge::toCvCopy(msg, enc::BGR8);
}
catch (cv_bridge::Exception& e)
{
ROS_ERROR("cv_bridge exception: %s", e.what());
return;
}
//Desplegando la imagen rgb recibida
cv::imshow(windowName0, cv_ptr_display->image);
cvWaitKey(30);
//Extrayendo la imagen rgb recibida de la estructura OpenCV y
//copiando su contenido a nuestra estructura global "pInputImage".
geoCopyTheRGBImageDataFromTheOpencvImageStructureToOurpInputImageStructure();
//El puntero a la imagen rgb recibida se puede acceder desde
//nuestra estructura como sigue:
//pInputImage->prgb
//*********************************************
//*********************************************
//*********************************************
//*********************************************
geoInsertYourCodeHere();
//*********************************************
//*********************************************
//*********************************************
//*********************************************
contadorDeImagenesRecibidas++;
}
void geoCopyTheRGBImageDataFromTheOpencvImageStructureToOurpInputImageStructure()
{
unsigned char *ptr, *ptempRgbImage, *pintensity, *prgb;
int i,j, jj, width, height;
//Getting image dimentions
width=cv_ptr->image.cols;
height = cv_ptr->image.rows;
if (width!=pInputImage->width || height!=pInputImage->height) {
printf("\n");
printf("**************************************************************\n");
printf("** Error, el ancho (width) y el alto (height) de las imagenes\n");
printf("** capturadas por la camara es %d, %d, respectivamente. \n", width, height);
printf("** \n");
printf("** Cambiar valores en el archivo de paramatros de control\n");
printf("**************************************************************\n");
printf("\n");
exit(0);
}
pInputImage->width=width; //hight is extracted from the messages
pInputImage->height=height; //width is extracted from the messages
//Renaming pointer names to simplify the code
prgb= pInputImage->prgb;
ptempRgbImage = (unsigned char*)malloc(sizeof(unsigned char)*(unsigned int)(width*height*3));
for (i=0;i<width*height*3;i++) ptempRgbImage[i]=0;
pintensity=pInputImage->pintensity;
//Converting opencv image form BGR to RGB
cv::cvtColor(cv_ptr->image ,cv_ptr->image, CV_BGR2RGB);