error using createMask on imellipse object

조회 수: 2 (최근 30일)
Brunno Machado de Campos
Brunno Machado de Campos 2019년 6월 28일
Hi,
I created a circle (using imellipse) over a plot (imagesc, uint16 matrix).
the code is:
Circ81 = imellipseimellipse(handles.sub1,[(handles.sub1.XLim(2)/2)-r1 handles.sub1.YLim(2)/2-r1 2*r1 2*r1]);
setFixedAspectRatioMode(Circ81,1)
setColor(Circ81,[1 0 0])
Posi = getPosition(Circ81);
ddW81 = createMask(Circ81);
I use this kind of code several times, no problems. For a particular imagesc plot I am getting the following erro:
Error using poly2mask
Expected input number 1, X, to be one of these types: double
Instead its type was single.
Error in poly2mask (line 38)
validateattributes(x,{'double'},{},mfilename,'X',1);
Error in imroi/createMask (line 261)
BW = poly2mask(roix,roiy,m,n);
Error in ACR_test_bmdc>Roi81f (line 6575)
ddW81 = createMask(Circ81);
Error while evaluating UIControl Callback.
I noticed that the BW = poly2mask(roix,roiy,m,n); roix and roiy inside the imroi.m function are indeed single precision, as the error says and a simple double(roix) solves the problem. However, I am not happy to modify an original Matlab function (a read only one) without understanding of what is happening.
Thank you!

답변 (0개)

카테고리

Help CenterFile Exchange에서 Line Plots에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by