Normalized file endings.

This commit is contained in:
Roman Donchenko
2013-08-21 17:26:54 +04:00
parent f55740da70
commit e9a28f66ee
486 changed files with 166 additions and 606 deletions

View File

@@ -30,4 +30,4 @@ Wrapping class for computing descriptors by using the
virtual int descriptorType() const;
protected:
...
}
}

View File

@@ -361,4 +361,3 @@ Wrapping class for computing, matching, and classifying descriptors using the
protected:
...
};

View File

@@ -191,4 +191,3 @@ Reads the trained Gaussian mixture model from the file storage.
:param fs: A file storage with the trained model.
:param node: The parent map. If it is NULL, the function searches a node with parameters in all the top-level nodes (streams), starting with the first one.

View File

@@ -92,4 +92,3 @@ Returns a pointer to the histogram bin.
..
The macros ``GetHistValue`` return a pointer to the specified bin of the 1D, 2D, 3D, or N-D histogram. In case of a sparse histogram, the function creates a new bin and sets it to 0, unless it exists already.

View File

@@ -84,5 +84,3 @@ Calculates the optical flow for two images using Lucas-Kanade algorithm.
:param vely: Vertical component of the optical flow of the same size as input images, 32-bit floating-point, single-channel
The function computes the flow for every pixel of the first input image using the Lucas and Kanade algorithm [Lucas81]_. The function is obsolete. To track sparse features, use :ocv:func:`calcOpticalFlowPyrLK`. To track all the pixels, use :ocv:func:`calcOpticalFlowFarneback`.

View File

@@ -322,4 +322,3 @@ Inserts a single point into a Delaunay triangulation.
:param pt: Inserted point.
The function inserts a single point into a subdivision and modifies the subdivision topology appropriately. If a point with the same coordinates exists already, no new point is added. The function returns a pointer to the allocated point. No virtual point coordinates are calculated at this stage.

View File

@@ -90,4 +90,3 @@ and DirectX SDK (2006 April or later).
#endif
#endif

View File

@@ -295,4 +295,3 @@ int icvSingularValueDecomposition( int M,
/*======================================================================================*/
#endif/*_CV_VM_H_*/

View File

@@ -359,4 +359,3 @@ void cvBGCodeBookClearStale( CvBGCodeBookModel* model, int staleThresh,
}
/* End of file. */

View File

@@ -135,4 +135,3 @@ cvSegmentFGMask( CvArr* _mask, int poly1Hull0, float perimScale,
}
/* End of file. */

View File

@@ -1319,4 +1319,3 @@ icvUpdateGaussianBGModel2( IplImage* curr_frame, CvGaussBGModel2* bg_model )
}
/* End of file. */

View File

@@ -637,4 +637,3 @@ void cvReleaseBlobTracker(CvBlobTracker**ppT )
ppT[0]->Release();
ppT[0] = 0;
}

View File

@@ -125,4 +125,3 @@ CvBlobTrackAnalysis* cvCreateBlobTrackAnalysisList(CvBlobTrackAnalysisOne* (*cre
}
/* ======================== Analyser modules ============================= */

View File

@@ -171,4 +171,3 @@ CvBlobTrackAnalysis* cvCreateModuleBlobTrackAnalysisIOR()
return (CvBlobTrackAnalysis*)pIOR;
}/* cvCreateCvBlobTrackAnalysisIOR */
/* ======================== Analyser modules ============================= */

View File

@@ -578,4 +578,3 @@ public:
CvBlobTrackAnalysis* cvCreateModuleBlobTrackAnalysisTrackDist()
{return (CvBlobTrackAnalysis*) new CvBlobTrackAnalysisTrackDist;}

View File

@@ -181,5 +181,3 @@ CvBlobTrackGen* cvCreateModuleBlobTrackGen1()
{
return (CvBlobTrackGen*) new CvBlobTrackGen1(0);
}

View File

@@ -215,5 +215,3 @@ CvBlobTrackGen* cvCreateModuleBlobTrackGenYML()
{
return (CvBlobTrackGen*) new CvBlobTrackGenYML;
}

View File

@@ -479,4 +479,3 @@ void CvBlobTrackerAuto1::Process(IplImage* pImg, IplImage* pMask)
TIME_END("TrackAnalysis",m_BlobList.GetBlobNum())
} /* CvBlobTrackerAuto1::Process */

View File

@@ -1179,4 +1179,3 @@ CvBlobTracker* cvCreateBlobTrackerMSPF()
{
return cvCreateBlobTrackerList(cvCreateBlobTrackerOneMSPF);
}

View File

@@ -454,4 +454,3 @@ CvBlobTracker* cvCreateBlobTrackerMSFGS()
{
return cvCreateBlobTrackerList(cvCreateBlobTrackerOneMSFGS);
}

View File

@@ -324,4 +324,3 @@ CvBlobTrackPredictor* cvCreateModuleBlobTrackPredictKalman()
return (CvBlobTrackPredictor*) new CvBlobTrackPredictKalman;
}
/*======================= KALMAN PREDICTOR =========================*/

View File

@@ -111,4 +111,3 @@ cvCalcImageHomography( float* line, CvPoint3D32f* _center,
}
/* End of file. */

View File

@@ -919,5 +919,3 @@ bool CvCalibFilter::Undistort( CvMat** srcarr, CvMat** dstarr )
return true;
}

View File

@@ -706,4 +706,3 @@ void cvBronKerbosch( CvGraph* graph )
}//end cvBronKerbosch
#endif

