How can I find the area of a shape (triangle, quadrilateral and pentagon) drawn with BGI, whose coordinate points are given in C programming, by adding the unit squares inside the quadrilateral and through which the side lines pass?
I drew it in BGI with the coordinate points given in the figure, but I need to find its area by adding the unit squares within which the edge lines pass. I need this for a project.
void dortgen_alani(int sekil_ciz[][2])
{
int x[4], y[4];
for (int i = 0; i < 4; i++) {
x[i] = sekil_ciz[i][0];
y[i] = sekil_ciz[i][1];
putpixel(x[i], y[i], WHITE); // Noktaları işaretle
}
int toplamBirimKare = 0;
int minX = x[0], minY = y[0];
int maxX = x[0], maxY = y[0];
for (int i = 1; i < 4; i++) {
if (x[i] < minX) minX = x[i];
if (x[i] > maxX) maxX = x[i];
if (y[i] < minY) minY = y[i];
if (y[i] > maxY) maxY = y[i];
}
for (int i = minX; i < maxX; i++) {
for (int j = minY; j < maxY; j++) {
int icindeMi = 1;
for (int k = 0; k < 4; k++) {
int x1 = x[k];
int y1 = y[k];
int x2 = x[(k + 1) % 4];
int y2 = y[(k + 1) % 4];
int xMin = x1 < x2 ? x1 : x2;
int xMax = x1 > x2 ? x1 : x2;
int yMin = y1 < y2 ? y1 : y2;
int yMax = y1 > y2 ? y1 : y2;
if (i >= xMin && i < xMax && j >= yMin && j < yMax) {
if ((i - x1) * (y2 - y1) - (j - y1) * (x2 - x1) < 0) {
icindeMi = 0;
break;
}
}
}
if (icindeMi) {
putpixel(i, j, BLUE);
toplamBirimKare++;
}
}
}
printf("Dortgenin alani (birim karelerle): %d birim kare\n", toplamBirimKare / 100);
}
This code does not calculate correctly.
Find the area of a screen image/object by reading screen pixels of the object.
This is a solution for finding the area of specific geometric objects drawn on the screen in graphics mode. It reads screen pixels to discern exact location and general nature/shape of the object, and ultimately its area.
UPDATED VERSION:
Tested objects: triangle, rectangle, quadrilateral, pentagon, circle, and more. Test bed showing proof of concept with runnable code and numerous test cases is here.
Logic: Assume all the unpainted screen pixels are zero (ie: color black). We traverse the screen left to right and top to bottom examining every pixel to locate the image object and its interior. Expectation is that the image only exists as an outline (not filled), and is drawn with some non-zero pixel color.
From there, we use a common floodfill algorithm to fill the interior of the object with a specified color. At last, we analyze the screen summing all the painted pixels: this is the object's area.
This code is designed for Turbo C -- per OP's reference: "drawn in "BGI" (Borland Graphics Interface). However, the logic of the code is portable, so we only need to replace putpixel() and getpixel() with the applicable API to work on any platform.
putpixel() and getpixel() are both simulated -- using a virtual screen buffer -- in this example.
Output: