当我在 OpenCv 中打开图像(可能是 300 dpi、72 dpi 等)时,图像的 dpi 会自动更改为 96 dpi。我想改变这个dpi。请帮忙。提前致谢...
#include "stdafx.h"
#include <cv.h>
#include <cxcore.h>
#include <highgui.h>
#include <iostream>
using namespace std;
int _tmain(int argc, _TCHAR* argv[])
{
IplImage *img1=cvLoadImage("input.jpg");
cvSaveImage("output.jpg",img1);
return(0);
}