Info

この質問は閉じられています。 編集または回答するには再度開いてください。

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 回表示 (過去 30 日間)
Ram
Ram 2015 年 11 月 16 日
閉鎖済み: MATLAB Answer Bot 2021 年 8 月 20 日
display of the resultant image is also needed

回答 (1 件)

Walter Roberson
Walter Roberson 2015 年 11 月 16 日
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 件のコメント
Ram
Ram 2015 年 11 月 17 日
its to be insert pixle vales in some columns of same image for specific rows only
Walter Roberson
Walter Roberson 2015 年 11 月 17 日
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()

この質問は閉じられています。

Community Treasure Hunt

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

Start Hunting!

Translated by