Extract values from a fig file?
7 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
MementoMori
am 8 Jun. 2023
Beantwortet: Vinayak Agrawal
am 9 Jun. 2023
Hi, I have a file like "Example.fig" that contains a picture
and I want to extract the values of each pixel and put them in a matrix form so I can work with them
What can I do?
0 Kommentare
Akzeptierte Antwort
Star Strider
am 8 Jun. 2023
Try this —
F = openfig('Example.fig'); % Load File & Display Contents
Ax = gca; % Get Axis Handle
Fmtx = Ax.Children.CData % Get Image Data
figure
surf(Fmtx) % Plot Image Data As 'surf'
colormap(turbo)
set(gca, 'YDir','reverse')
view(-30, 60)
title('Recovered Data Matrix')
.
0 Kommentare
Weitere Antworten (1)
Vinayak Agrawal
am 9 Jun. 2023
Hi MementoMori,
According to me these commands will help you get the results
>>s=load('Example.fig','-mat'); %opening the figure
>> values=s.hgS_070000.children(1).children.properties.CData; %storing pixel values
>> fig = imagesc(values); %verifying by plotting the ‘values’ which are our pixel values
You can see the pixel values by double clicking on ‘values’ variable created in your workspace
You can refer to these documents also-
- extracting data series from *.fig file - MATLAB Answers - MATLAB Central (mathworks.com)
- matlab - plot matrices in desired colors - Stack Overflow
Hope it helps!
0 Kommentare
Siehe auch
Kategorien
Mehr zu 2-D and 3-D Plots finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!