我有一个大尺寸的图像。由于处理高分辨率图像需要很长时间,我会保持纵横比调整大小。从调整大小后的图像中我检测到一个矩形,我有矩形的坐标。
Bitmap ResizekeepAspectRatio(Bitmap imgPhoto, int Width, int Height)
{
int sourceWidth = imgPhoto.Width;
int sourceHeight = imgPhoto.Height;
int sourceX = 0;
int sourceY = 0;
int destX = 0;
int destY = 0;
float nPercent = 0;
float nPercentW = 0;
float nPercentH = 0;
nPercentW = ((float)Width / (float)sourceWidth);
nPercentH = ((float)Height / (float)sourceHeight);
if (nPercentH < nPercentW)
{
nPercent = nPercentH;
destX = System.Convert.ToInt16((Width -
(sourceWidth * nPercent)) / 2);
}
else
{
nPercent = nPercentW;
destY = System.Convert.ToInt16((Height -
(sourceHeight * nPercent)) / 2);
}
int destWidth = (int)(sourceWidth * nPercent);
int destHeight = (int)(sourceHeight * nPercent);
Bitmap bmPhoto = new Bitmap(Width, Height,
PixelFormat.Format24bppRgb);
bmPhoto.SetResolution(imgPhoto.HorizontalResolution,
imgPhoto.VerticalResolution);
Graphics grPhoto = Graphics.FromImage(bmPhoto);
grPhoto.Clear(Color.Red);
grPhoto.InterpolationMode =
InterpolationMode.HighQualityBicubic;
grPhoto.DrawImage(imgPhoto,
new Rectangle(destX, destY, destWidth, destHeight),
new Rectangle(sourceX, sourceY, sourceWidth, sourceHeight),
GraphicsUnit.Pixel);
grPhoto.Dispose();
return bmPhoto;
}
有没有办法可以将这个矩形转换/映射到大图像,这样我就可以得到相同的区域。这样做是为了节省时间。
一些澄清: 我有一个大的原始图像..我调整它保持纵横比和使用一些处理我得到一个矩形部分(只是坐标)。由于这部分的图像质量不好,我需要找到一种方法来映射这个坐标到大图像。
答案 0 :(得分:1)
好的,所以如果我明白这一点,那就是:
在选择矩形的内容中有一个视口,并且您希望将此矩形缩放为未缩放的图像。
所以我们将有这样的功能:
public RectangleF TranslateScale(RectangleF CropRectangle, Bitmap imgPhoto)
首先我们需要的是计算乘数以使图像适合视口,就像你的函数一样:
int sourceWidth = imgPhoto.Width;
int sourceHeight = imgPhoto.Height;
int sourceX = 0;
int sourceY = 0;
int destX = 0;
int destY = 0;
float nPercent = 0;
float nPercentW = 0;
float nPercentH = 0;
nPercentW = ((float)Width / (float)sourceWidth);
nPercentH = ((float)Height / (float)sourceHeight);
if (nPercentH < nPercentW)
nPercent = nPercentH;
else
nPercent = nPercentW;
现在我们知道比例百分比,我们只取你的函数的倒数,而不是乘以只是划分矩形的大小和位置:
CropRectangle.X /= nPercent;
CropRectangle.Y /= nPercent;
CropRectangle.Width /= nPercent;
CropRectangle.Height /= nPercent
return CropRectangle;
就是这样,现在您将矩形缩放到原始图像大小,现在可以裁剪该矩形。