Can refer to many different things depending on the use of other tags with it.
Questions tagged [region]
768 questions
-3
votes
1 answer
Bitmap with rounded corners
GetWindowRect(hWnd, &wnd);
hdc = BeginPaint(hWnd, &ps);
hdcMem = CreateCompatibleDC(hdc);
for (int i = 0; i < n; ++i)
{
HRGN rgn = CreateRoundRectRgn(0, 0, CARD_WIDTH, CARD_HEIGHT, 7, 7);
…

user2962433
- 71
- 1
- 2
-4
votes
1 answer
Returning specific regions
Say that I have a labeled image, where I have calculated the area of each region. How can I return specific regions? That is, say I want to return the regions that have >=300 and <500?
Thanks.

Simplicity
- 47,404
- 98
- 256
- 385
-7
votes
3 answers
Are there any differences to C# between North America, Asia, Europe?
I just took online (non-course related) test on C# and this question came up to me:
Are there any difference to the C# language based on country/region?

Dan Beaulieu
- 19,406
- 19
- 101
- 135