📄 imagestudioview.cpp
字号:
// ImageStudioView.cpp : implementation of the CImageStudioView class
//
#include "stdafx.h"
#include "ImageStudio.h"
#include "ImageStudioDoc.h"
#include "ImageStudioView.h"
#include "DlgLinerPara.h"
#include "DlgSharp.h"
#include "DIBAPI.h"
#include "ImageTrans.h"
#include "Complex.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CImageStudioView
IMPLEMENT_DYNCREATE(CImageStudioView, CView)
BEGIN_MESSAGE_MAP(CImageStudioView, CView)
//{{AFX_MSG_MAP(CImageStudioView)
ON_WM_ERASEBKGND()
ON_COMMAND(ID_LINERTRANS, OnLinertrans)
ON_COMMAND(ID_FOURIER, OnFourier)
ON_COMMAND(ID_GRADSHARP, OnGradsharp)
ON_COMMAND(ID_EQUA, OnEqua)
//}}AFX_MSG_MAP
// Standard printing commands
ON_COMMAND(ID_FILE_PRINT, CView::OnFilePrint)
ON_COMMAND(ID_FILE_PRINT_DIRECT, CView::OnFilePrint)
ON_COMMAND(ID_FILE_PRINT_PREVIEW, CView::OnFilePrintPreview)
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CImageStudioView construction/destruction
CImageStudioView::CImageStudioView()
{
// TODO: add construction code here
}
CImageStudioView::~CImageStudioView()
{
}
BOOL CImageStudioView::PreCreateWindow(CREATESTRUCT& cs)
{
// TODO: Modify the Window class or styles here by modifying
// the CREATESTRUCT cs
cs.style |= WS_CLIPSIBLINGS | WS_CLIPCHILDREN;
cs.lpszClass = AfxRegisterWndClass(CS_OWNDC | CS_HREDRAW | CS_VREDRAW);
return CView::PreCreateWindow(cs);
}
/////////////////////////////////////////////////////////////////////////////
// CImageStudioView drawing
void CImageStudioView::OnDraw(CDC* pDC)
{
// 显示等待光标
BeginWaitCursor();
// 获取文档
CImageStudioDoc* pDoc = GetDocument();
ASSERT_VALID(pDoc);
// 获取DIB
HDIB hDIB = pDoc->GetHDIB();
// 判断DIB是否为空
if (hDIB != NULL)
{
LPSTR lpDIB = (LPSTR) ::GlobalLock((HGLOBAL) hDIB);
// 获取DIB宽度
int cxDIB = (int) ::DIBWidth(lpDIB);
// 获取DIB高度
int cyDIB = (int) ::DIBHeight(lpDIB);
::GlobalUnlock((HGLOBAL) hDIB);
CRect rcDIB;
rcDIB.top = rcDIB.left = 0;
rcDIB.right = cxDIB;
rcDIB.bottom = cyDIB;
CRect rcDest;
// 判断是否是打印
if (pDC->IsPrinting())
{
// 是打印,计算输出图像的位置和大小,以便符合页面
// 获取打印页面的水平宽度(象素)
int cxPage = pDC->GetDeviceCaps(HORZRES);
// 获取打印页面的垂直高度(象素)
int cyPage = pDC->GetDeviceCaps(VERTRES);
// 获取打印机每英寸象素数
int cxInch = pDC->GetDeviceCaps(LOGPIXELSX);
int cyInch = pDC->GetDeviceCaps(LOGPIXELSY);
// 计算打印图像大小(缩放,根据页面宽度调整图像大小)
rcDest.top = rcDest.left = 0;
rcDest.bottom = (int)(((double)cyDIB * cxPage * cyInch)
/ ((double)cxDIB * cxInch));
rcDest.right = cxPage;
// 计算打印图像位置(垂直居中)
int temp = cyPage - (rcDest.bottom - rcDest.top);
rcDest.bottom += temp/2;
rcDest.top += temp/2;
}
else
// 非打印
{
// 不必缩放图像
rcDest = rcDIB;
}
// 输出DIB
::PaintDIB(pDC->m_hDC, &rcDest, pDoc->GetHDIB(),
&rcDIB, pDoc->GetDocPalette());
}
// 恢复正常光标
EndWaitCursor();
}
/////////////////////////////////////////////////////////////////////////////
// CImageStudioView printing
BOOL CImageStudioView::OnPreparePrinting(CPrintInfo* pInfo)
{
// default preparation
return DoPreparePrinting(pInfo);
}
void CImageStudioView::OnBeginPrinting(CDC* /*pDC*/, CPrintInfo* /*pInfo*/)
{
// TODO: add extra initialization before printing
}
void CImageStudioView::OnEndPrinting(CDC* /*pDC*/, CPrintInfo* /*pInfo*/)
{
// TODO: add cleanup after printing
}
/////////////////////////////////////////////////////////////////////////////
// CImageStudioView diagnostics
#ifdef _DEBUG
void CImageStudioView::AssertValid() const
{
CView::AssertValid();
}
void CImageStudioView::Dump(CDumpContext& dc) const
{
CView::Dump(dc);
}
CImageStudioDoc* CImageStudioView::GetDocument() // non-debug version is inline
{
ASSERT(m_pDocument->IsKindOf(RUNTIME_CLASS(CImageStudioDoc)));
return (CImageStudioDoc*)m_pDocument;
}
#endif //_DEBUG
/////////////////////////////////////////////////////////////////////////////
// CImageStudioView message handlers
/*
int CImageStudioView::OnCreate(LPCREATESTRUCT lpCreateStruct)
{
if (CView::OnCreate(lpCreateStruct) == -1)
return -1;
// TODO: Add your specialized creation code here
m_pDC = new CClientDC( this );
if(SetWindowPixelFormat(m_pDC->GetSafeHdc())==FALSE)
return 0;
if(CreateViewGLContext(m_pDC->GetSafeHdc())==FALSE)
return 0;
if(wglMakeCurrent( m_pDC->GetSafeHdc(),m_hRC)==FALSE)
return FALSE;
// Default mode
glPolygonMode(GL_FRONT,GL_LINE);
glPolygonMode(GL_BACK,GL_LINE);
glShadeModel(GL_FLAT);
glEnable(GL_NORMALIZE);
// Lights, material properties
GLfloat ambientProperties[] = {0.7f, 0.7f, 0.7f, 1.0f};
GLfloat diffuseProperties[] = {0.8f, 0.8f, 0.8f, 1.0f};
GLfloat specularProperties[] = {1.0f, 1.0f, 1.0f, 1.0f};
glClearDepth( 1.0 );
glLightfv( GL_LIGHT0, GL_AMBIENT, ambientProperties);
glLightfv( GL_LIGHT0, GL_DIFFUSE, diffuseProperties);
glLightfv( GL_LIGHT0, GL_SPECULAR, specularProperties);
glLightModelf(GL_LIGHT_MODEL_TWO_SIDE, 1.0);
// Default : lighting
glEnable(GL_LIGHT0);
glEnable(GL_LIGHTING);
if( !::wglMakeCurrent( NULL, NULL ) )
MessageBox( "ERROR", "Init()" );
return 0;
}
void CImageStudioView::OnDestroy()
{
CView::OnDestroy();
// TODO: Add your message handler code here
if(wglGetCurrentContext() != NULL)
wglMakeCurrent(NULL,NULL);
if(m_hRC)
{
wglDeleteContext( m_hRC );
m_hRC = NULL;
}
if( m_pDC )
{
delete m_pDC;
m_pDC = NULL;
}
}*/
BOOL CImageStudioView::OnEraseBkgnd(CDC* pDC)
{
CImageStudioDoc* pDoc = GetDocument();
// 创建一个Brush
CBrush brush(pDoc->m_refColorBKG);
// 保存以前的Brush
CBrush* pOldBrush = pDC->SelectObject(&brush);
// 获取重绘区域
CRect rectClip;
pDC->GetClipBox(&rectClip);
// 重绘
pDC->PatBlt(rectClip.left, rectClip.top, rectClip.Width(), rectClip.Height(), PATCOPY);
// 恢复以前的Brush
pDC->SelectObject(pOldBrush);
// 返回
return TRUE;
}
/*
void CImageStudioView::OnSize(UINT nType, int cx, int cy)
{
CView::OnSize(nType, cx, cy);
// TODO: Add your message handler code here
if( 0>=cy )
return;
if( !::wglMakeCurrent( m_pDC->GetSafeHdc(), m_hRC ) )
MessageBox( "ERROR", "OnSize" );
// Set OpenGL perspective, viewport and mode
CSize size(cx,cy);
double aspect;
aspect = (cy == 0) ? (double)size.cx : (double)size.cx/(double)size.cy;
glViewport(0,0,size.cx,size.cy);
glMatrixMode(GL_PROJECTION);
glLoadIdentity();
gluPerspective(45,aspect,1,15.0);
glMatrixMode(GL_MODELVIEW);
glLoadIdentity();
glDrawBuffer(GL_BACK);
glEnable(GL_DEPTH_TEST);
if( !::wglMakeCurrent( NULL, NULL ) )
MessageBox( "ERROR", "OnSize");
}
BOOL CImageStudioView::CreateViewGLContext(HDC hDC)
{
m_hRC= wglCreateContext(hDC);
if(m_hRC==NULL)
return FALSE;
return TRUE;
}
BOOL CImageStudioView::SetWindowPixelFormat(HDC hDC)
{
PIXELFORMATDESCRIPTOR pixelDesc;
pixelDesc.nSize = sizeof(PIXELFORMATDESCRIPTOR);
pixelDesc.nVersion = 1;
pixelDesc.dwFlags = PFD_DRAW_TO_WINDOW | PFD_SUPPORT_OPENGL |
PFD_DOUBLEBUFFER | PFD_STEREO_DONTCARE;
pixelDesc.iPixelType = PFD_TYPE_RGBA;
pixelDesc.cColorBits = 32;
pixelDesc.cRedBits = 8;
pixelDesc.cRedShift = 16;
pixelDesc.cGreenBits = 8;
pixelDesc.cGreenShift = 8;
pixelDesc.cBlueBits = 8;
pixelDesc.cBlueShift = 0;
pixelDesc.cAlphaBits = 0;
pixelDesc.cAlphaShift = 0;
pixelDesc.cAccumBits = 64;
pixelDesc.cAccumRedBits = 16;
pixelDesc.cAccumGreenBits = 16;
pixelDesc.cAccumBlueBits = 16;
pixelDesc.cAccumAlphaBits = 0;
pixelDesc.cDepthBits = 32;
pixelDesc.cStencilBits = 8;
pixelDesc.cAuxBuffers = 0;
pixelDesc.iLayerType = PFD_MAIN_PLANE;
pixelDesc.bReserved = 0;
pixelDesc.dwLayerMask = 0;
pixelDesc.dwVisibleMask = 0;
pixelDesc.dwDamageMask = 0;
int GLPixelIndex = ChoosePixelFormat(hDC,&pixelDesc);
if( GLPixelIndex == 0) // Choose default
{
GLPixelIndex = 1;
if(DescribePixelFormat(hDC,GLPixelIndex,
sizeof(PIXELFORMATDESCRIPTOR),&pixelDesc)==0)
return FALSE;
}
if(!SetPixelFormat(hDC,GLPixelIndex,&pixelDesc))
return FALSE;
return TRUE;
}
void CImageStudioView::RenderScene(CImageStudioDoc* pDoc)
{
int Width, Height;
BYTE *pPixelsImage;
pPixelsImage= pDoc->PixelsImage;
Width= pDoc->Image.Width;
Height= pDoc->Image.Height;
glDrawPixels(Width, Height, GL_RGB,GL_UNSIGNED_BYTE, pPixelsImage);
}*/
void CImageStudioView::OnLinertrans()
{
// TODO: Add your command handler code here
// 获取文档
CImageStudioDoc* pDoc = GetDocument();
// 指向DIB的指针
LPSTR lpDIB;
// 指向DIB象素指针
LPSTR lpDIBBits;
// 创建对话框
CDlgLinerPara dlgPara;
// 线性变换的斜率
FLOAT fA;
// 线性变换的截距
FLOAT fB;
// 锁定DIB
lpDIB = (LPSTR) ::GlobalLock((HGLOBAL) pDoc->GetHDIB());
// 找到DIB图像象素起始位置
lpDIBBits = ::FindDIBBits(lpDIB);
// 判断是否是8-bpp位图(这里为了方便,只处理8-bpp位图的线性变换,其它的可以类推)
if (::DIBNumColors(lpDIB) != 256)
{
// 提示用户
MessageBox("目前只支持256色位图的线性变换!", "系统提示" , MB_ICONINFORMATION | MB_OK);
// 解除锁定
// ::GlobalUnlock((HGLOBAL) pDoc->GetHDIB());
// 返回
return;
}
// 初始化变量值
dlgPara.m_fA = 2.0;
dlgPara.m_fB = -128.0;
// 显示对话框,提示用户设定平移量
if (dlgPara.DoModal() != IDOK)
{
// 返回
return;
}
// 获取用户设定的平移量
fA = dlgPara.m_fA;
fB = dlgPara.m_fB;
// 删除对话框
delete dlgPara;
// 更改光标形状
BeginWaitCursor();
// 调用LinerTrans()函数进行线性变换
LinerTrans(lpDIBBits, ::DIBWidth(lpDIB), ::DIBHeight(lpDIB), fA, fB);
// 设置脏标记
pDoc->SetModifiedFlag(TRUE);
// 更新视图
pDoc->UpdateAllViews(NULL);
// 解除锁定
::GlobalUnlock((HGLOBAL) pDoc->GetHDIB());
// 恢复光标
EndWaitCursor();
}
void CImageStudioView::OnFourier()
{
// TODO: Add your command handler code here
// 获取文档
CImageStudioDoc* pDoc = GetDocument();
// 指向DIB的指针
LPSTR lpDIB;
// 指向DIB象素指针
LPSTR lpDIBBits;
// 锁定DIB
lpDIB = (LPSTR) ::GlobalLock((HGLOBAL) pDoc->GetHDIB());
// 找到DIB图像象素起始位置
lpDIBBits = ::FindDIBBits(lpDIB);
// 判断是否是8-bpp位图(这里为了方便,只处理8-bpp位图的付立叶变换,其它的可以类推)
if (::DIBNumColors(lpDIB) != 256)
{
// 提示用户
MessageBox("目前只支持256色位图的付立叶变换!", "系统提示" ,
MB_ICONINFORMATION | MB_OK);
// 解除锁定
::GlobalUnlock((HGLOBAL) pDoc->GetHDIB());
// 返回
return;
}
// 更改光标形状
BeginWaitCursor();
// 调用Fourier()函数进行付立叶变换
if (::Fourier(lpDIBBits, ::DIBWidth(lpDIB), ::DIBHeight(lpDIB)))
{
// 设置脏标记
pDoc->SetModifiedFlag(TRUE);
// 更新视图
pDoc->UpdateAllViews(NULL);
}
else
{
// 提示用户
MessageBox("分配内存失败!", "系统提示" , MB_ICONINFORMATION | MB_OK);
}
// 解除锁定
::GlobalUnlock((HGLOBAL) pDoc->GetHDIB());
// 恢复光标
EndWaitCursor();
}
void CImageStudioView::OnGradsharp()
{
// TODO: Add your command handler code here
// 梯度锐化
// 获取文档
CImageStudioDoc* pDoc = GetDocument();
// 指向DIB的指针
LPSTR lpDIB;
// 指向DIB象素指针
LPSTR lpDIBBits;
// 锁定DIB
lpDIB = (LPSTR) ::GlobalLock((HGLOBAL) pDoc->GetHDIB());
// 找到DIB图像象素起始位置
lpDIBBits = ::FindDIBBits(lpDIB);
// 判断是否是8-bpp位图(这里为了方便,只处理8-bpp位图的梯度锐化,其它的可以类推)
if (::DIBNumColors(lpDIB) != 256)
{
// 提示用户
MessageBox("目前只支持256色位图的梯度锐化!", "系统提示" ,
MB_ICONINFORMATION | MB_OK);
// 解除锁定
::GlobalUnlock((HGLOBAL) pDoc->GetHDIB());
// 返回
return;
}
// 阈值
BYTE bThre;
// 创建对话框
CDlgSharp dlgPara;
// 初始化变量值
dlgPara.m_bSharp = 10;
// 提示用户输入阈值
if (dlgPara.DoModal() != IDOK)
{
// 返回
return;
}
// 获取用户的设定
bThre = dlgPara.m_bSharp;
// 删除对话框
delete dlgPara;
// 更改光标形状
BeginWaitCursor();
// 调用GradSharp()函数进行梯度板锐化
if (::GradSharp(lpDIBBits, ::DIBWidth(lpDIB), ::DIBHeight(lpDIB), bThre))
{
// 设置脏标记
pDoc->SetModifiedFlag(TRUE);
// 更新视图
pDoc->UpdateAllViews(NULL);
}
else
{
// 提示用户
MessageBox("分配内存失败!", "系统提示" , MB_ICONINFORMATION | MB_OK);
}
// 解除锁定
::GlobalUnlock((HGLOBAL) pDoc->GetHDIB());
// 恢复光标
EndWaitCursor();
}
void CImageStudioView::OnEqua()
{
// TODO: Add your command handler code here
// 灰度均衡
// 获取文档
CImageStudioDoc* pDoc = GetDocument();
// 指向DIB的指针
LPSTR lpDIB;
// 指向DIB象素指针
LPSTR lpDIBBits;
// 锁定DIB
lpDIB = (LPSTR) ::GlobalLock((HGLOBAL) pDoc->GetHDIB());
// 找到DIB图像象素起始位置
lpDIBBits = ::FindDIBBits(lpDIB);
// 判断是否是8-bpp位图(这里为了方便,只处理8-bpp位图的直方图均衡,其它的可以类推)
if (::DIBNumColors(lpDIB) != 256)
{
// 提示用户
MessageBox("目前只支持256色位图的直方图均衡!", "系统提示" ,
MB_ICONINFORMATION | MB_OK);
// 解除锁定
::GlobalUnlock((HGLOBAL) pDoc->GetHDIB());
// 返回
return;
}
// 更改光标形状
BeginWaitCursor();
// 调用InteEqualize()函数进行直方图均衡
InteEqualize(lpDIBBits, ::DIBWidth(lpDIB), ::DIBHeight(lpDIB));
// 设置脏标记
pDoc->SetModifiedFlag(TRUE);
// 更新视图
pDoc->UpdateAllViews(NULL);
// 解除锁定
::GlobalUnlock((HGLOBAL) pDoc->GetHDIB());
// 恢复光标
EndWaitCursor();
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -