'Programming > php' 카테고리의 다른 글
xcache apc (0) | 2014.09.23 |
---|---|
lighthttpd / php / FastCGI (0) | 2014.08.28 |
웹소켓 (websocket) (0) | 2014.07.03 |
php 로그인 예제 (0) | 2014.05.19 |
php framework / 읽을꺼리 (0) | 2014.04.09 |
xcache apc (0) | 2014.09.23 |
---|---|
lighthttpd / php / FastCGI (0) | 2014.08.28 |
웹소켓 (websocket) (0) | 2014.07.03 |
php 로그인 예제 (0) | 2014.05.19 |
php framework / 읽을꺼리 (0) | 2014.04.09 |
node.js (0) | 2014.07.07 |
---|---|
부트스트랩 - 웹개발 프레임워크 (0) | 2014.07.07 |
post 방식과 get 방식의 차이점(cache) (0) | 2014.05.15 |
sql designer(web) (0) | 2014.05.11 |
호스팅어 / 무료 웹 호스팅 (4) | 2014.04.27 |
알파카 로브 겟!!! (0) | 2014.07.11 |
---|---|
마비노기 3개 돌려보니 ㄷㄷ (0) | 2014.07.09 |
마비노기 10주년 (0) | 2014.06.24 |
마비노기 / 고마워요. 이세계에 와주셔서... (0) | 2014.06.20 |
10년째 망할 게임 마비노기 축하!! (0) | 2014.06.20 |
앨리스 매드니스 리턴즈 3D stereo (0) | 2018.03.28 |
---|---|
앨리스 매드니스 리턴즈 - 조이스틱으로 하기 (0) | 2018.03.16 |
앨리스 매드니스 리턴즈 20% (0) | 2014.07.01 |
앨리스 매드니스 리턴즈 ing (0) | 2014.06.29 |
앨리스 매드니스 리턴즈 시작! (0) | 2014.06.28 |
매형네서 빌려온 EH3 0850 2개 ㅠㅠ
이번에 구매한 QZ3 0927
기존에 사용하던 QZ3 0850 / EH3 1106
DIMM0 만 EH3 이고 나머지는 QZ3 라서 매형네 가서 EH3 0850(08년 50주차) 2개를 빌려와도 해결이 안되었다 ㅠㅠ
와.. 이거 갖고 싶다 ㅠㅠ (8) | 2014.07.23 |
---|---|
hp envy 15(win8.1 기본)에 win7 깔기 (2) | 2014.07.09 |
오늘의 지름!!! (0) | 2014.07.04 |
2710p 노트북 분해/수리 ㅋㅋㅋ (0) | 2014.06.26 |
hp 2710p 배터리 관리 프로그램 (0) | 2014.06.26 |
hp envy 15(win8.1 기본)에 win7 깔기 (2) | 2014.07.09 |
---|---|
크아아아앙!! 풀뱅크!!! (0) | 2014.07.05 |
2710p 노트북 분해/수리 ㅋㅋㅋ (0) | 2014.06.26 |
hp 2710p 배터리 관리 프로그램 (0) | 2014.06.26 |
2710p / 2730p service manual (0) | 2014.06.24 |
|
class CV_EXPORTS Mat
{
public:
//! returns a new matrix header for the specified row
Mat row(int y) const;
//! returns a new matrix header for the specified column
Mat col(int x) const;
/*! includes several bit-fields:
- the magic signature
- continuity flag
- depth
- number of channels
*/
int flags;
//! the matrix dimensionality, >= 2
int dims;
//! the number of rows and columns or (-1, -1) when the matrix has more than 2 dimensions
int rows, cols;
//! pointer to the data
uchar* data;
//! returns element type, similar to CV_MAT_TYPE(cvmat->type)
int type() const;
//! returns element type, similar to CV_MAT_DEPTH(cvmat->type)
int depth() const;
//! returns element type, similar to CV_MAT_CN(cvmat->type)
int channels() const;
//! returns pointer to (i0,i1) submatrix along the dimensions #0 and #1
uchar* ptr(int i0, int i1);
const uchar* ptr(int i0, int i1) const;
//! template version of the above method
template<typename _Tp> _Tp* ptr(int i0=0);
//! the same as above, with the pointer dereferencing
template<typename _Tp> _Tp& at(int i0=0);
MSize size;
MStep step;
|
opencv2 마우스 이벤트 / 클릭 위치 (0) | 2015.09.25 |
---|---|
opencv2.. VideoCapture 클래스.. (0) | 2015.09.25 |
openCV2 관련 꿍시렁 꿍시렁 (0) | 2014.07.04 |
opencv2 highgui (0) | 2014.07.03 |
opencv2 VideoCapture::get() / set() - 웹캠 설정 읽어오기 (2) | 2014.07.03 |
opencv2.. VideoCapture 클래스.. (0) | 2015.09.25 |
---|---|
openCV Mat Class (0) | 2014.07.04 |
opencv2 highgui (0) | 2014.07.03 |
opencv2 VideoCapture::get() / set() - 웹캠 설정 읽어오기 (2) | 2014.07.03 |
opencv2 채널분리하기(split) (0) | 2014.07.03 |
lighthttpd / php / FastCGI (0) | 2014.08.28 |
---|---|
php5 class / object oriented programming (4) | 2014.07.07 |
php 로그인 예제 (0) | 2014.05.19 |
php framework / 읽을꺼리 (0) | 2014.04.09 |
php 메뉴얼 (0) | 2014.03.28 |
CV_EXPORTS_W void namedWindow(const string& winname, int flags = WINDOW_AUTOSIZE);
CV_EXPORTS_W void destroyWindow(const string& winname);
CV_EXPORTS_W void destroyAllWindows();
CV_EXPORTS_W void resizeWindow(const string& winname, int width, int height);
CV_EXPORTS_W void moveWindow(const string& winname, int x, int y);
CV_EXPORTS_W int waitKey(int delay = 0);
|
CV_EXPORTS_W void imshow(const string& winname, InputArray mat);
CV_EXPORTS_W Mat imread( const string& filename, int flags=1 );
CV_EXPORTS_W bool imwrite( const string& filename, InputArray img, const vector<int>& params=vector<int>());
CV_EXPORTS_W Mat imdecode( InputArray buf, int flags );
CV_EXPORTS Mat imdecode( InputArray buf, int flags, Mat* dst );
CV_EXPORTS_W bool imencode( const string& ext, InputArray img,
CV_OUT vector<uchar>& buf,
const vector<int>& params=vector<int>()); |
class CV_EXPORTS_W VideoCapture
{
public:
CV_WRAP VideoCapture();
CV_WRAP VideoCapture(const string& filename);
CV_WRAP VideoCapture(int device);
virtual ~VideoCapture();
CV_WRAP virtual bool open(const string& filename);
CV_WRAP virtual bool open(int device);
CV_WRAP virtual bool isOpened() const;
CV_WRAP virtual void release();
CV_WRAP virtual bool grab();
CV_WRAP virtual bool retrieve(CV_OUT Mat& image, int channel=0);
virtual VideoCapture& operator >> (CV_OUT Mat& image);
CV_WRAP virtual bool read(CV_OUT Mat& image);
CV_WRAP virtual bool set(int propId, double value);
CV_WRAP virtual double get(int propId);
protected:
Ptr<CvCapture> cap;
};
class CV_EXPORTS_W VideoWriter
{
public:
CV_WRAP VideoWriter();
CV_WRAP VideoWriter(const string& filename, int fourcc, double fps,
Size frameSize, bool isColor=true);
virtual ~VideoWriter();
CV_WRAP virtual bool open(const string& filename, int fourcc, double fps,
Size frameSize, bool isColor=true);
CV_WRAP virtual bool isOpened() const;
CV_WRAP virtual void release();
virtual VideoWriter& operator << (const Mat& image);
CV_WRAP virtual void write(const Mat& image);
protected:
Ptr<CvVideoWriter> writer;
}; |
openCV Mat Class (0) | 2014.07.04 |
---|---|
openCV2 관련 꿍시렁 꿍시렁 (0) | 2014.07.04 |
opencv2 VideoCapture::get() / set() - 웹캠 설정 읽어오기 (2) | 2014.07.03 |
opencv2 채널분리하기(split) (0) | 2014.07.03 |
opencv2 rgb2hsv color space 변환하기 (0) | 2014.07.02 |