haraldhv
/
aigo
Archived
1
0
Fork 0
This repository has been archived on 2024-07-04. You can view files and clone it, but cannot push or open issues or pull requests.
aigo/lib/image.cpp

20 lines
426 B
C++
Raw Normal View History

#include "image.h"
namespace Image
{
void threshold(SDL_Surface *image, int lowerBound, int upperBound)
{
int x, y;
for (int i = 0; i < image->w * image->h; ++i)
{
int gray = GRAY(((uint32_t*)image->pixels)[i]);
if (gray > lowerBound && gray < upperBound)
((uint32_t*)image->pixels)[i] = 0xffffffff;
else
((uint32_t*)image->pixels)[i] = 0xff000000;
//gray | (gray << 8) | (gray << 16);
}
}
}