View File

@@ -626,4 +626,3 @@ void cvDecompPoly( CvContour* cont,
#endif
// End of file decomppoly.cpp

View File

@@ -551,4 +551,3 @@ cvFindStereoCorrespondence(
}
/* End of file. */

View File

@@ -1060,5 +1060,3 @@ int CvBlobDetectorCC::DetectNewBlob(IplImage* /*pImg*/, IplImage* pFGMask, CvBlo
return result;
} /* cvDetectNewBlob */

View File

@@ -161,4 +161,3 @@ public:
/* Blob detector constructor: */
//CvBlobDetector* cvCreateBlobDetectorReal(CvTestSeq* pTestSeq){return new CvBlobDetectorReal(pTestSeq);}

View File

@@ -3698,5 +3698,3 @@ int cvComputeEssentialMatrix( CvMatr32f rotMatr,
return CV_OK;
}

View File

@@ -263,7 +263,3 @@ CvSeq* icvCutContourRaster( CvSeq* current, CvMemStorage* storage, IplImage* ima
*/
#endif /* WIN32 */

View File

@@ -351,4 +351,3 @@ inline void RFace::ResizeRect(CvRect Rect,CvRect * lpRect,long lDir,long lD)
}
}// inline void RFace::ResizeRect(CvRect * lpRect,long lDir,long lD)

View File

@@ -133,4 +133,3 @@ private:
#endif //__FACE_H__

View File

@@ -499,5 +499,3 @@ Face * FaceDetectionList::GetData()
m_pCurElem = m_pCurElem->m_pNext;
return m_pCurElem->m_pFace;
}//Face * FaceDetectionList::GetData()

View File

@@ -199,4 +199,3 @@ inline MouthFaceTemplate::MouthFaceTemplate(long lNumber,CvRect rect,double dEye
#endif//__FACETEMPLATE_H__

View File

@@ -122,5 +122,3 @@ cvGetStarKeypoints( const CvArr* _img, CvMemStorage* storage,
}
return seq;
}

View File

@@ -65,4 +65,3 @@ CvSeq * cvPostBoostingFindFace(IplImage * Image,CvMemStorage* lpStorage)
return lpSeq;
}//cvPostBoostingFindFace(IplImage * Image)

View File

@@ -631,4 +631,3 @@ cvFindHandRegionA( CvPoint3D32f * points, int count,
IPPI_CALL( icvFindHandRegionA( points, count, indexs, line, size, jc,
center, storage, numbers ));
}

View File

@@ -1695,4 +1695,3 @@ cvMixSegmL2( CvImgObsInfo ** obs_info_array, int num_img, CvEHMM * hmm )
}
/* End of file */

View File

@@ -1148,4 +1148,3 @@ CvStatus icvEstimate1DHMMStateParams(CvImgObsInfo** obs_info_array, int num_img,
#endif

View File

@@ -330,4 +330,3 @@ void CvMatrix::show( const char* window_name )
/* End of file. */

View File

@@ -718,7 +718,3 @@ void _cvProjectionPointToSegment(CvPoint2D32f* PointO,
PrPoint->y = PointO->y - VectorAO.y + alfa*VectorAB.y;
return;
}//end of _cvProjectionPointToSegment

View File

@@ -315,6 +315,3 @@ void TestOptimX2Y2()
}
#endif

View File

@@ -477,4 +477,3 @@ cvPostWarpImage( int numLines, /* number of scanlines */
}
/* End of file */

View File

@@ -1683,4 +1683,3 @@ icvPoint7( int *ml, int *mr, double *F, int *amount )
return error;
} /* icvPoint7 */

View File

@@ -389,4 +389,3 @@ cvMorphEpilinesMulti( int lines, /* number of lines */
second_corr /* correspond information for the 2nd seq */
));
}

View File

@@ -1367,4 +1367,3 @@ void cvAddNoise(IplImage* pImg, int noise_type, double Ampl, CvRandState* rnd_st
cvReleaseImage(&pImgAdd);
} /* cvAddNoise */

View File

@@ -645,4 +645,3 @@ cvCreateGLCMImage( CvGLCM* GLCM, int step )
return dest;
}

View File

@@ -2785,4 +2785,3 @@ static void icvDecomposeQ(CvMat* /*matrQ*/,CvMat* /*matrH*/)
}
#endif

View File

@@ -971,4 +971,3 @@ inline double CalculateTransformationLMS3_0( CvPoint* pTemplPoints, CvPoint* pSr
dbLMS = dbXtXt + dbYtYt - ((double)pow(dbXtXs + dbYtYs,2) + (double)pow(dbXtYs - dbYtXs,2)) / del;
return dbLMS;
}

View File

@@ -80,5 +80,3 @@ cvDeInterlace( const CvArr* framearr, CvArr* fieldEven, CvArr* fieldOdd )
}
/* End of file. */

View File

@@ -112,4 +112,3 @@ protected:
};
TEST(Legacy_BruteForceMatcher, accuracy) { CV_BruteForceMatcherTest test; test.safe_run(); }

View File

@@ -352,5 +352,3 @@ void CV_OptFlowTest::run( int /* start_from */)
TEST(Legacy_OpticalFlow, accuracy) { CV_OptFlowTest test; test.safe_run(); }

View File

@@ -338,4 +338,3 @@ _exit_:
TEST(Legacy_Subdiv, correctness) { CV_SubdivTest test; test.safe_run(); }
/* End of file. */