-
Notifications
You must be signed in to change notification settings - Fork 0
/
Ejecucion programa.txt
45 lines (21 loc) · 1.79 KB
/
Ejecucion programa.txt
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
-------------/// Español \\\-------------
Instructivo para ejecutar el programa:
Compilar(Cocalc): gcc -o nombre_ejecutble nombre_archivo.c -l pthread
Nota: pthread es la librería que se utiliza en el archivo, por esta razón tiene que incluirse en la ejecución.
Compilar(Replit): gcc -Wno-unused-result nombre_archivo.c -o nombre_ejecutable
Ejecutar: ./archi -i imagen_entrada.bmp -t imagen_salida.bmp -o 3 -h 2
-i: indica la imagen a la cual se le quiere aplicar la modificación.
-t: se debe indicar el nombre de la imagen modificada que se le quiere poner.
-o: se debe de indicar la opción de modificación que se le quiere aplicar a la imagen, siendo la opción 1 modificación blanco y negro, modificación 2 promedio de color por pixel y la opción 3 es personalizada.
-h: se ingresa la cantidad de hilos con los cuales se quiere dividir el proceso, las opciones son 2, 4, 6, 8, 10 y 12,.
-------------/// English \\\-------------
Instructions to run the program:
Compile(Cocalc): gcc -o executable_file_name.c -l pthread
Note: pthread is the library used in the file, for this reason it has to be included in the execution.
Compile(Replit): gcc -Wno-unused-result filename.c -o executable_filename
Execute: ./archi -i input_image.bmp -t output_image.bmp -o 3 -h 2
-i: indicates the image to which you want to apply the modification.
-t: indicate the name of the modified image you want to apply.
-o: indicate the modification option that you want to apply to the image, being option 1 black and white modification, modification 2 average color per pixel and option 3 is customized.
-h: enter the number of threads with which you want to divide the process, the options are 2, 4, 6, 8, 8, 10 and 12.
Translated with www.DeepL.com/Translator (free version)