Community Profile

photo

Florin Neacsu


CPE

2011년부터 활동

Followers: 0   Following: 0

연락

통계

  • 3 Month Streak
  • Knowledgeable Level 1
  • First Answer

배지 보기

Feeds

보기 기준

답변 있음
Exporting image to bounded pdf
Hi, The most popular file of fileexchange might do the trick: <http://www.mathworks.com/matlabcentral/fileexchange/23629-e...

12년 초과 전 | 1

답변 있음
How can I write on an image?
Hi, Have a look at "text". >doc text HTH, Florin

12년 초과 전 | 0

답변 있음
how to calculate irregular shape area in the image
Hi, Given your example I would suggest this approach: after your edge detection: create structural element of radius 4 ...

12년 초과 전 | 1

답변 있음
Find all the points inside a triangulation
Hi, Given any triangle, defined by the coordinates of its vertices you can "easily" find the interior points. Have a look at ...

12년 초과 전 | 0

답변 있음
need help with if, else use
Something like: if Ts(j)<=750 Cp=0.459389e3+(0.927605*Ts(j))+(-0.892667e-2*Ts(j)^2)+(0.427170e-4*Ts(j)^3)+(-0.823237e-...

12년 초과 전 | 0

답변 있음
How to detect square shape in a photo
Hi, What makes a square a square and not a circle, triangle or even rectangle? Think of an unique characteristic to describe ...

12년 초과 전 | 0

답변 있음
Figure Export to EPS
Hi, Have a look at <http://www.mathworks.com/matlabcentral/fileexchange/23629-exportfig export_fig> on file exchange. Rega...

12년 초과 전 | 1

답변 있음
Finding example images in the distribution
Hi, This might be late. For me it's C:\Program Files\MATLAB\R2007b\toolbox\images\imdemos. I got there by pure accident. I...

12년 초과 전 | 0

답변 있음
How can I detect islands in a contour plot?
Hello, If I didn't misunderstood your problem, I believe the Danielsson algorithm for map distance (CGIP, 14:227–248, 1980) c...

12년 초과 전 | 0

답변 있음
how to plot geometric figures?
Hello, You might want to have a look at <http://www.mathworks.com/matlabcentral/fileexchange/7844-geom2d/ geom2d> on the file...

12년 초과 전 | 0

답변 있음
how to make a Mx1xN matrix to MxN
Hi, You can also try squeeze. Regards, Florin

12년 초과 전 | 2

답변 있음
A beginners question to clarify something I am trying to do it MATLAB regarding an image
Hi, Have a look at "function". type doc function In this case you need something like: function [] = draw1band(...

12년 초과 전 | 0

| 수락됨

답변 있음
how to take the non zero values from one matrix and put them in another??
Try : ind1=A~=0; B(ind1)=A(ind1); Regards, Florin

거의 13년 전 | 1

답변 있음
MATLAB crashes when i use plot command
Hi, I did not experience such problems. It seems it has to do with the Java update, and not Snow Leopard itself. See thes...

거의 13년 전 | 1

답변 있음
Comparing Two Frames
Hello, "expression should return '1' for same values of same elements and '0' if different" - yes "Result is all '0', inst...

거의 13년 전 | 0

답변 있음
left ventricle segmentation
Hi, I suggest registering the images (I guess you have more than one), than crop the area where the left ventricle is generally...

거의 13년 전 | 0

답변 있음
Computational Fluid Dynamics, flat plate boundary layer
Hi Try this: er=abs(U(i,j)-Uold(i,j)); if isnan(er) pause end if er>maxerr maxerr=er; end And inser...

거의 13년 전 | 0

답변 있음
Write a program that calculates sum of the integers numbers
2+4+6+...+30=2(1+2+3+...+15)=2*(15*16)/2=15*16 So 2+4+...+n = floor(n/2)*(floor(n/2)+1). Regards, Florin

대략 13년 전 | 2