How to read an engine calibration dataset in format *.dcm in Matlab?

How to read an engine calibration dataset in format *.dcm in Matlab 2010?
The dataset in *.dcm format will have strings and numbers.

5 件のコメント

ANVAR
ANVAR 2019 年 7 月 26 日
編集済み: ANVAR 2019 年 8 月 2 日
This Function converts engine calibration dataset .dcm file to .mat file which can be directly loaded to workspace to get only the variables with valid matlab names
Example : dcm2mat('dcmfilename')
Output will be saved as : 'dcmfilename_out.mat'
Guillaume
Guillaume 2019 年 7 月 26 日
Warning!
The code in the file provided by Anvar in the above comment is p code. Hence it's impossible to know what the code actually does.
Treat as any other random download off the internet. It may or may not do the job required and even if it does, it may or may not do something else at the same time.
Rik
Rik 2019 年 7 月 26 日
編集済み: Rik 2019 年 7 月 26 日
An additional possible issue is that the dcm extension is often used for DICOM images (DIgital COmmunication in Medicin). If the function in the comment assumes it is a DICOM file, it will probably fail with a strange error.
Edit:
Anvar added a clarification that the dcm files this function reportedly loads are indeed engine calibration dataset files, so this comment is no longer really relevant.
Walter Roberson
Walter Roberson 2019 年 8 月 2 日
編集済み: Walter Roberson 2020 年 9 月 12 日
Technical reference appears to be https://www.etas.com/en/downloadcenter/2582-2583.php
Vipin P
Vipin P 2020 年 9 月 12 日
編集済み: Vipin P 2020 年 9 月 12 日
there is this libary for reading dcm files i found very useful

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

回答 (1 件)

Kautuk Raj
Kautuk Raj 2024 年 10 月 23 日

0 投票

To read an engine calibration dataset in the .dcm format using MATLAB, you can leverage the dicomread function.
X = dicomread(filename) reads the image data from the compliant Digital Imaging and Communications in Medicine (DICOM) file filename.
More about the ‘dicomread’ function can be gathered from the MathWorks documentation for the latest release as of now (R2024b) here: https://www.mathworks.com/help/images/ref/dicomread.html

カテゴリ

ヘルプ センター および File ExchangeConvert Image Type についてさらに検索

製品

リリース

R2010b

質問済み:

2019 年 1 月 8 日

回答済み:

2024 年 10 月 23 日

Community Treasure Hunt

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

Start Hunting!

Translated by