1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201
|
//// assgn2.cpp : Defines the entry point for the console application.
//
#include "stdafx.h"
#include "blepo.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// The one and only application object
CWinApp theApp;
using namespace std;
using namespace blepo;
Figure fig,mod_fig,fig2,fig3;
ImgGray img; // an 8-bit-per-pixel grayscale
int x,y;
unsigned char colour=img(x,y);
int flag();
void thrshld(int x);
int _tmain(int argc, TCHAR* argv[], TCHAR* envp[])
{
// initialize MFC and print and error on failure
if (!AfxWinInit(::GetModuleHandle(NULL), NULL, ::GetCommandLine(), 0))
{
cerr << _T("Fatal Error: MFC initialization failed") << endl;
return 1; // error
}
// my code
CString str = "Hello world";
printf("%s\n", (const char*) str);
CFileDialog FileDlg(TRUE,
NULL,
NULL,
OFN_HIDEREADONLY,
"All image files|*.pgm;*ppm;*.bmp;*.jpg;*.jpeg|PGM/PPM files (*.pgm)|*.pgm;*.ppm|BMP files (*.bmp)|*.bmp|JPEG files (*.jpg,.jpeg)|*.jpg;*.jpeg|All files (*.*)|*.*||", // filter
NULL);
if (FileDlg.DoModal() == IDOK)
{
CString path_name = FileDlg.GetPathName();
Load(path_name, &img);
}
fig.Draw(img);
ImgGray img1(img);
img1=img;
fig2.Draw(img1);
//for threshold the image once
ImgGray img2(img);
img2=img;
for (x=0 ;x<=img.Width()-1; x++)
{
for (y=0; y<=img.Height()-1 ; y++)
{
{
if(img(x,y)>=110)
{
img(x,y)=255;
}
else
{
img(x,y)=0;
}
}
}
}
/*for (x=0; x <= img.Width()-1; x++)
{
for (y=0; y <= img.Height()-1; y++)
{
if(flag())
{
img(x,y) = 255;
}
else
{
img(x,y) = 1;
}
}
}*/
thrshld (110);
fig2.Draw(img2);
thrshld (80);
fig3.Draw(img2);
//finding the moments
mod_fig.Draw(img2);
EventLoop();
return 0; // success
}
int flag(){
if (img(x-1,y) != colour)
return 0;
if (img(x-1,y-1) != colour)
return 0;
if (img(x,y-1) != colour)
return 0;
if (img(x+1,y-1) != colour)
return 0;
if (img(x+1,y) != colour)
return 0;
if (img(x+1,y+1) != colour)
return 0;
if (img(x,y+1) != colour)
return 0;
if (img(x-1,y+1) != colour)
return 0;
return 1;
}
void thrshld(int a)
{for (x=0 ;x<=img.Width()-1; x++)
{
for (y=0; y<=img.Height()-1 ; y++)
{
{
if(img(x,y)>=a)
{
img(x,y)=255;
}
else
{
img(x,y)=0;
}
}
}
}
}
| |