Changeset 33079
- Timestamp:
- 05/05/09 23:03:31 (4 years ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
lang/cpluspluscli/OpenCvSharp2/trunk/OpenCvSharp/Src/Core/Cv_R-Z.cs
r33059 r33079 30 30 /// Fills array with random numbers 31 31 /// </summary> 32 /// <param name="state"> </param>33 /// <param name="arr"> </param>32 /// <param name="state">CvRandState Structure</param> 33 /// <param name="arr">The array to randomize</param> 34 34 #endif 35 35 public static void Rand(this CvRandState state, CvArr arr) … … 88 88 #else 89 89 /// <summary> 90 /// 91 /// </summary> 92 /// <param name="state"> </param>93 /// <param name="param1"> </param>94 /// <param name="param2"> </param>95 /// <param name="seed"> </param>90 /// Initialize CvRandState structure 91 /// </summary> 92 /// <param name="state">CvRandState structure to initialize</param> 93 /// <param name="param1">The first parameter of distribution. In case of uniform distribution it is the inclusive lower boundary of random numbers range. In case of normal distribution it is the mean value of random numbers. </param> 94 /// <param name="param2">The second parameter of distribution. In case of uniform distribution it is the exclusive upper boundary of random numbers range. In case of normal distribution it is the standard deviation of random numbers. </param> 95 /// <param name="seed">Seed value</param> 96 96 #endif 97 97 public static void RandInit(this CvRandState state, double param1, double param2, int seed) … … 118 118 #else 119 119 /// <summary> 120 /// 121 /// </summary> 122 /// <param name="state"> </param>123 /// <param name="param1"> </param>124 /// <param name="param2"> </param>125 /// <param name="seed"> </param>126 /// <param name="disttype"> </param>120 /// Initialize CvRandState structure 121 /// </summary> 122 /// <param name="state">CvRandState structure to initialize</param> 123 /// <param name="param1">The first parameter of distribution. In case of uniform distribution it is the inclusive lower boundary of random numbers range. In case of normal distribution it is the mean value of random numbers. </param> 124 /// <param name="param2">The second parameter of distribution. In case of uniform distribution it is the exclusive upper boundary of random numbers range. In case of normal distribution it is the standard deviation of random numbers. </param> 125 /// <param name="seed">Seed value</param> 126 /// <param name="disttype">Type of distribution</param> 127 127 #endif 128 128 public static void RandInit(this CvRandState state, double param1, double param2, int seed, DistributionType disttype) … … 203 203 /// Changes RNG range while preserving RNG state 204 204 /// </summary> 205 /// <param name="state"> </param>206 /// <param name="param1"> </param>207 /// <param name="param2"> </param>205 /// <param name="state">CvRandState structure to be opdated</param> 206 /// <param name="param1">The first parameter of distribution. In case of uniform distribution it is the inclusive lower boundary of random numbers range. In case of normal distribution it is the mean value of random numbers. </param> 207 /// <param name="param2">The second parameter of distribution. In case of uniform distribution it is the exclusive upper boundary of random numbers range. In case of normal distribution it is the standard deviation of random numbers. </param> 208 208 #endif 209 209 public static void RandSetRange(this CvRandState state, double param1, double param2) … … 231 231 /// Changes RNG range while preserving RNG state 232 232 /// </summary> 233 /// <param name="state"> </param>234 /// <param name="param1"> </param>235 /// <param name="param2"> </param>236 /// <param name="index"> </param>233 /// <param name="state">CvRandState structure to be opdated</param> 234 /// <param name="param1">The first parameter of distribution. In case of uniform distribution it is the inclusive lower boundary of random numbers range. In case of normal distribution it is the mean value of random numbers. </param> 235 /// <param name="param2">The second parameter of distribution. In case of uniform distribution it is the exclusive upper boundary of random numbers range. In case of normal distribution it is the standard deviation of random numbers. </param> 236 /// <param name="index">Index dimension to initialize, -1 = all</param> 237 237 #endif 238 238 public static void RandSetRange(this CvRandState state, double param1, double param2, int index) … … 4327 4327 #endregion 4328 4328 #region Size 4329 #if LANG_JP 4329 4330 /// <summary> 4330 4331 /// 矩形のピクセル精度でのサイズ構造体を生成する (cvSize相当) … … 4333 4334 /// <param name="height"></param> 4334 4335 /// <returns></returns> 4336 #else 4337 /// <summary> 4338 /// Create CVSize structure and initializes it 4339 /// </summary> 4340 /// <param name="width">Width</param> 4341 /// <param name="height">Height</param> 4342 /// <returns></returns> 4343 #endif 4335 4344 public static CvSize Size(int width, int height) 4336 4345 { … … 4350 4359 /// Calculates the sequence slice length 4351 4360 /// </summary> 4352 /// <param name="slice"> </param>4353 /// <param name="seq"> </param>4361 /// <param name="slice">Slice to measure</param> 4362 /// <param name="seq">Sequence</param> 4354 4363 /// <returns></returns> 4355 4364 #endif … … 4836 4845 #endregion 4837 4846 #region Sort 4847 #if LANG_JP 4838 4848 /// <summary> 4839 4849 /// 4840 4850 /// </summary> 4841 4851 /// <param name="src"></param> 4852 #else 4853 /// <summary> 4854 /// Sorts the rows/cols of an array ascending/descending 4855 /// </summary> 4856 /// <param name="src">Source array to sort</param> 4857 #endif 4842 4858 public static void Sort(this CvArr src) 4843 4859 { 4844 Sort(src, null, null, 0); 4845 } 4860 Sort(src, null); 4861 } 4862 #if LANG_JP 4846 4863 /// <summary> 4847 4864 /// … … 4849 4866 /// <param name="src"></param> 4850 4867 /// <param name="dst"></param> 4868 #else 4869 /// <summary> 4870 /// Sorts the rows/cols of an array ascending/descending 4871 /// </summary> 4872 /// <param name="src">Source array to sort</param> 4873 /// <param name="dst">Optional destination array</param> 4874 #endif 4851 4875 public static void Sort(this CvArr src, CvArr dst) 4852 4876 { 4853 Sort(src, dst, null, 0); 4854 } 4877 Sort(src, dst, null); 4878 } 4879 #if LANG_JP 4855 4880 /// <summary> 4856 4881 /// … … 4859 4884 /// <param name="dst"></param> 4860 4885 /// <param name="idxmat"></param> 4886 #else 4887 /// <summary> 4888 /// Sorts the rows/cols of an array ascending/descending 4889 /// </summary> 4890 /// <param name="src">Source array to sort</param> 4891 /// <param name="dst">Optional destination array</param> 4892 /// <param name="idxmat">Index matrix</param> 4893 #endif 4861 4894 public static void Sort(this CvArr src, CvArr dst, CvArr idxmat) 4862 4895 { 4863 4896 Sort(src, dst, idxmat, 0); 4864 4897 } 4898 #if LANG_JP 4865 4899 /// <summary> 4866 4900 /// … … 4870 4904 /// <param name="idxmat"></param> 4871 4905 /// <param name="flags"></param> 4906 #else 4907 /// <summary> 4908 /// Sorts the rows/cols of an array ascending/descending 4909 /// </summary> 4910 /// <param name="src">Source array to sort</param> 4911 /// <param name="dst">Optional destination array</param> 4912 /// <param name="idxmat">Index matrix</param> 4913 /// <param name="flags">Sorting parameter</param> 4914 #endif 4872 4915 public static void Sort(this CvArr src, CvArr dst, CvArr idxmat, SortFlag flags) 4873 4916 { … … 5243 5286 #else 5244 5287 /// <summary> 5245 /// 5288 /// For MacOS or Linux, tries to start thread to hande a window automatically (resizing, updating). Returns 0 if not supported 5246 5289 /// </summary> 5247 5290 /// <returns></returns>
![(please configure the [header_logo] section in trac.ini)](/share/chrome/site/your_project_logo.png)