대학교/영상처리 8

CCD, CMOS 센서의 세부적인 블록 메커니즘

http://magazine.hellot.net/magz/article/articleDetail.do?flag=all&showType=showType1&articleId=ARTI_000000000038377&articleAllListSortType=sort_1&page=1&selectYearMonth=200508&subCtgId= i-매거진 CMOS/CCD 센서의 기초와 응용 제작Ⅱ 센서가 출력하는 아날로그 신호 조정 기술 3 CCD 이미지 센서 출력의 신호처리 기술 CCD와 CMOS로 대표되는 이미지 센서가 디지털 스틸 카메라나 휴대전화에 탑 magazine.hellot.net

동적할당된 Buffer를 이용한 3,1 Channel Mat 구조 검증

#include #include"opencv2/core.hpp" #include"opencv2/highgui.hpp" #include"opencv2/imgproc.hpp" using namespace std; using namespace cv; int main() { Mat img = imread("C:\\dev\\c\\week2\\sample.jpg"); Mat resize_img; int width = 240; int height = 240; int channels = 3; resize(img, resize_img, Size(width, height)); int* buffer = new int[width * height * channels](); Mat buffer_img(width, height, ..

opencv 디렉토리 환경설정

vc15 vc14 가 문제였던건 찾았는데 아직 안되어 ... 살려줘 ... https://studium-anywhere.tistory.com/m/47 [OpenCV] OpenCV 환경변수 설정과 Visual Studio 설정 지난번에는 visual studio에서 설정하는 것만 확인했다. [OpenCV]OpenCV란 무엇인가? 그리고 설치 [OpenCV]OpenCV란 무엇인가? 그리고 설치 1. OpenCV OpenCV는 Open Source Computer Vision의 약자로 영상 처리에.. studium-anywhere.tistory.com https://with-seo.tistory.com/entry/OpenCV-C OpenCV(C++) 설치와 환경 설정 OpenCV는 다수의 모듈 라이브러리가 모..