CN104680477A - 一种图像镜像算法 - Google Patents

一种图像镜像算法 Download PDF

Info

Publication number
CN104680477A
CN104680477A CN201510095167.5A CN201510095167A CN104680477A CN 104680477 A CN104680477 A CN 104680477A CN 201510095167 A CN201510095167 A CN 201510095167A CN 104680477 A CN104680477 A CN 104680477A
Authority
CN
China
Prior art keywords
algorithm
cursor
image
dib
doc
Prior art date
Legal status (The legal status is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the status listed.)
Pending
Application number
CN201510095167.5A
Other languages
English (en)
Inventor
胡剑锋
Current Assignee (The listed assignees may be inaccurate. Google has not performed a legal analysis and makes no representation or warranty as to the accuracy of the list.)
Jiangxi University of Technology
Original Assignee
Jiangxi University of Technology
Priority date (The priority date is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the date listed.)
Filing date
Publication date
Application filed by Jiangxi University of Technology filed Critical Jiangxi University of Technology
Priority to CN201510095167.5A priority Critical patent/CN104680477A/zh
Publication of CN104680477A publication Critical patent/CN104680477A/zh
Pending legal-status Critical Current

Links

Landscapes

  • User Interface Of Digital Computer (AREA)

Abstract

本发明公开了一种图像镜像算法,指向DIB的指针中增加LPSTR l p DIB,明确了指向的对象,在调用函数时,简化了算法步骤;增加步骤设置光标状态为等待状态Begin Wait Cursor();能够使得在算法空闲时设定光标的状态,便于重新运行算法;调用Vert Mirror函数镜像图象中增加设置文档修改标记P Doc ->Set Modified Flag(TRUE),这样的设计能够在修改文档时,直接修改,减少了因新文档二重新开始算法的冗杂;增加步骤结束光标等待状态End Wait Cursor ();与算法进行中的光标状态进行匹配,当算法结束时直接结束光标的等待状态,便于进行下面操作;增加返回值BOOL,对于最终结果有清晰明了的结果。

Description

一种图像镜像算法
技术领域
本发明涉及计算机方法领域,特别是涉及一种图像镜像算法。
背景技术
图像处理就是对图像信息进行加工处理,以满足人的视觉心里和实际应用的需要。随着技术的发展,数码相机、数字摄像机、数字电视等的数字化设备不断涌现,从一方面讲,这些是图像处理技术应用的成果,反过来,这些设备的广发应用,也促使图像处理技术不断向前发展,图像数据库和多媒体技术也推动者这些邻域不断向前发展,图像处理技术与理论是计算机应用的依个重要邻域,许多工程应用都涉及到图像处理。图像的几何变换是图像变换的最基本的图像变换方法。
发明内容
本发明目的是利用算法开发工具实现了图文件的镜像变换,实现了基本图像增强的算法。
本发明一种图像镜像算法,其特征在于,其步骤包括:
(1)获取指向文档的指针
void CC image Processing View:: On Geom Trpo  ;
(2)指向DIB的指针
CC image Processing Doc* p Doc = Get Document;
(3)锁定DIB
L p DIB = (LPSTR) :: Global Lock((HGLOBAL) p Doc ->Get HDIB ;
(4)调用 Vert Mirror函数镜像图象
if  ( Vert Mirror (lp DIB)) ;                                                              
P Doc ->Update All Views (NULL);                                                  
else
(6)提示信息
Message Box;
(7)解除锁定
::Global Unlock((HGLOBAL) p Doc ->Get HDIB ())。
  优选的,步骤(2)指向DIB的指针中增加LPSTR  l p DIB。
优选的,步骤(3)后增加步骤设置光标状态为等待状态Begin Wait Cursor();。
优选的,步骤(4)调用 Vert Mirror函数镜像图象中增加设置文档修改标记P Doc ->Set Modified Flag(TRUE)。
优选的,步骤(7)后增加步骤结束光标等待状态End Wait Cursor ();。
优选的,步骤(7)增加返回值BOOL(“镜像成功返回TRUE,否则返回FALSE”)。
有益效果:本发明提供了一种图像镜像算法,指向DIB的指针中增加LPSTR  l p DIB,这样的设计明确了指向的对象,在调用函数时,简化了算法步骤;增加步骤设置光标状态为等待状态Begin Wait Cursor();,这样的设计能够使得在算法空闲时设定光标的状态,便于重新运行算法;调用 Vert Mirror函数镜像图象中增加设置文档修改标记P Doc ->Set Modified Flag(TRUE),这样的设计能够在修改文档时,直接修改,减少了因新文档二重新开始算法的冗杂;增加步骤结束光标等待状态End Wait Cursor ();,与算法进行中的光标状态进行匹配,当算法结束时直接结束光标的等待状态,便于进行下面操作;增加返回值BOOL(“镜像成功返回TRUE,否则返回FALSE”),对于最终结果有清晰明了的结果。
具体实施方式
为使本发明实现的技术手段、创作特征、达成目的与功效易于明白了解,下面结合具体实施方式,进一步阐述本发明。
一种图像镜像算法,其特征在于,其步骤包括:
1)获取指向文档的指针
void CC image Processing View:: On Geom Trpo ()
(2)指向DIB的指针
CC image Processing Doc* p Doc = Get Document ();
LPSTR  l p DIB;
(3)锁定DIB
L p DIB = (LPSTR) :: Global Lock((HGLOBAL) p Doc ->Get HDIB ());
(4)设置光标状态为等待状态
Begin Wait Cursor();
(4)调用 Vert Mirror函数镜像图象
if  ( Vert Mirror (lp DIB)) ;                                                              
{
P Doc ->Update All Views (NULL);
P Doc ->Set Modified Flag(TRUE);
}                                                                                                         
else
(6)提示信息
Message Box ("实现图象镜像失败!");
(7)解除锁定
  ::Global Unlock((HGLOBAL) p Doc ->Get HDIB ());
(8)结束光标等待状态
  End Wait Cursor ();
(9)返回值
  BOOL(“镜像成功返回TRUE,否则返回FALSE”);
    本发明提供了一种图像镜像算法,指向DIB的指针中增加LPSTR  l p DIB,这样的设计明确了指向的对象,在调用函数时,简化了算法步骤;增加步骤设置光标状态为等待状态Begin Wait Cursor();,这样的设计能够使得在算法空闲时设定光标的状态,便于重新运行算法;调用 Vert Mirror函数镜像图象中增加设置文档修改标记P Doc ->Set Modified Flag(TRUE),这样的设计能够在修改文档时,直接修改,减少了因新文档二重新开始算法的冗杂;增加步骤结束光标等待状态End Wait Cursor ();,与算法进行中的光标状态进行匹配,当算法结束时直接结束光标的等待状态,便于进行下面操作;增加返回值BOOL(“镜像成功返回TRUE,否则返回FALSE”),对于最终结果有清晰明了的结果。
   以上所述仅为本发明的实施例,并非因此限制本发明的专利范围,凡是利用本发明说明书内容所作的等效结构或等效流程变换,或直接或间接运用在其他相关的技术领域,均同理包括在本发明的专利保护范围内。

Claims (6)

1.一种图像镜像算法,其特征在于,其步骤包括:
(1)获取指向文档的指针
void CC image Processing View:: On Geom Trpo  ;
(2)指向DIB的指针
CC image Processing Doc* p Doc = Get Document;
(3)锁定DIB
L p DIB = (LPSTR) :: Global Lock((HGLOBAL) p Doc ->Get HDIB ;
(4)调用 Vert Mirror函数镜像图象
if  ( Vert Mirror (lp DIB)) ;
P Doc ->Update All Views (NULL);
else
(6)提示信息
Message Box;
(7)解除锁定
::Global Unlock((HGLOBAL) p Doc ->Get HDIB ())。
2.如权利要求1所述的图像镜像算法,其特征在于,步骤(2)指向DIB的指针中增加LPSTR  l p DIB。
3.如权利要求1所述的图像镜像算法,其特征在于,步骤(3)后增加步骤设置光标状态为等待状态Begin Wait Cursor。
4.如权利要求1所述的图像镜像算法,其特征在于,步骤(4)调用 Vert Mirror函数镜像图象中增加设置文档修改标记P Doc ->Set Modified Flag。
5.如权利要求1所述的图像镜像算法,其特征在于,步骤(7)后增加步骤结束光标等待状态End Wait Cursor。
6.一种权利要求1所述的图像镜像算法,其特征在于,步骤(7)设有返回值BOOL,镜像成功返回TRUE,否则返回FALSE。
CN201510095167.5A 2015-03-04 2015-03-04 一种图像镜像算法 Pending CN104680477A (zh)

Priority Applications (1)

Application Number Priority Date Filing Date Title
CN201510095167.5A CN104680477A (zh) 2015-03-04 2015-03-04 一种图像镜像算法

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
CN201510095167.5A CN104680477A (zh) 2015-03-04 2015-03-04 一种图像镜像算法

Publications (1)

Publication Number Publication Date
CN104680477A true CN104680477A (zh) 2015-06-03

Family

ID=53315477

Family Applications (1)

Application Number Title Priority Date Filing Date
CN201510095167.5A Pending CN104680477A (zh) 2015-03-04 2015-03-04 一种图像镜像算法

Country Status (1)

Country Link
CN (1) CN104680477A (zh)

Citations (2)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
EP1324269A1 (en) * 2000-10-06 2003-07-02 Sony Computer Entertainment Inc. Image processing apparatus, image processing method, record medium, computer program, and semiconductor device
CN103347157A (zh) * 2013-06-25 2013-10-09 杭州士兰微电子股份有限公司 实时输入数字图像镜像存储的方法及装置

Patent Citations (2)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
EP1324269A1 (en) * 2000-10-06 2003-07-02 Sony Computer Entertainment Inc. Image processing apparatus, image processing method, record medium, computer program, and semiconductor device
CN103347157A (zh) * 2013-06-25 2013-10-09 杭州士兰微电子股份有限公司 实时输入数字图像镜像存储的方法及装置

Non-Patent Citations (2)

* Cited by examiner, † Cited by third party
Title
472214762: "8种常用图像处理算法(函数)", 《豆丁网HTTP://WWW.DOCIN.COM/P-109645877.HTML》 *
张重庆巴南: "常用图像处理算法", 《百度文库HTTPS://WENKU.BAIDU.COM/VIEW/4A67BD0FA6C30C2259019E8F.HTML》 *

Similar Documents

Publication Publication Date Title
TWI748175B (zh) 資料的處理方法、裝置及設備
KR102199786B1 (ko) 콘텐트를 기반으로 하는 정보 제공 방법 및 장치
US20140244219A1 (en) Method of creating a pipe route line from a point cloud in three-dimensional modeling software
US20160063672A1 (en) Electronic device and method for generating thumbnail picture
CN104615538A (zh) 一种基于手机界面控件元素的手机应用测试方法
JP2021121960A (ja) 画像注釈方法、装置、電子設備、記憶媒体、及びプログラム
US20220324327A1 (en) Method for controlling terminal, electronic device and storage medium
CN105094774A (zh) 一种终端系统界面的展示方法和装置
US20140380191A1 (en) Method and apparatus for design review collaboration across multiple platforms
CN104216961A (zh) 一种数据处理方法和装置
WO2016004814A1 (zh) 一种业务可视化方法及系统
KR101810019B1 (ko) 애니메이션 데이터 생성 방법, 장치, 및 전자 기기
US20180024976A1 (en) Annotation providing method and device
US10162908B1 (en) Systems and methods for extracting bounding planes of solid models
WO2016183933A1 (zh) 一种图标的排列方法及装置
CN105578043A (zh) 一种相机拍照的构图方法和装置
CN104376038A (zh) 一种基于标签云的位置关联文本信息可视化方法
US20160062601A1 (en) Electronic device with touch screen and method for moving application functional interface
CN103617073A (zh) 一种电力系统图形文件解析显示方法
CN203368496U (zh) 一种动态口令令牌
CN104680477A (zh) 一种图像镜像算法
WO2016201813A1 (zh) 一种基于Android的动态布局方法及系统
CN103617284A (zh) 一种数据字段扩展方法
CN105550650A (zh) 一种指纹安全保护方法与系统
CN109189524A (zh) 一种图像资源的生成方法和装置

Legal Events

Date Code Title Description
C06 Publication
PB01 Publication
C10 Entry into substantive examination
SE01 Entry into force of request for substantive examination
WD01 Invention patent application deemed withdrawn after publication
WD01 Invention patent application deemed withdrawn after publication

Application publication date: 20150603