Show
Ignore:
Timestamp:
11/03/08 17:41:32 (5 years ago)
Author:
schima
Message:

OpenCV -> CV

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • lang/cpluspluscli/OpenCvSharp/trunk/OpenCvSharp/CvHistogram.cpp

    r21994 r22623  
    66#include "StdAfx.h" 
    77#include "CvHistogram.h" 
    8 #include "OpenCV.h" 
     8#include "CV.h" 
    99 
    1010//typedef struct CvHistogram __CvHistogram; 
     
    122122        void CvHistogram::CalcArr( N::CvArr^ arr ) 
    123123        { 
    124                 OpenCV::cvCalcArrHist(arr, this); 
     124                CV::CalcArrHist(arr, this); 
    125125        } 
    126126        /// <summary> 
     
    132132        void CvHistogram::CalcArr( N::CvArr^ arr, Int32 accumulate ) 
    133133        { 
    134                 OpenCV::cvCalcArrHist(arr, this, accumulate); 
     134                CV::CalcArrHist(arr, this, accumulate); 
    135135        } 
    136136        /// <summary> 
     
    143143        void CvHistogram::CalcArr( N::CvArr^ arr, Int32 accumulate, N::CvArr^ mask ) 
    144144        { 
    145                 OpenCV::cvCalcArrHist(arr, this, accumulate, mask); 
     145                CV::CalcArrHist(arr, this, accumulate, mask); 
    146146        } 
    147147        /// <summary> 
     
    152152        void CvHistogram::CalcArr( array<N::CvArr^>^ arr ) 
    153153        { 
    154                 OpenCV::cvCalcArrHist(arr, this); 
     154                CV::CalcArrHist(arr, this); 
    155155        } 
    156156        /// <summary> 
     
    162162        void CvHistogram::CalcArr( array<N::CvArr^>^ arr, Int32 accumulate ) 
    163163        { 
    164                 OpenCV::cvCalcArrHist(arr, this, accumulate); 
     164                CV::CalcArrHist(arr, this, accumulate); 
    165165        } 
    166166        /// <summary> 
     
    173173        void CvHistogram::CalcArr( array<N::CvArr^>^ arr, Int32 accumulate, N::CvArr^ mask ) 
    174174        { 
    175                 OpenCV::cvCalcArrHist(arr, this, accumulate, mask); 
     175                CV::CalcArrHist(arr, this, accumulate, mask); 
    176176        } 
    177177        #pragma endregion 
     
    184184        void CvHistogram::Calc( N::IplImage^ image ) 
    185185        { 
    186                 OpenCV::cvCalcHist(image, this); 
     186                CV::CalcHist(image, this); 
    187187        } 
    188188        /// <summary> 
     
    194194        void CvHistogram::Calc( N::IplImage^ image, Int32 accumulate ) 
    195195        { 
    196                 OpenCV::cvCalcHist(image, this, accumulate); 
     196                CV::CalcHist(image, this, accumulate); 
    197197        } 
    198198        /// <summary> 
     
    205205        void CvHistogram::Calc( N::IplImage^ image, Int32 accumulate, N::CvArr^ mask ) 
    206206        { 
    207                 OpenCV::cvCalcHist(image, this, accumulate, mask); 
     207                CV::CalcHist(image, this, accumulate, mask); 
    208208        } 
    209209        /// <summary> 
     
    214214        void CvHistogram::Calc( array<N::IplImage^>^ image ) 
    215215        { 
    216                 OpenCV::cvCalcHist(image, this); 
     216                CV::CalcHist(image, this); 
    217217        } 
    218218        /// <summary> 
     
    224224        void CvHistogram::Calc( array<N::IplImage^>^ image, Int32 accumulate) 
    225225        { 
    226                 OpenCV::cvCalcHist(image, this, accumulate); 
     226                CV::CalcHist(image, this, accumulate); 
    227227        } 
    228228        /// <summary> 
     
    235235        void CvHistogram::Calc( array<N::IplImage^>^ image, Int32 accumulate, N::CvArr^ mask ) 
    236236        { 
    237                 OpenCV::cvCalcHist(image, this, accumulate, mask); 
     237                CV::CalcHist(image, this, accumulate, mask); 
    238238        } 
    239239        #pragma endregion 
     
    316316        void CvHistogram::GetMinMaxValue( [Out] Single% min_value, [Out] Single% max_value ) 
    317317        { 
    318                 OpenCV::cvGetMinMaxHistValue(this, min_value, max_value); 
     318                CV::GetMinMaxHistValue(this, min_value, max_value); 
    319319        } 
    320320        /// <summary> 
     
    328328        void CvHistogram::GetMinMaxValue( [Out] Single% min_value, [Out] Single% max_value, [Out] Int32% min_idx, [Out] Int32% max_idx ) 
    329329        { 
    330                 OpenCV::cvGetMinMaxHistValue(this, min_value, max_value, min_idx, max_idx); 
     330                CV::GetMinMaxHistValue(this, min_value, max_value, min_idx, max_idx); 
    331331        } 
    332332        #pragma endregion