当我在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);
}