flt_mass.cpp
上传用户:yatsl7111
上传日期:2007-01-08
资源大小:1433k
文件大小:9k
源码类别:

图形图象

开发平台:

Visual C++

  1. /********************************************************************
  2. flt_mass.cpp - ISee图像浏览器—图像处理模块类flt_mass实现代码
  3. 文件
  4.     版权所有(C) VCHelp-coPathway-ISee workgroup 2000 all member's
  5.     这一程序是自由软件,你可以遵照自由软件基金会出版的GNU 通用许可证
  6. 条款来修改和重新发布这一程序。或者用许可证的第二版,或者(根据你
  7. 的选择)用任何更新的版本。
  8.     发布这一程序的目的是希望它有用,但没有任何担保。甚至没有适合特定
  9. 目地的隐含的担保。更详细的情况请参阅GNU通用许可证。
  10.     你应该已经和程序一起收到一份GNU通用许可证(GPL)的副本。如果还没有,
  11. 写信给:
  12.     The Free Software Foundation, Inc.,  675  Mass Ave,  Cambridge,
  13.     MA02139,  USA
  14. 如果你在使用本软件时有什么问题或建议,用以下地址可以与我们取得联
  15. 系:
  16. http://isee.126.com
  17. http://www.vchelp.net
  18. 或:
  19. iseesoft@china.com
  20. 作者:马翔
  21.    e-mail:hugesoft@yeah.net
  22.    功能实现:对外接口函数
  23. 文件版本:
  24. Build 000123
  25. Date  2000-12-3
  26. ********************************************************************/
  27. // flt_mass.cpp : Defines the initialization routines for the DLL.
  28. //
  29. #include "stdafx.h"
  30. #include "..publicgol_proc.h"
  31. #include "System.h"
  32. #include "flt_mass.h"
  33. #include "AdjustContrast.h"
  34. #include "ContrastDlg.h"
  35. #include "filter.h"
  36. #include "BogusMulticolor.h"
  37. #include "Reverse.h"
  38. #include "EdgeEnhanceDlg.h"
  39. #include "FilterDlg.h"
  40. #ifdef _DEBUG
  41. #define new DEBUG_NEW
  42. #undef THIS_FILE
  43. static char THIS_FILE[] = __FILE__;
  44. #endif
  45. //
  46. // Note!
  47. //
  48. // If this DLL is dynamically linked against the MFC
  49. // DLLs, any functions exported from this DLL which
  50. // call into MFC must have the AFX_MANAGE_STATE macro
  51. // added at the very beginning of the function.
  52. //
  53. // For example:
  54. //
  55. // extern "C" BOOL PASCAL EXPORT ExportedFunction()
  56. // {
  57. // AFX_MANAGE_STATE(AfxGetStaticModuleState());
  58. // // normal function body here
  59. // }
  60. //
  61. // It is very important that this macro appear in each
  62. // function, prior to any calls into MFC.  This means that
  63. // it must appear as the first statement within the 
  64. // function, even before any object variable declarations
  65. // as their constructors may generate calls into the MFC
  66. // DLL.
  67. //
  68. // Please see MFC Technical Notes 33 and 58 for additional
  69. // details.
  70. //
  71. /////////////////////////////////////////////////////////////////////////////
  72. // CFlt_massApp
  73. BEGIN_MESSAGE_MAP(CFlt_massApp, CWinApp)
  74. //{{AFX_MSG_MAP(CFlt_massApp)
  75. // NOTE - the ClassWizard will add and remove mapping macros here.
  76. //    DO NOT EDIT what you see in these blocks of generated code!
  77. //}}AFX_MSG_MAP
  78. END_MESSAGE_MAP()
  79. /////////////////////////////////////////////////////////////////////////////
  80. // CFlt_massApp construction
  81. CFlt_massApp::CFlt_massApp()
  82. {
  83. // TODO: add construction code here,
  84. // Place all significant initialization in InitInstance
  85. }
  86. /////////////////////////////////////////////////////////////////////////////
  87. // The one and only CFlt_massApp object
  88. CFlt_massApp theApp;
  89. LPIMAGEPROCSTR lpProcInfo;
  90. // 接口函数声明 — 第一层,唯一与外界联系的接口
  91. DLLExport int PASCAL AccessMassFilter(LPIMAGEPROCSTR lpInfo);
  92. //DLLExport int PASCAL AccessPropFilter(LPIMAGEPROCSTR lpInfo);
  93. // 调用处理函数 — 第二层函数
  94. int _fnCMD_CONTRAST(LPIMAGEPROCSTR lpInfo);
  95. int _fnCMD_FILTER(LPIMAGEPROCSTR lpInfo);
  96. int _fnCMD_BOGUS(LPIMAGEPROCSTR lpInfo);
  97. int _fnCMD_REVERSE(LPIMAGEPROCSTR lpInfo);
  98. int _fnCMD_DETECTEDGE(LPIMAGEPROCSTR lpInfo);
  99. // 接口函数 — 第一层,唯一与外界联系的接口
  100. DLLExport int PASCAL AccessMassFilter(LPIMAGEPROCSTR lpInfo)
  101. {
  102. AFX_MANAGE_STATE(AfxGetStaticModuleState());
  103. if(lpInfo==NULL)
  104.     return PROCERR_NULLPARAM;
  105. lpProcInfo=lpInfo;
  106. switch(lpInfo->comm)
  107. {
  108.     case PCM_NULL:                        //未操作
  109.        lpInfo->result=PR_NULL;
  110.        return PROCERR_FALSE;
  111. case PCM_FILTER:         // 杂色处理(滤波)
  112. return _fnCMD_FILTER(lpInfo);
  113. case PCM_CONTRAST:         // 明暗,对比度处理
  114. return _fnCMD_CONTRAST(lpInfo);
  115. case PCM_DETECTEDGE: // 边缘探测
  116. return _fnCMD_DETECTEDGE(lpInfo);
  117. case PCM_BOGUS: // 伪彩色处理
  118. return _fnCMD_BOGUS(lpInfo);
  119. case PCM_REVERSE: //反色(色彩颠倒)
  120. return _fnCMD_REVERSE(lpInfo);
  121. }
  122. lpInfo->result=PR_ILLCOMM;
  123. return PROCERR_FALSE;
  124. // normal function body here
  125. }
  126. // 调用处理函数 — 第二层函数
  127. int _fnCMD_CONTRAST(LPIMAGEPROCSTR lpInfo)
  128. {
  129. // 检验入口参数是否符合接口定义
  130. ASSERT(lpInfo->_psbdata != NULL);
  131. ASSERT(lpInfo->sImageInfo.bitperpix == 32);
  132. ASSERT(lpInfo->sImageInfo.height > 0);
  133. ASSERT(lpInfo->sImageInfo.width > 0);
  134. ASSERT(lpInfo->annexdata.siAnnData[0]<2); // full image or region
  135. // Initialize the destine image infomation
  136. lpInfo->dImageInfo.height=lpInfo->sImageInfo.height;
  137. lpInfo->dImageInfo.width=lpInfo->sImageInfo.width;
  138. lpInfo->dImageInfo.bitperpix=lpInfo->sImageInfo.bitperpix;
  139. lpInfo->dImageInfo.byteperline=lpInfo->sImageInfo.byteperline;
  140. lpInfo->dImageInfo.bAlpha=lpInfo->sImageInfo.bAlpha;
  141. // Set Modify flag
  142. lpInfo->modify=1;
  143. CContrastDlg m_dContrastDlg;
  144. int nRetCode=m_dContrastDlg.DoModal ();
  145. if(nRetCode==IDOK)
  146. {
  147. lpInfo->result=PR_SUCCESS;
  148.         return PROCERR_SUCCESS;
  149. }
  150. else
  151. {
  152. lpInfo->result=PR_NULL;
  153.         return PROCERR_FALSE;
  154. }
  155. }
  156. int _fnCMD_FILTER(LPIMAGEPROCSTR lpInfo)
  157. {
  158. // 检验入口参数是否符合接口定义
  159. ASSERT(lpInfo->_psbdata != NULL);
  160. ASSERT(lpInfo->sImageInfo.bitperpix == 32);
  161. ASSERT(lpInfo->sImageInfo.height > 0);
  162. ASSERT(lpInfo->sImageInfo.width > 0);
  163. ASSERT(lpInfo->annexdata.siAnnData[0]<2); // full image or region
  164. // Initialize the destine image infomation
  165. lpInfo->dImageInfo.height=lpInfo->sImageInfo.height;
  166. lpInfo->dImageInfo.width=lpInfo->sImageInfo.width;
  167. lpInfo->dImageInfo.bitperpix=lpInfo->sImageInfo.bitperpix;
  168. lpInfo->dImageInfo.byteperline=lpInfo->sImageInfo.byteperline;
  169. lpInfo->dImageInfo.bAlpha=lpInfo->sImageInfo.bAlpha;
  170. // Set Modify flag
  171. lpInfo->modify=1;
  172. CFilterDlg m_dFilterDlg;
  173. int nRetCode=m_dFilterDlg.DoModal ();
  174. // static int nRetCode=_fnCOM_Filter(lpInfo);
  175. if(nRetCode==PROCERR_SUCCESS)
  176. {
  177. lpInfo->result=PR_SUCCESS;
  178.         return PROCERR_SUCCESS;
  179. }
  180. else
  181. {
  182. lpInfo->result=PR_NULL;
  183.         return PROCERR_FALSE;
  184. }
  185. }
  186. int _fnCMD_BOGUS(LPIMAGEPROCSTR lpInfo)
  187. {
  188. // 检验入口参数是否符合接口定义
  189. ASSERT(lpInfo->_psbdata != NULL);
  190. ASSERT(lpInfo->sImageInfo.bitperpix == 32);
  191. ASSERT(lpInfo->sImageInfo.height > 0);
  192. ASSERT(lpInfo->sImageInfo.width > 0);
  193. ASSERT(lpInfo->annexdata.siAnnData[0]<2); // full image or region
  194. // Initialize the destine image infomation
  195. lpInfo->dImageInfo.height=lpInfo->sImageInfo.height;
  196. lpInfo->dImageInfo.width=lpInfo->sImageInfo.width;
  197. lpInfo->dImageInfo.bitperpix=lpInfo->sImageInfo.bitperpix;
  198. lpInfo->dImageInfo.byteperline=lpInfo->sImageInfo.byteperline;
  199. lpInfo->dImageInfo.bAlpha=lpInfo->sImageInfo.bAlpha;
  200. // Set Modify flag
  201. lpInfo->modify=1;
  202. static int nRetCode=_fnCOM_BogusMulticolor(lpInfo);
  203. if(nRetCode==PROCERR_SUCCESS)
  204. {
  205. lpInfo->result=PR_SUCCESS;
  206.         return PROCERR_SUCCESS;
  207. }
  208. else
  209. {
  210. Del(lpInfo->_pdbdata );
  211. lpInfo->result=PR_NULL;
  212.         return PROCERR_FALSE;
  213. }
  214. }
  215. int _fnCMD_REVERSE(LPIMAGEPROCSTR lpInfo)
  216. {
  217. // 检验入口参数是否符合接口定义
  218. ASSERT(lpInfo->_psbdata != NULL);
  219. ASSERT(lpInfo->sImageInfo.bitperpix == 32);
  220. ASSERT(lpInfo->sImageInfo.height > 0);
  221. ASSERT(lpInfo->sImageInfo.width > 0);
  222. ASSERT(lpInfo->annexdata.siAnnData[0]<2); // full image or region
  223. // Initialize the destine image infomation
  224. lpInfo->dImageInfo.height=lpInfo->sImageInfo.height;
  225. lpInfo->dImageInfo.width=lpInfo->sImageInfo.width;
  226. lpInfo->dImageInfo.bitperpix=lpInfo->sImageInfo.bitperpix;
  227. lpInfo->dImageInfo.byteperline=lpInfo->sImageInfo.byteperline;
  228. lpInfo->dImageInfo.bAlpha=lpInfo->sImageInfo.bAlpha;
  229. // Set Modify flag
  230. lpInfo->modify=1;
  231. static int nRetCode=_fnCOM_Reverse(lpInfo);
  232. if(nRetCode==PROCERR_SUCCESS)
  233. {
  234. lpInfo->result=PR_SUCCESS;
  235.         return PROCERR_SUCCESS;
  236. }
  237. else
  238. {
  239. Del(lpInfo->_pdbdata );
  240. lpInfo->result=PR_NULL;
  241.         return PROCERR_FALSE;
  242. }
  243. }
  244. // 调用处理函数 — 第二层函数
  245. int _fnCMD_DETECTEDGE(LPIMAGEPROCSTR lpInfo)
  246. {
  247. // 检验入口参数是否符合接口定义
  248. ASSERT(lpInfo->_psbdata != NULL);
  249. ASSERT(lpInfo->sImageInfo.bitperpix == 32);
  250. ASSERT(lpInfo->sImageInfo.height > 0);
  251. ASSERT(lpInfo->sImageInfo.width > 0);
  252. ASSERT(lpInfo->annexdata.siAnnData[0]<2); // full image or region
  253. // Initialize the destine image infomation
  254. lpInfo->dImageInfo.height=lpInfo->sImageInfo.height;
  255. lpInfo->dImageInfo.width=lpInfo->sImageInfo.width;
  256. lpInfo->dImageInfo.bitperpix=lpInfo->sImageInfo.bitperpix;
  257. lpInfo->dImageInfo.byteperline=lpInfo->sImageInfo.byteperline;
  258. lpInfo->dImageInfo.bAlpha=lpInfo->sImageInfo.bAlpha;
  259. // Set Modify flag
  260. lpInfo->modify=1;
  261. CEdgeEnhanceDlg m_dEdgeEnhanceDlg;
  262. int nRetCode=m_dEdgeEnhanceDlg.DoModal ();
  263. if(nRetCode==IDOK)
  264. {
  265. lpInfo->result=PR_SUCCESS;
  266.         return PROCERR_SUCCESS;
  267. }
  268. else
  269. {
  270. lpInfo->result=PR_NULL;
  271.         return PROCERR_FALSE;
  272. }
  273. }