Azzera filtri
Azzera filtri

Info

Questa domanda è chiusa. Riaprila per modificarla o per rispondere.

How to convert Pixel to millimetor in MATLAB GUI

2 visualizzazioni (ultimi 30 giorni)
Muhammad
Muhammad il 16 Set 2013
Chiuso: MATLAB Answer Bot il 20 Ago 2021
Hi all.
i am stucking with a problem please help me. i have a JPG image i contoured the image by imfreehand and then find the [X,Y] coordinates of each pixel inside the contour. these [X,Y] cooridnates are in pixel so i want in millimetor. So, how can i get these values in mm. i want when i press excelPushbutton. the coordinates should b be in mm not in pixel. any help is apprteciated in advance.
the code i used is given below
if true
function ExcelPushbutton_Callback(hObject, eventdata, handles)
[Y, X] = find(handles.maskedImage ~= 0);
data=[Y,X];
Z = repmat(0.18,[length(X),1]);
[FileName,PathName] = uiputfile('*.xls','Save data to spreadsheet');
Data=[X,Y,Z];
xlswrite([PathName '/' FileName],Data);
end
here Z is 0.18mm which is thickness of the image.

Risposte (0)

Questa domanda è chiusa.

Community Treasure Hunt

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

Start Hunting!

Translated by