]> AND Private Git Repository - these_gilles.git/blob - THESE/codes/snake/basic_code/MakeContourClockwise2D.m
Logo AND Algorithmique Numérique Distribuée

Private GIT Repository
28/08 matin
[these_gilles.git] / THESE / codes / snake / basic_code / MakeContourClockwise2D.m
1 function P=MakeContourClockwise2D(P)\r
2 % This function MakeContourClockwise will make a contour clockwise \r
3 % contour clockwise. This is done by calculating the area inside the \r
4 % contour, if it is positive we change the contour orientation.\r
5 %\r
6 %  P=MakeContourClockwise2D(P);\r
7 %\r
8 % Function is written by D.Kroon University of Twente (July 2010)\r
9 \r
10 % Area inside contour\r
11 O=[P;P(1:2,:)];\r
12 area = 0.5*sum((O((1:size(P,1))+1,1) .* (O((1:size(P,1))+2,2) - O((1:size(P,1)),2))));\r
13 \r
14 % If the area inside  the contour is positive, change from counter-clockwise to \r
15 % clockwise\r
16 if(area>0), P=P(end:-1:1,:); end\r