我有一个 C++ .exe 我用作独立的图像清洁器。但我现在想在我自己的 c# 应用程序中使用它的功能,所以我开始翻译它。但我真的对 C++ 及其逻辑一无所知。所以我来这里寻求帮助。
首先,有没有人知道这个功能的任何等价物?Corona“getPixels()”(是的,有一个“s”,因为我知道 c# 有一个内置的 getPixel):这是来自 corona doc 的函数解释:getPixels() Corona dll 它用于我要翻译的行中.
这是所有的事情:
原始 C++ 代码:
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "corona.h"
#define IMAGE_FORMAT corona::PF_R8G8B8 /* RGB mode - 8 bits each */
#define GetXY(x,y, w) ((x) + ((w) * (y)))
#define MIN(a, b) ((a) < (b) ? (a) : (b))
#define MAX(a, b) ((a) > (b) ? (a) : (b))
#define SQ(a) ((a) * (a))
#define DISTANCE(a, b, c, d) (SQ(a - c) + SQ(b - d))
int main(int argc, char **argv)
{
corona::Image *img;
unsigned char *pixels;
int threshold = 0;
int distance = 0;
int pixel;
char str[255];
int rows, cols;
int row, col;
unsigned char *bitmap, *p;
unsigned char *outmap;
pixels = (unsigned char*)img->getPixels();
rows = img->getHeight();
cols = img->getWidth();
bitmap = new unsigned char[rows * cols];
p = bitmap;
outmap = new unsigned char[rows * cols];
//convert to single byte grayscale
for (row = 0; row < rows; row++)
for (col = 0; col < cols; col++)
{
pixel = *pixels++;
pixel += *pixels++;
pixel += *pixels++;
*p++ = pixel / 3;
}
//free corona loading
delete img;
int distance = 8;
int threshold = 7;
//check our threshold
for (row = 0; row < rows; row++)
for (col = 0; col < cols; col++)
{
if (bitmap[GetXY(col, row, cols)])
{
int count = 0;
int x, y;
int dhalf = distance / 2 + 1;
//optimization possible here by checking inside a circle rather than square+dist
for (x = MAX(col - dhalf, 0); x < MIN(col + dhalf, cols); x++)
for (y = MAX(row - dhalf, 0); y < MIN(row + dhalf, rows); y++)
{
if (SQ(distance) > DISTANCE(col, row, x, y) && bitmap[GetXY(x, y, cols)])
count++;
}
if (count >= threshold)
outmap[GetXY(col, row, cols)] = 255;
else
outmap[GetXY(col, row, cols)] = 0;
}
else
outmap[GetXY(col, row, cols)] = 0;
}
}
我现在可以翻译的内容...我希望至少是正确的...:
private Bitmap optIm2(Bitmap _img)
{
int rows = _img.Height;
int cols = _img.Width;
pixels = (unsigned char)img->getPixels(); //here i dont know at all
bitmap = new unsigned char[rows * cols]; //here i dont know at all
p = bitmap;
outmap = new unsigned char[rows * cols]; //here i dont know at all
//convert to single byte grayscale
for (int row = 0; row < rows; row++)
{
for (int col = 0; col < cols; col++)
{
pixel = *pixels++; //here i dont know at all
pixel += *pixels++; //here i dont know at all
pixel += *pixels++; //here i dont know at all
*p++ = pixel / 3; //here i dont know at all
}
}
//free corona loading
delete img;
int distance = 9;
int threshold = 7;
//check our threshold
for (int row = 0; row < rows; row++)
{
for (int col = 0; col < cols; col++)
{
if (bitmap[GetXY(col, row, cols)])
{
int count = 0;
int x, y;
int dhalf = distance / 2 + 1;
//optimization possible here by checking inside a circle rather than square+dist
for (x = Math.Max(col - dhalf, 0); x < Math.Min(col + dhalf, cols); x++)
{
for (y = Math.Max(row - dhalf, 0); y < Math.Min(row + dhalf, rows); y++)
{
if (SQ(distance) > DISTANCE(col, row, x, y) && bitmap[GetXY(x, y, cols)])
count++;
}
}
if (count >= threshold)
{
outmap[GetXY(col, row, cols)] = 255;
}
else
{
outmap[GetXY(col, row, cols)] = 0;
}
}
else
{
outmap[GetXY(col, row, cols)] = 0;
}
}
}
return iDontKnowWhatYet;
}
private int GetXY(int x,int y, int w) { return ((x) + ((w) * (y))); }
private int SQ(int a) { return ((a) * (a)); }
private int DISTANCE(int a, int b, int c, int d) { return (SQ(a - c) + SQ(b - d)); }
任何人都可以帮我理解并转换它吗?