以英寸爲單位的圖像尺寸通過我的代碼,我想知道的圖像中英寸的尺寸。通過OpenCV的,我可以找到使用下面的代碼的圖像的像素陣列的高度和寬度:查找使用OpenCV庫
#include "stdafx.h"
#include <cv.h>
#include <cxcore.h>
#include <highgui.h>
#include <iostream>
using namespace std;
int _tmain(int argc, _TCHAR* argv[])
{
IplImage *img = cvLoadImage("photo.jpg");
if (!img) {
printf("Error: Couldn't open the image file.\n");
return 1;
}
cout<<"Number of pixels in width = "<<img->width<<endl<<"Number of pixels in height = "<<img->height;
return(0);
}
請幫我找到圖像中英寸大小。 在此先感謝...
您需要一種方法從硬件中獲取像素大小。我不認爲OpenCV提供了一個方法來獲得這個。 – juanchopanza