本文整理汇总了C++中GImage::getWidth方法的典型用法代码示例。如果您正苦于以下问题:C++ GImage::getWidth方法的具体用法?C++ GImage::getWidth怎么用?C++ GImage::getWidth使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类GImage
的用法示例。
在下文中一共展示了GImage::getWidth方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: silhouetteCount
void silhouetteCount(string nameImageFile){
int silhouetteCounter=0;
GImage* imageFile = new GImage(nameImageFile);
GBufferedImage* imgageInBuffer = new GBufferedImage(0,0,imageFile->getWidth(), imageFile->getHeight());
imgageInBuffer->load(nameImageFile);
int imgHaight = imgageInBuffer->getHeight();
int imgWidth = imgageInBuffer->getWidth();
GWindow gw(imgWidth, imgHaight);
gw.add(imageFile);
myGrid imageBinaring(imgHaight, imgWidth);
binaringImageToGrid(imgageInBuffer, imageBinaring);
bool silhouetteIsValid = false;
for(int x = 0; x < imgHaight; x++){
for (int y = 0; y < imgWidth; y++){
if (imageBinaring.get_color(x,y) == true && imageBinaring.get_visited(x,y) == false) {
selectFindeArea(x,y, imageBinaring, silhouetteIsValid);
if (silhouetteIsValid) silhouetteCounter++;
}
}
}
cout<<"in File: "<<nameImageFile<<"; found "<< silhouetteCounter<<" silhouettes."<<endl;
cout<<endl;
delete imgageInBuffer;
delete imageFile;
}
开发者ID:shpp-nbezai,项目名称:cs-b-Assignment2-silhouetteCount,代码行数:32,代码来源:cs-b-Assignment2-silhouetteCount.cpp
示例2: test_image
void test_image() {
GImage *im = new GImage("avatar.gif"); // in images subdirectory
GImage *webIm = new GImage("http://tikiloungetalk.com/wp-content/uploads/2010/11/speedracer-old.jpg");
#ifdef _WIN32
GImage *absPathIm = new GImage("C:/Qt/Qt5.3.2/Tools/QtCreator/share/qtcreator/qmlicons/Qt/16x16/CountBubble.png");
#else
GImage *absPathIm = new GImage("/usr/share/doc/cups/images/smiley.jpg");
#endif
gw->add(im, 10, 10);
int x = 10 + im->getWidth();
gw->add(webIm, x, 10);
x += webIm->getWidth();
gw->add(absPathIm, x, 10);
}