Borrar filtros
Borrar filtros

Info

La pregunta está cerrada. Vuélvala a abrir para editarla o responderla.

for image 668*1537,among them for 159 different rows are selected to insert new pixel values by retaining original pixel values how to insert this pixel values for selected 159 different rows such that pixles are inserted at those rows

1 visualización (últimos 30 días)
display of the resultant image is also needed

Respuestas (1)

Walter Roberson
Walter Roberson el 16 de Nov. de 2015
MATLAB does not permit numeric arrays with a different number of columns in each row, which would be needed in order to insert new pixels while retaining original pixel values.
  2 comentarios
Ram
Ram el 17 de Nov. de 2015
its to be insert pixle vales in some columns of same image for specific rows only
Walter Roberson
Walter Roberson el 17 de Nov. de 2015
We possibly have a communication difficulty. In English, when something is inserted, the object continues to hold everything that it did before and as well holds what was inserted. For example, if you "insert" an '*' into 'hello' then you might get 'h*ello'. If the intention was to instead result in 'h*llo' then in English the term is "overwrite", or you might "assign" data to the locations or "replace" data in the locations. In these situations, you do not "retain the original values", at least not in the original matrix. You might save a copy of the original values elsewhere.
If you want to overwrite (for example) column 7 of rows 19, 20, 85, 111, and 402, all with the value 255, then you can use
column_to_use = 7;
rows_to_overwrite = [19, 20, 85, 111, 402];
newvalue = 255;
TheMatrix(rows_to_overwrite, column_to_use) = newvalue;
I also recommend that you read Linear Indexing and in particular read more about sub2ind()

La pregunta está cerrada.

Community Treasure Hunt

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

Start Hunting!

Translated by