Changeset 33079

Show
Ignore:
Timestamp:
05/05/09 23:03:31 (4 years ago)
Author:
Matt
Message:

Comments

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • lang/cpluspluscli/OpenCvSharp2/trunk/OpenCvSharp/Src/Core/Cv_R-Z.cs

    r33059 r33079  
    3030        /// Fills array with random numbers 
    3131        /// </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> 
    3434#endif 
    3535        public static void Rand(this CvRandState state, CvArr arr) 
     
    8888#else 
    8989        /// <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> 
    9696#endif 
    9797        public static void RandInit(this CvRandState state, double param1, double param2, int seed) 
     
    118118#else 
    119119        /// <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> 
    127127#endif 
    128128        public static void RandInit(this CvRandState state, double param1, double param2, int seed, DistributionType disttype) 
     
    203203        /// Changes RNG range while preserving RNG state 
    204204        /// </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> 
    208208#endif 
    209209        public static void RandSetRange(this CvRandState state, double param1, double param2) 
     
    231231        /// Changes RNG range while preserving RNG state 
    232232        /// </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> 
    237237#endif 
    238238        public static void RandSetRange(this CvRandState state, double param1, double param2, int index) 
     
    43274327        #endregion 
    43284328        #region Size 
     4329#if LANG_JP 
    43294330        /// <summary> 
    43304331        /// 矩形のピクセル精度でのサイズ構造体を生成する (cvSize相当) 
     
    43334334        /// <param name="height"></param> 
    43344335        /// <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 
    43354344        public static CvSize Size(int width, int height) 
    43364345        { 
     
    43504359        /// Calculates the sequence slice length 
    43514360        /// </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> 
    43544363        /// <returns></returns> 
    43554364#endif 
     
    48364845        #endregion 
    48374846        #region Sort 
     4847#if LANG_JP 
    48384848        /// <summary> 
    48394849        ///  
    48404850        /// </summary> 
    48414851        /// <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 
    48424858        public static void Sort(this CvArr src) 
    48434859        { 
    4844             Sort(src, null, null, 0); 
    4845         } 
     4860            Sort(src, null); 
     4861        } 
     4862#if LANG_JP 
    48464863        /// <summary> 
    48474864        ///  
     
    48494866        /// <param name="src"></param> 
    48504867        /// <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 
    48514875        public static void Sort(this CvArr src, CvArr dst) 
    48524876        { 
    4853             Sort(src, dst, null, 0); 
    4854         } 
     4877            Sort(src, dst, null); 
     4878        } 
     4879#if LANG_JP 
    48554880        /// <summary> 
    48564881        ///  
     
    48594884        /// <param name="dst"></param> 
    48604885        /// <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 
    48614894        public static void Sort(this CvArr src, CvArr dst, CvArr idxmat) 
    48624895        { 
    48634896            Sort(src, dst, idxmat, 0); 
    48644897        } 
     4898#if LANG_JP 
    48654899        /// <summary> 
    48664900        ///  
     
    48704904        /// <param name="idxmat"></param> 
    48714905        /// <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 
    48724915        public static void Sort(this CvArr src, CvArr dst, CvArr idxmat, SortFlag flags) 
    48734916        { 
     
    52435286#else 
    52445287        /// <summary> 
    5245         ///  
     5288        /// For MacOS or Linux, tries to start  thread to hande a window automatically (resizing, updating). Returns 0 if not supported 
    52465289        /// </summary> 
    52475290        /// <returns></returns>