opencv - warpAffine 함수와 매개변수 의미
void cv::warpAffine( InputArray src, OutputArray dst, InputArray M, Size dsize, int flags = INTER_LINEAR, int borderMode = BORDER_CONSTANT, const Scalar & borderValue = Scalar() ) Python: cv.warpAffine( src, # input image M, # transformation matrix dsize[, # output image size (width, heigth) dst[, # output instance??????????? flags[, # interpolation - cv2.INTER_AREA, cv2.INTER_CUBIC, etc borderM..
2022. 9. 20.