SOL9 Sample: ImageEroding
|
1 Screenshot
2 Source code
/*
* ImageEroding.cpp
* Copyright (c) 2015 Antillia.com TOSHIYUKI ARAI. ALL RIGHTS RESERVED.
*/
//2017/04/12
// See: http://docs.opencv.org/3.2.0/db/df6/tutorial_erosion_dilatation.html
//2017/12/01 Added save, saveAs methods to MainView.
#define _CONSOLE_
#include <sol/ModuleFileName.h>
#include <sol/DropFiles.h>
#include <sol/LabeledTrackBar.h>
#include <sol/LabeledComboBox.h>
#include <sol/ComboBox.h>
#include <sol/FileDialog.h>
#include <sol/opencv/OpenCVApplicationView.h>
#include <sol/opencv/OpenCVImageView.h>
namespace SOL {
class MainView :public OpenCVApplicationView {
private:
private:
////////////////////////////////////////////////////////////////////////////////////////
//Inner classes start.
class OriginalImageView :public OpenCVImageView {
private:
cv::Mat originalImage;
//This is a mandatory method, because in parent class it's declared
//as a pure virtual function.
cv::Mat& getMat()
{
return originalImage;
}
void display()
{
show(originalImage);
}
public:
OriginalImageView(View* parent, const char* name, Args& args)
:OpenCVImageView(parent, name, args)
{
try {
const char* filename = (const char*)args.get(XmNimageFileName);
int imageLoadingFlag = args.get(XmNimageLoadingFlag);
loadImage(filename, imageLoadingFlag);
} catch (SOL::Exception ex) {
caught(ex);
}
}
~OriginalImageView()
{
}
void loadImage(const char* filename, int imageLoadingFlag= CV_LOAD_IMAGE_COLOR)
{
try {
originalImage = readImage(filename, imageLoadingFlag);
refresh();
} catch (Exception& ex) {
caught(ex);
}
}
};
class TransformedImageView :public OpenCVImageView {
private:
cv::Mat originalImage;
cv::Mat transformedImage;
cv::Mat destImage;
cv::Mat& getMat()
{
return transformedImage;
}
void display()
{
show(transformedImage);
}
public:
TransformedImageView(View* parent, const char* name, Args& args)
:OpenCVImageView(parent, name, args)
{
try {
const char* filename = (const char*)args.get(XmNimageFileName);
int imageLoadingFlag = args.get(XmNimageLoadingFlag);
loadImage(filename, imageLoadingFlag);
} catch (SOL::Exception ex) {
caught(ex);
}
}
~TransformedImageView()
{
}
void loadImage(const char* filename, int imageLoadingFlag= CV_LOAD_IMAGE_COLOR)
{
try {
originalImage = readImage(filename, imageLoadingFlag);
transformedImage = originalImage.clone();
refresh();
} catch (Exception& ex) {
caught(ex);
}
}
void transform(cv::MorphShapes morphShape, int ksize)
{
cv::Mat element = getStructuringElement(morphShape,
cv::Size( (ksize/2)*2 +1, (ksize/2)*2 +1),
//cv::Point( ksize, ksize) );
cv::Point( -1, -1) );
cv::erode(originalImage, destImage, element);
if (destImage.empty()) {
transformedImage = originalImage.clone();
refresh();
MessageBox(NULL, "Failed to cv::erode", "Fatal Error", MB_OK);
} else {
transformedImage = destImage;
refresh();
}
}
};
//Inner classes end.
////////////////////////////////////////////////////////////////////////////////////////
StringT<char> imageFile;
StringT<char> savedImageFile;
SmartPtr<OriginalImageView> originalImage;
SmartPtr<TransformedImageView> transformedImage;
int morphShape;
SmartPtr<LabeledComboBox> morphShapeComboBox;
int ksizeMax;
int ksize;
SmartPtr<LabeledTrackBar> ksizeTrackBar;
FileDialog filedlg;
void updateCaption()
{
char caption[MAX_PATH];
sprintf_s(caption, CountOf(caption), "%s - %s",
(const char*)imageFile,
getAppName() );
setText(caption);
}
cv::MorphShapes getMorphShape()
{
cv::MorphShapes type = MORPH_RECT;
if (morphShape == 0) {
type = MORPH_RECT;
} else if (morphShape == 1) {
type = MORPH_CROSS;
} else if (morphShape == 2) {
type = MORPH_ELLIPSE;
}
return type;
}
void selChanged(Action& event)
{
morphShape = morphShapeComboBox -> getCurSel();
transformedImage -> transform(getMorphShape(), ksize);
//setKsizeLabel(ksizeMax, ksize);
}
void trackBarScrolled(Action& action)
{
ksize = ksizeTrackBar->getPosition();
transformedImage -> transform(getMorphShape(), ksize);
}
void resize(int w, int h)
{
if (originalImage && transformedImage && ksizeTrackBar) {
originalImage -> reshape(2, 2, (w-170)/2-1, h-4);
transformedImage -> reshape((w-170)/2+1, 2, (w-170)/2-1, h-4);
morphShapeComboBox -> reshape(w-170 + 4, 2, 160, 50);
ksizeTrackBar -> reshape(w-170 + 4, 70, 160, 60);
}
}
void openFile(const char* filename)
{
try {
originalImage -> loadImage(filename);
transformedImage -> loadImage(filename);
const char* fname = strrchr(filename, '\\');
if (fname) {
fname++;
}
imageFile = fname;
updateCaption();
transformedImage -> transform(getMorphShape(), ksize);
} catch (Exception& ex) {
caught(ex);
}
}
void dropFiles(Action& action)
{
char fileName[MAX_PATH] = { 0 };
DropFiles drop((HDROP)action.getWParam());
//fileName[0] = ZERO;
int num = drop.queryFile(0, fileName, CountOf(fileName));
if(num > 0) {
if (filedlg.isImageFileName(fileName)) {
openFile(fileName);
bringUp();
} else {
bringUp(); //Activate and raise this view
showErrorDialog("Invalid image filename", fileName, MB_OK);
}
}
}
void confirm(Action& action)
{
int rc = MessageBox(NULL, "Are you sure to close this window?", "Confirmation",
MB_OKCANCEL|MB_ICONEXCLAMATION);
if (rc == IDOK) {
exit(action);
}
}
public:
MainView(OpenCVApplication& applet, const char* name, Args& args)
:OpenCVApplicationView(applet, name, args)
{
try {
imageFile = "..\\images\\HelloWorld.png";
int imageLoadingFlag = CV_LOAD_IMAGE_COLOR;
Args ar;
ar.set(XmNimageFileName, imageFile);
ar.set(XmNimageLoadingFlag, imageLoadingFlag);
originalImage = new OriginalImageView(this, "cvwindow1", ar);
originalImage -> addCallback(XmNdropCallback, this,
(Callback)&MainView::dropFiles, NULL);
ar.reset();
ar.set(XmNimageFileName, imageFile);
ar.set(XmNimageLoadingFlag, imageLoadingFlag);
transformedImage = new TransformedImageView(this, "cvwindow2", ar);
ar.reset();
ar.set(XmNstyle, CBS_DROPDOWNLIST);
morphShapeComboBox = new LabeledComboBox(this, "MorphShape", ar);
const char* shapes[] = {
"MORPH_RECT", //0
"MORPH_CROSS", //1
"MORPH_ELLIPSE" //2
};
for (int i = 0; i<CountOf(shapes); i++) {
morphShapeComboBox -> addString(shapes[i]);
}
morphShape = 2;
morphShapeComboBox -> setCurSel(morphShape);
morphShapeComboBox -> addCallback(XmNselChangeCallback, this,
(Callback)&MainView::selChanged, NULL);
ksizeMax = 31;
ksize = 4;
ar.reset();
ar.set(XmNminimum, 0);
ar.set(XmNmaximum, ksizeMax);
ar.set(XmNposition, ksize);
ksizeTrackBar = new LabeledTrackBar(this, "KernelSize", ar);
ksizeTrackBar -> addCallback(XmNtrackBarScrollCallback, this,
(Callback)&MainView::trackBarScrolled, NULL);
addCallback(XmNmenuCallback, IDM_EXIT, this,
(Callback)&MainView::confirm, NULL);
transformedImage -> transform(getMorphShape(), ksize);
updateCaption();
ar.reset();
ar.set(XmNfilter, FileDialog::getImageFilesFilter());
filedlg.create(this, "OpenFile", ar);
} catch (Exception& ex) {
caught(ex);
}
}
~MainView()
{
}
void open(Action& action)
{
Args ar;
char dir[MAX_PATH] = { 0 };
if (restoreFileFolder(dir, CountOf(dir))) {
ar.set(XmNdirectory, dir);
filedlg.setValues(ar);
}
try {
if(filedlg.open()) {
const char* filename = filedlg.getFileName();
saveFileFolder(filename);
openFile(filename);
}
} catch (Exception& ex) {
caught(ex);
}
}
//2017/12/01
void save(Action& action)
{
try {
if (!savedImageFile.isEmpty()) {
//Write transformed image into the filename.
transformedImage->writeImage(savedImageFile);
} else {
saveAs(action);
}
} catch (Exception& ex) {
caught(ex);
}
}
//2017/12/01
void saveAs(Action& action)
{
Args ar;
char dir[MAX_PATH] = { 0 };
if (restoreFileFolder(dir, CountOf(dir))) {
ar.set(XmNdirectory, dir);
filedlg.setValues(ar);
}
try {
if(filedlg.save()) {
const char* filename = filedlg.getFileName();
saveFileFolder(filename);
//Write transformed image into the filename.
transformedImage->writeImage(filename);
savedImageFile = filename;
}
} catch (Exception& ex) {
caught(ex);
}
}
};
}
//
void main(int argc, char** argv)
{
try {
ModuleFileName module(argv[0]);
const char* name = module.getAppName();
OpenCVApplication applet(name, argc, argv);
Args args;
args.set(XmNwidth, 1000);
args.set(XmNheight, 300);
MainView view(applet, name, args);
view.realize();
applet.run();
} catch (SOL::Exception& ex) {
caught(ex);
}
}
Last modified: 2 Dec. 2017
Copyright (c) 2017 Antillia.com ALL RIGHTS RESERVED.