I am trying to use imshow to take data in a .txt file and print out the image made from the data.

12 ビュー (過去 30 日間)
So far my code looks like this
a = dlmread('data.txt');
imshow(a);
But when I go to run the code I get an error saying "Error using abs too many input arguments." The .txt file has a ton of data points inside it and I made sure to save the .txt file in the same folder as my code so I am not sure why it is not able to read my data.
  2 件のコメント
DGM
DGM 2021 年 10 月 26 日
How is the data formatted in the text file? What is the size of a?
It would probably help to just attach the text file.
ssmith
ssmith 2021 年 10 月 26 日
The data is formatted as (x, y, z, grayscale) The file is too large to attach the file.

サインインしてコメントする。

採用された回答

DGM
DGM 2021 年 10 月 26 日
編集済み: DGM 2021 年 10 月 26 日
I'm going to guess that this is the same homework assignment. If not, similar operations should apply. The example only shows how to rectify the image from the vectorized positional and intensity information. You'll have to figure out how to read the data from the file into the corresponding vectors and deal with the output scaling/casting as mentioned.
  10 件のコメント
DGM
DGM 2021 年 10 月 27 日
I don't know why you'd get an error about a function/variable called "first". There isn't anything in the code called "first".
If you don't have mat2gray(), I'm guessing you don't have Image Processing Toolbox. You can do this instead for that line:
%A = mat2gray(a(:,4)); % normalize (needs IPT)
A = normalize(a(:,4),'range'); % normalize without IPT
ssmith
ssmith 2021 年 10 月 27 日
編集済み: ssmith 2021 年 10 月 27 日
That worked! Thank you so much for your help!!!

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeStartup and Shutdown についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by