2015-10-06 117 views

回答

38

您可以使用rowscols

cout << "Width : " << src.cols << endl; 
cout << "Height: " << src.rows << endl; 

size()

cout << "Width : " << src.size().width << endl; 
cout << "Height: " << src.size().height << endl; 
13

也爲OpenCV的Python中,你可以這樣做:

img = cv2.imread('myImage.jpg') 
height, width, channels = img.shape 
+0

好,但OP是要求C++ – Petruza

+0

是的,這是真的,但谷歌搜索的Python帶來 你在這裏。 – imoutidi

相關問題