Borrar filtros
Borrar filtros

regarding masking the image

1 visualización (últimos 30 días)
Rd
Rd el 21 de Jul. de 2020
Movida: DGM el 5 de Mayo de 2023
kindly expalin the following line
mask_h and mask_w are the scalar inputs
mask = zeros(mask_h,mask_w);
mask(1:mask_h/2,:) = -1;
mask(mask_h/2 + 1:end,:) = 1;

Respuesta aceptada

waqas
waqas el 21 de Jul. de 2020
Movida: DGM el 5 de Mayo de 2023
First line is defining a zero matrix With mask_h rows and mask_w columns.
In the second line, all the entries in first half of the rows are being assigned a value of -1.
For third line, rest of the rows, i.e., all the entries from half of the rows till the end are assigned a value of 1.
You are using Matlab indexing to assign values of 1 or -1 to the entries based on their location in the matrix.
  2 comentarios
Rd
Rd el 21 de Jul. de 2020
Movida: DGM el 5 de Mayo de 2023
Thanks a lot.
waqas
waqas el 21 de Jul. de 2020
Movida: DGM el 5 de Mayo de 2023
My pleasure. If your query is resolved then I would suggest to accept the answer.

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Matrix Indexing en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by