ruby-iup 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (323) hide show
  1. data/Rakefile +97 -0
  2. data/doc/README +10 -0
  3. data/doc/build_install.txt +77 -0
  4. data/examples/README +16 -0
  5. data/examples/ctrl/cbox.rb +221 -0
  6. data/examples/ctrl/checkboard.rb +33 -0
  7. data/examples/ctrl/degrade.rb +73 -0
  8. data/examples/ctrl/example1.rb +53 -0
  9. data/examples/ctrl/example2.rb +39 -0
  10. data/examples/ctrl/iupcolorbar.rb +95 -0
  11. data/examples/ctrl/iupcolorbrowser.rb +45 -0
  12. data/examples/ctrl/iupdial.rb +117 -0
  13. data/examples/ctrl/iupgauge.rb +242 -0
  14. data/examples/ctrl/iupgetcolor.rb +8 -0
  15. data/examples/ctrl/iupgetparam.rb +62 -0
  16. data/examples/ctrl/iupglcanvas.rb +172 -0
  17. data/examples/ctrl/iupmask.rb +15 -0
  18. data/examples/ctrl/iupmatrix.rb +39 -0
  19. data/examples/ctrl/iupplot2.rb +603 -0
  20. data/examples/ctrl/iuptabs.rb +22 -0
  21. data/examples/ctrl/iuptree.rb +190 -0
  22. data/examples/ctrl/iupval.rb +71 -0
  23. data/examples/ctrl/numbering.rb +46 -0
  24. data/examples/ctrl/sample.rb +166 -0
  25. data/examples/dlg/iupalarm.rb +14 -0
  26. data/examples/dlg/iupfiledlg.rb +19 -0
  27. data/examples/dlg/iupgetfile.rb +19 -0
  28. data/examples/dlg/iuplistdialog.rb +26 -0
  29. data/examples/dlg/iupmessage.rb +5 -0
  30. data/examples/dlg/iupscanf.rb +17 -0
  31. data/examples/elem/iupbutton.rb +197 -0
  32. data/examples/elem/iupcanvas.rb +27 -0
  33. data/examples/elem/iupcanvas2.rb +113 -0
  34. data/examples/elem/iupcanvas3.rb +62 -0
  35. data/examples/elem/iupdialog.rb +71 -0
  36. data/examples/elem/iupdialog2.rb +25 -0
  37. data/examples/elem/iupfill.rb +51 -0
  38. data/examples/elem/iupframe.rb +25 -0
  39. data/examples/elem/iuphbox.rb +68 -0
  40. data/examples/elem/iupimage.rb +113 -0
  41. data/examples/elem/iupitem.rb +60 -0
  42. data/examples/elem/iuplabel.rb +57 -0
  43. data/examples/elem/iuplist.rb +41 -0
  44. data/examples/elem/iuplist2.rb +125 -0
  45. data/examples/elem/iupmenu.rb +32 -0
  46. data/examples/elem/iupmultiline.rb +24 -0
  47. data/examples/elem/iupmultiline2.rb +156 -0
  48. data/examples/elem/iupradio.rb +32 -0
  49. data/examples/elem/iupseparator.rb +81 -0
  50. data/examples/elem/iupsubmenu.rb +85 -0
  51. data/examples/elem/iuptext.rb +61 -0
  52. data/examples/elem/iuptimer.rb +36 -0
  53. data/examples/elem/iuptoggle.rb +110 -0
  54. data/examples/elem/iupvbox.rb +87 -0
  55. data/examples/elem/iupzbox.rb +60 -0
  56. data/examples/elem/mdisample.rb +376 -0
  57. data/examples/elem/progressbar.rb +294 -0
  58. data/examples/elem/scrollbar.rb +66 -0
  59. data/examples/elem/tray.rb +90 -0
  60. data/examples/func/iupgetattribute.rb +32 -0
  61. data/examples/func/iupidle.rb +48 -0
  62. data/ext/extconf.rb +27 -0
  63. data/ext/iup-linux/include/cd.h +494 -0
  64. data/ext/iup-linux/include/cd_canvas.hpp +358 -0
  65. data/ext/iup-linux/include/cd_old.h +158 -0
  66. data/ext/iup-linux/include/cd_private.h +362 -0
  67. data/ext/iup-linux/include/cdcgm.h +34 -0
  68. data/ext/iup-linux/include/cdclipbd.h +22 -0
  69. data/ext/iup-linux/include/cddbuf.h +23 -0
  70. data/ext/iup-linux/include/cddebug.h +24 -0
  71. data/ext/iup-linux/include/cddgn.h +23 -0
  72. data/ext/iup-linux/include/cddxf.h +22 -0
  73. data/ext/iup-linux/include/cdemf.h +22 -0
  74. data/ext/iup-linux/include/cdgdiplus.h +29 -0
  75. data/ext/iup-linux/include/cdimage.h +23 -0
  76. data/ext/iup-linux/include/cdirgb.h +30 -0
  77. data/ext/iup-linux/include/cdiup.h +22 -0
  78. data/ext/iup-linux/include/cdlua.h +39 -0
  79. data/ext/iup-linux/include/cdlua3_private.h +120 -0
  80. data/ext/iup-linux/include/cdlua5_private.h +141 -0
  81. data/ext/iup-linux/include/cdluaim.h +24 -0
  82. data/ext/iup-linux/include/cdluaiup.h +27 -0
  83. data/ext/iup-linux/include/cdluapdf.h +27 -0
  84. data/ext/iup-linux/include/cdmf.h +24 -0
  85. data/ext/iup-linux/include/cdmf_private.h +32 -0
  86. data/ext/iup-linux/include/cdnative.h +26 -0
  87. data/ext/iup-linux/include/cdpdf.h +38 -0
  88. data/ext/iup-linux/include/cdpicture.h +22 -0
  89. data/ext/iup-linux/include/cdprint.h +23 -0
  90. data/ext/iup-linux/include/cdps.h +37 -0
  91. data/ext/iup-linux/include/cdwmf.h +22 -0
  92. data/ext/iup-linux/include/im.h +282 -0
  93. data/ext/iup-linux/include/im_attrib.h +116 -0
  94. data/ext/iup-linux/include/im_attrib_flat.h +39 -0
  95. data/ext/iup-linux/include/im_binfile.h +214 -0
  96. data/ext/iup-linux/include/im_capture.h +365 -0
  97. data/ext/iup-linux/include/im_color.h +465 -0
  98. data/ext/iup-linux/include/im_colorhsi.h +61 -0
  99. data/ext/iup-linux/include/im_complex.h +160 -0
  100. data/ext/iup-linux/include/im_convert.h +127 -0
  101. data/ext/iup-linux/include/im_counter.h +69 -0
  102. data/ext/iup-linux/include/im_dib.h +195 -0
  103. data/ext/iup-linux/include/im_file.h +111 -0
  104. data/ext/iup-linux/include/im_format.h +79 -0
  105. data/ext/iup-linux/include/im_format_all.h +576 -0
  106. data/ext/iup-linux/include/im_format_avi.h +87 -0
  107. data/ext/iup-linux/include/im_format_ecw.h +93 -0
  108. data/ext/iup-linux/include/im_format_jp2.h +78 -0
  109. data/ext/iup-linux/include/im_format_raw.h +64 -0
  110. data/ext/iup-linux/include/im_format_wmv.h +100 -0
  111. data/ext/iup-linux/include/im_image.h +403 -0
  112. data/ext/iup-linux/include/im_kernel.h +315 -0
  113. data/ext/iup-linux/include/im_lib.h +191 -0
  114. data/ext/iup-linux/include/im_math.h +368 -0
  115. data/ext/iup-linux/include/im_math_op.h +219 -0
  116. data/ext/iup-linux/include/im_palette.h +172 -0
  117. data/ext/iup-linux/include/im_plus.h +73 -0
  118. data/ext/iup-linux/include/im_process.h +35 -0
  119. data/ext/iup-linux/include/im_process_ana.h +221 -0
  120. data/ext/iup-linux/include/im_process_glo.h +170 -0
  121. data/ext/iup-linux/include/im_process_loc.h +577 -0
  122. data/ext/iup-linux/include/im_process_pon.h +712 -0
  123. data/ext/iup-linux/include/im_raw.h +34 -0
  124. data/ext/iup-linux/include/im_util.h +277 -0
  125. data/ext/iup-linux/include/imlua.h +83 -0
  126. data/ext/iup-linux/include/iup.h +255 -0
  127. data/ext/iup-linux/include/iup_pplot.h +40 -0
  128. data/ext/iup-linux/include/iupcb.h +25 -0
  129. data/ext/iup-linux/include/iupcbox.h +23 -0
  130. data/ext/iup-linux/include/iupcbs.h +42 -0
  131. data/ext/iup-linux/include/iupcells.h +130 -0
  132. data/ext/iup-linux/include/iupcolorbar.h +126 -0
  133. data/ext/iup-linux/include/iupcompat.h +62 -0
  134. data/ext/iup-linux/include/iupcontrols.h +40 -0
  135. data/ext/iup-linux/include/iupcpi.h +76 -0
  136. data/ext/iup-linux/include/iupdef.h +520 -0
  137. data/ext/iup-linux/include/iupdial.h +64 -0
  138. data/ext/iup-linux/include/iupgauge.h +57 -0
  139. data/ext/iup-linux/include/iupgc.h +20 -0
  140. data/ext/iup-linux/include/iupgetparam.h +27 -0
  141. data/ext/iup-linux/include/iupgl.h +101 -0
  142. data/ext/iup-linux/include/iupim.h +21 -0
  143. data/ext/iup-linux/include/iupkey.h +290 -0
  144. data/ext/iup-linux/include/iuplua.h +41 -0
  145. data/ext/iup-linux/include/iuplua_pplot.h +26 -0
  146. data/ext/iup-linux/include/iupluacontrols.h +27 -0
  147. data/ext/iup-linux/include/iupluagl.h +26 -0
  148. data/ext/iup-linux/include/iupluaim.h +26 -0
  149. data/ext/iup-linux/include/iupluaole.h +26 -0
  150. data/ext/iup-linux/include/iupmask.h +52 -0
  151. data/ext/iup-linux/include/iupmatrix.h +69 -0
  152. data/ext/iup-linux/include/iupole.h +24 -0
  153. data/ext/iup-linux/include/iupsbox.h +20 -0
  154. data/ext/iup-linux/include/iupspeech.h +23 -0
  155. data/ext/iup-linux/include/iupspin.h +21 -0
  156. data/ext/iup-linux/include/iuptabs.h +79 -0
  157. data/ext/iup-linux/include/iuptree.h +93 -0
  158. data/ext/iup-linux/include/iupval.h +46 -0
  159. data/ext/iup-linux/include/lauxlib.h +174 -0
  160. data/ext/iup-linux/include/lua.h +388 -0
  161. data/ext/iup-linux/include/lua.hpp +9 -0
  162. data/ext/iup-linux/include/luaconf.h +763 -0
  163. data/ext/iup-linux/include/lualib.h +53 -0
  164. data/ext/iup-linux/include/old_im.h +59 -0
  165. data/ext/iup-linux/include/wd.h +78 -0
  166. data/ext/iup-linux/include/wd_old.h +85 -0
  167. data/ext/iup-linux/libcd.so +0 -0
  168. data/ext/iup-linux/libcdcontextplus.so +0 -0
  169. data/ext/iup-linux/libcdluacontextplus51.so +0 -0
  170. data/ext/iup-linux/libcdpdf.so +0 -0
  171. data/ext/iup-linux/libfreetype.so +0 -0
  172. data/ext/iup-linux/libim.so +0 -0
  173. data/ext/iup-linux/libim_fftw.so +0 -0
  174. data/ext/iup-linux/libim_jp2.so +0 -0
  175. data/ext/iup-linux/libim_process.so +0 -0
  176. data/ext/iup-linux/libiup.so +0 -0
  177. data/ext/iup-linux/libiup_pplot.so +0 -0
  178. data/ext/iup-linux/libiupcd.so +0 -0
  179. data/ext/iup-linux/libiupcontrols.so +0 -0
  180. data/ext/iup-linux/libiupgl.so +0 -0
  181. data/ext/iup-linux/libiupim.so +0 -0
  182. data/ext/iup-linux/libiupimglib.so +0 -0
  183. data/ext/iup-linux/libpdflib.so +0 -0
  184. data/ext/iup-win32/cd.dll +0 -0
  185. data/ext/iup-win32/cd.lib +0 -0
  186. data/ext/iup-win32/cdcontextplus.dll +0 -0
  187. data/ext/iup-win32/cdcontextplus.lib +0 -0
  188. data/ext/iup-win32/cdlua51.lib +0 -0
  189. data/ext/iup-win32/cdluacontextplus51.lib +0 -0
  190. data/ext/iup-win32/cdluaim51.lib +0 -0
  191. data/ext/iup-win32/cdluapdf51.lib +0 -0
  192. data/ext/iup-win32/cdpdf.dll +0 -0
  193. data/ext/iup-win32/cdpdf.lib +0 -0
  194. data/ext/iup-win32/freetype6.dll +0 -0
  195. data/ext/iup-win32/freetype6.lib +0 -0
  196. data/ext/iup-win32/im.dll +0 -0
  197. data/ext/iup-win32/im_avi.dll +0 -0
  198. data/ext/iup-win32/im_capture.dll +0 -0
  199. data/ext/iup-win32/im_ecw.dll +0 -0
  200. data/ext/iup-win32/im_fftw.dll +0 -0
  201. data/ext/iup-win32/im_jp2.dll +0 -0
  202. data/ext/iup-win32/im_process.dll +0 -0
  203. data/ext/iup-win32/im_wmv.dll +0 -0
  204. data/ext/iup-win32/include/cd.h +494 -0
  205. data/ext/iup-win32/include/cd_canvas.hpp +358 -0
  206. data/ext/iup-win32/include/cd_old.h +158 -0
  207. data/ext/iup-win32/include/cd_private.h +362 -0
  208. data/ext/iup-win32/include/cdcgm.h +34 -0
  209. data/ext/iup-win32/include/cdclipbd.h +22 -0
  210. data/ext/iup-win32/include/cddbuf.h +23 -0
  211. data/ext/iup-win32/include/cddebug.h +24 -0
  212. data/ext/iup-win32/include/cddgn.h +23 -0
  213. data/ext/iup-win32/include/cddxf.h +22 -0
  214. data/ext/iup-win32/include/cdemf.h +22 -0
  215. data/ext/iup-win32/include/cdgdiplus.h +29 -0
  216. data/ext/iup-win32/include/cdimage.h +23 -0
  217. data/ext/iup-win32/include/cdirgb.h +30 -0
  218. data/ext/iup-win32/include/cdiup.h +22 -0
  219. data/ext/iup-win32/include/cdlua.h +39 -0
  220. data/ext/iup-win32/include/cdlua3_private.h +120 -0
  221. data/ext/iup-win32/include/cdlua5_private.h +141 -0
  222. data/ext/iup-win32/include/cdluaim.h +24 -0
  223. data/ext/iup-win32/include/cdluaiup.h +27 -0
  224. data/ext/iup-win32/include/cdluapdf.h +27 -0
  225. data/ext/iup-win32/include/cdmf.h +24 -0
  226. data/ext/iup-win32/include/cdmf_private.h +32 -0
  227. data/ext/iup-win32/include/cdnative.h +26 -0
  228. data/ext/iup-win32/include/cdpdf.h +38 -0
  229. data/ext/iup-win32/include/cdpicture.h +22 -0
  230. data/ext/iup-win32/include/cdprint.h +23 -0
  231. data/ext/iup-win32/include/cdps.h +37 -0
  232. data/ext/iup-win32/include/cdwmf.h +22 -0
  233. data/ext/iup-win32/include/iup.h +255 -0
  234. data/ext/iup-win32/include/iup_pplot.h +40 -0
  235. data/ext/iup-win32/include/iupcb.h +25 -0
  236. data/ext/iup-win32/include/iupcbox.h +23 -0
  237. data/ext/iup-win32/include/iupcbs.h +42 -0
  238. data/ext/iup-win32/include/iupcells.h +130 -0
  239. data/ext/iup-win32/include/iupcolorbar.h +126 -0
  240. data/ext/iup-win32/include/iupcompat.h +62 -0
  241. data/ext/iup-win32/include/iupcontrols.h +40 -0
  242. data/ext/iup-win32/include/iupcpi.h +76 -0
  243. data/ext/iup-win32/include/iupdef.h +520 -0
  244. data/ext/iup-win32/include/iupdial.h +64 -0
  245. data/ext/iup-win32/include/iupgauge.h +57 -0
  246. data/ext/iup-win32/include/iupgc.h +20 -0
  247. data/ext/iup-win32/include/iupgetparam.h +27 -0
  248. data/ext/iup-win32/include/iupgl.h +101 -0
  249. data/ext/iup-win32/include/iupim.h +21 -0
  250. data/ext/iup-win32/include/iupkey.h +290 -0
  251. data/ext/iup-win32/include/iuplua.h +41 -0
  252. data/ext/iup-win32/include/iuplua_pplot.h +26 -0
  253. data/ext/iup-win32/include/iupluacontrols.h +27 -0
  254. data/ext/iup-win32/include/iupluagl.h +26 -0
  255. data/ext/iup-win32/include/iupluaim.h +26 -0
  256. data/ext/iup-win32/include/iupluaole.h +26 -0
  257. data/ext/iup-win32/include/iupmask.h +52 -0
  258. data/ext/iup-win32/include/iupmatrix.h +69 -0
  259. data/ext/iup-win32/include/iupole.h +24 -0
  260. data/ext/iup-win32/include/iupsbox.h +20 -0
  261. data/ext/iup-win32/include/iupspeech.h +23 -0
  262. data/ext/iup-win32/include/iupspin.h +21 -0
  263. data/ext/iup-win32/include/iuptabs.h +79 -0
  264. data/ext/iup-win32/include/iuptree.h +93 -0
  265. data/ext/iup-win32/include/iupval.h +46 -0
  266. data/ext/iup-win32/include/wd.h +78 -0
  267. data/ext/iup-win32/include/wd_old.h +85 -0
  268. data/ext/iup-win32/iup.dll +0 -0
  269. data/ext/iup-win32/iup.lib +0 -0
  270. data/ext/iup-win32/iup_pplot.dll +0 -0
  271. data/ext/iup-win32/iup_pplot.lib +0 -0
  272. data/ext/iup-win32/iupcd.dll +0 -0
  273. data/ext/iup-win32/iupcd.lib +0 -0
  274. data/ext/iup-win32/iupcontrols.dll +0 -0
  275. data/ext/iup-win32/iupcontrols.lib +0 -0
  276. data/ext/iup-win32/iupgl.dll +0 -0
  277. data/ext/iup-win32/iupgl.lib +0 -0
  278. data/ext/iup-win32/iupim.dll +0 -0
  279. data/ext/iup-win32/iupim.lib +0 -0
  280. data/ext/iup-win32/iupimglib.dll +0 -0
  281. data/ext/iup-win32/iupimglib.lib +0 -0
  282. data/ext/iup-win32/iuplua51.lib +0 -0
  283. data/ext/iup-win32/iuplua_pplot51.lib +0 -0
  284. data/ext/iup-win32/iupluacd51.lib +0 -0
  285. data/ext/iup-win32/iupluacontrols51.lib +0 -0
  286. data/ext/iup-win32/iupluagl51.lib +0 -0
  287. data/ext/iup-win32/iupluaim51.lib +0 -0
  288. data/ext/iup-win32/iupluaimglib51.lib +0 -0
  289. data/ext/iup-win32/iupluaole51.lib +0 -0
  290. data/ext/iup-win32/iupole.dll +0 -0
  291. data/ext/iup-win32/iupole.lib +0 -0
  292. data/ext/iup-win32/iupstub.lib +0 -0
  293. data/ext/iup-win32/pdflib.dll +0 -0
  294. data/ext/iup-win32/pdflib.lib +0 -0
  295. data/ext/iup.c +1261 -0
  296. data/ext/mkrf_conf.rb +72 -0
  297. data/ext/rb_cd.h +1525 -0
  298. data/ext/rb_iup.h +2446 -0
  299. data/ext/rb_iup_pplot.h +129 -0
  300. data/ext/rb_iupcb.h +13 -0
  301. data/ext/rb_iupcbox.h +40 -0
  302. data/ext/rb_iupcells.h +15 -0
  303. data/ext/rb_iupcolorbar.h +17 -0
  304. data/ext/rb_iupcompat.h +237 -0
  305. data/ext/rb_iupcontrols.h +28 -0
  306. data/ext/rb_iupdef.h +3 -0
  307. data/ext/rb_iupdial.h +24 -0
  308. data/ext/rb_iupgauge.h +15 -0
  309. data/ext/rb_iupgc.h +18 -0
  310. data/ext/rb_iupgetparam.h +72 -0
  311. data/ext/rb_iupgl.h +58 -0
  312. data/ext/rb_iupim.h +25 -0
  313. data/ext/rb_iupmask.h +189 -0
  314. data/ext/rb_iupmatrix.h +80 -0
  315. data/ext/rb_iupole.h +24 -0
  316. data/ext/rb_iupsbox.h +23 -0
  317. data/ext/rb_iupspeech.h +25 -0
  318. data/ext/rb_iupspin.h +29 -0
  319. data/ext/rb_iuptabs.h +29 -0
  320. data/ext/rb_iuptree.h +94 -0
  321. data/ext/rb_iupval.h +24 -0
  322. data/lib/README +1 -0
  323. metadata +391 -0
@@ -0,0 +1,315 @@
1
+ /** \file
2
+ * \brief Kernel Generators
3
+ * Creates several known kernels
4
+ *
5
+ * See Copyright Notice in im_lib.h
6
+ */
7
+
8
+ #ifndef __IM_KERNEL_H
9
+ #define __IM_KERNEL_H
10
+
11
+ #if defined(__cplusplus)
12
+ extern "C" {
13
+ #endif
14
+
15
+
16
+ /** \defgroup kernel Kernel Generators
17
+ * \par
18
+ * Creates several known kernels
19
+ * \par
20
+ * See \ref im_kernel.h
21
+ * \ingroup convolve */
22
+
23
+
24
+ /** Creates a kernel with the following values:
25
+ *
26
+ \verbatim
27
+ 1 2 1
28
+ 0 0 0
29
+ -1 -2 -1
30
+ \endverbatim
31
+ *
32
+ * \verbatim im.KernelSobel() -> kernel: imImage [in Lua 5] \endverbatim
33
+ * \ingroup kernel */
34
+ imImage* imKernelSobel(void);
35
+
36
+ /** Creates a kernel with the following values:
37
+ *
38
+ \verbatim
39
+ 1 1 1
40
+ 0 0 0
41
+ -1 -1 -1
42
+ \endverbatim
43
+ *
44
+ * \verbatim im.KernelPrewitt() -> kernel: imImage [in Lua 5] \endverbatim
45
+ * \ingroup kernel */
46
+ imImage* imKernelPrewitt(void);
47
+
48
+ /** Creates a kernel with the following values:
49
+ *
50
+ \verbatim
51
+ 5 5 5
52
+ -3 0 -3
53
+ -3 -3 -3
54
+ \endverbatim
55
+ *
56
+ * \verbatim im.KernelKirsh() -> kernel: imImage [in Lua 5] \endverbatim
57
+ * \ingroup kernel */
58
+ imImage* imKernelKirsh(void);
59
+
60
+ /** Creates a kernel with the following values:
61
+ *
62
+ \verbatim
63
+ 0 -1 0
64
+ -1 4 -1
65
+ 0 -1 0
66
+ \endverbatim
67
+ *
68
+ * \verbatim im.KernelLaplacian4() -> kernel: imImage [in Lua 5] \endverbatim
69
+ * \ingroup kernel */
70
+ imImage* imKernelLaplacian4(void);
71
+
72
+ /** Creates a kernel with the following values:
73
+ *
74
+ \verbatim
75
+ -1 -1 -1
76
+ -1 8 -1
77
+ -1 -1 -1
78
+ \endverbatim
79
+ *
80
+ * \verbatim im.KernelLaplacian8() -> kernel: imImage [in Lua 5] \endverbatim
81
+ * \ingroup kernel */
82
+ imImage* imKernelLaplacian8(void);
83
+
84
+ /** Creates a kernel with the following values:
85
+ *
86
+ \verbatim
87
+ 0 -1 -1 -1 0
88
+ -1 0 1 0 -1
89
+ -1 1 8 1 -1
90
+ -1 0 1 0 -1
91
+ 0 -1 -1 -1 0
92
+ \endverbatim
93
+ *
94
+ * \verbatim im.KernelLaplacian5x5() -> kernel: imImage [in Lua 5] \endverbatim
95
+ * \ingroup kernel */
96
+ imImage* imKernelLaplacian5x5(void);
97
+
98
+ /** Creates a kernel with the following values:
99
+ *
100
+ \verbatim
101
+ -1 -1 -1 -1 -1 -1 -1
102
+ -1 -1 -1 -1 -1 -1 -1
103
+ -1 -1 -1 -1 -1 -1 -1
104
+ -1 -1 -1 48 -1 -1 -1
105
+ -1 -1 -1 -1 -1 -1 -1
106
+ -1 -1 -1 -1 -1 -1 -1
107
+ -1 -1 -1 -1 -1 -1 -1
108
+ \endverbatim
109
+ *
110
+ * \verbatim im.KernelLaplacian7x7() -> kernel: imImage [in Lua 5] \endverbatim
111
+ * \ingroup kernel */
112
+ imImage* imKernelLaplacian7x7(void);
113
+
114
+ /** Creates a kernel with the following values:
115
+ *
116
+ \verbatim
117
+ 0 -1 0
118
+ 0 1 0
119
+ 0 0 0
120
+ \endverbatim
121
+ *
122
+ * \verbatim im.KernelGradian3x3() -> kernel: imImage [in Lua 5] \endverbatim
123
+ * \ingroup kernel */
124
+ imImage* imKernelGradian3x3(void);
125
+
126
+ /** Creates a kernel with the following values:
127
+ *
128
+ \verbatim
129
+ 0 -1 -1 0 1 1 0
130
+ -1 -2 -2 0 2 2 1
131
+ -1 -2 -3 0 3 2 1
132
+ -1 -2 -3 0 3 2 1
133
+ -1 -2 -3 0 3 2 1
134
+ -1 -2 -2 0 2 2 1
135
+ 0 -1 -1 0 1 1 0
136
+ \endverbatim
137
+ *
138
+ * \verbatim im.KernelGradian7x7() -> kernel: imImage [in Lua 5] \endverbatim
139
+ * \ingroup kernel */
140
+ imImage* imKernelGradian7x7(void);
141
+
142
+ /** Creates a kernel with the following values:
143
+ *
144
+ \verbatim
145
+ -1 0 0
146
+ 0 0 0
147
+ 0 0 1
148
+ \endverbatim
149
+ *
150
+ * \verbatim im.KernelSculpt() -> kernel: imImage [in Lua 5] \endverbatim
151
+ * \ingroup kernel */
152
+ imImage* imKernelSculpt(void);
153
+
154
+ /** Creates a kernel with the following values:
155
+ *
156
+ \verbatim
157
+ 1 1 1
158
+ 1 1 1
159
+ 1 1 1
160
+ \endverbatim
161
+ *
162
+ * \verbatim im.KernelMean3x3() -> kernel: imImage [in Lua 5] \endverbatim
163
+ * \ingroup kernel */
164
+ imImage* imKernelMean3x3(void);
165
+
166
+ /** Creates a kernel with the following values:
167
+ *
168
+ \verbatim
169
+ 1 1 1 1 1
170
+ 1 1 1 1 1
171
+ 1 1 1 1 1
172
+ 1 1 1 1 1
173
+ 1 1 1 1 1
174
+ \endverbatim
175
+ *
176
+ * \verbatim im.KernelMean5x5() -> kernel: imImage [in Lua 5] \endverbatim
177
+ * \ingroup kernel */
178
+ imImage* imKernelMean5x5(void);
179
+
180
+ /** Creates a kernel with the following values:
181
+ *
182
+ \verbatim
183
+ 0 1 1 1 0
184
+ 1 1 1 1 1
185
+ 1 1 1 1 1
186
+ 1 1 1 1 1
187
+ 0 1 1 1 0
188
+ \endverbatim
189
+ *
190
+ * \verbatim im.KernelMean5x5() -> kernel: imImage [in Lua 5] \endverbatim
191
+ * \ingroup kernel */
192
+ imImage* imKernelCircularMean5x5(void);
193
+
194
+ /** Creates a kernel with the following values:
195
+ *
196
+ \verbatim
197
+ 1 1 1 1 1 1 1
198
+ 1 1 1 1 1 1 1
199
+ 1 1 1 1 1 1 1
200
+ 1 1 1 1 1 1 1
201
+ 1 1 1 1 1 1 1
202
+ 1 1 1 1 1 1 1
203
+ 1 1 1 1 1 1 1
204
+ \endverbatim
205
+ *
206
+ * \verbatim im.KernelMean7x7() -> kernel: imImage [in Lua 5] \endverbatim
207
+ * \ingroup kernel */
208
+ imImage* imKernelMean7x7(void);
209
+
210
+ /** Creates a kernel with the following values:
211
+ *
212
+ \verbatim
213
+ 0 0 1 1 1 0 0
214
+ 0 1 1 1 1 1 0
215
+ 1 1 1 1 1 1 1
216
+ 1 1 1 1 1 1 1
217
+ 1 1 1 1 1 1 1
218
+ 0 1 1 1 1 1 0
219
+ 0 0 1 1 1 0 0
220
+ \endverbatim
221
+ *
222
+ * \verbatim im.KernelCircularMean7x7() -> kernel: imImage [in Lua 5] \endverbatim
223
+ * \ingroup kernel */
224
+ imImage* imKernelCircularMean7x7(void);
225
+
226
+ /** Creates a kernel with the following values:
227
+ *
228
+ \verbatim
229
+ 1 2 1
230
+ 2 4 2
231
+ 1 2 1
232
+ \endverbatim
233
+ *
234
+ * \verbatim im.KernelGaussian3x3() -> kernel: imImage [in Lua 5] \endverbatim
235
+ * \ingroup kernel */
236
+ imImage* imKernelGaussian3x3(void);
237
+
238
+ /** Creates a kernel with the following values:
239
+ *
240
+ \verbatim
241
+ 1 4 6 4 1
242
+ 4 16 24 16 4
243
+ 6 24 36 24 6
244
+ 4 16 24 16 4
245
+ 1 4 6 4 1
246
+ \endverbatim
247
+ *
248
+ * \verbatim im.KernelGaussian5x5() -> kernel: imImage [in Lua 5] \endverbatim
249
+ * \ingroup kernel */
250
+ imImage* imKernelGaussian5x5(void);
251
+
252
+ /** Creates a kernel with the following values:
253
+ *
254
+ \verbatim
255
+ 1 2 3 2 1
256
+ 2 4 6 4 2
257
+ 3 6 9 6 3
258
+ 2 4 6 4 2
259
+ 1 2 3 2 1
260
+ \endverbatim
261
+ *
262
+ * \verbatim im.KernelBarlett5x5() -> kernel: imImage [in Lua 5] \endverbatim
263
+ * \ingroup kernel */
264
+ imImage* imKernelBarlett5x5(void);
265
+
266
+ /** Creates a kernel with the following values:
267
+ *
268
+ \verbatim
269
+ 0 -1 -1 -1 0
270
+ -1 -1 3 -1 -1
271
+ -1 3 4 3 -1
272
+ -1 -1 3 -1 -1
273
+ 0 -1 -1 -1 0
274
+ \endverbatim
275
+ *
276
+ * \verbatim im.KernelTopHat5x5() -> kernel: imImage [in Lua 5] \endverbatim
277
+ * \ingroup kernel */
278
+ imImage* imKernelTopHat5x5(void);
279
+
280
+ /** Creates a kernel with the following values:
281
+ *
282
+ \verbatim
283
+ 0 0 -1 -1 -1 0 0
284
+ 0 -1 -1 -1 -1 -1 0
285
+ -1 -1 3 3 3 -1 -1
286
+ -1 -1 3 4 3 -1 -1
287
+ -1 -1 3 3 3 -1 -1
288
+ 0 -1 -1 -1 -1 -1 0
289
+ 0 0 -1 -1 -1 0 0
290
+ \endverbatim
291
+ *
292
+ * \verbatim im.KernelTopHat7x7() -> kernel: imImage [in Lua 5] \endverbatim
293
+ * \ingroup kernel */
294
+ imImage* imKernelTopHat7x7(void);
295
+
296
+ /** Creates a kernel with the following values:
297
+ *
298
+ \verbatim
299
+ 0 -1 -2 -1 0
300
+ -1 -4 0 -4 -1
301
+ -2 0 40 0 -2
302
+ -1 -4 0 -4 -1
303
+ 0 -1 -2 -1 0
304
+ \endverbatim
305
+ *
306
+ * \verbatim im.KernelEnhance() -> kernel: imImage [in Lua 5] \endverbatim
307
+ * \ingroup kernel */
308
+ imImage* imKernelEnhance(void);
309
+
310
+ #if defined(__cplusplus)
311
+ }
312
+ #endif
313
+
314
+ #endif
315
+
@@ -0,0 +1,191 @@
1
+ /** \file
2
+ * \brief Library Management and Main Documentation
3
+ *
4
+ * See Copyright Notice in this file.
5
+ */
6
+
7
+ #ifndef __IM_LIB_H
8
+ #define __IM_LIB_H
9
+
10
+ #if defined(__cplusplus)
11
+ extern "C" {
12
+ #endif
13
+
14
+
15
+ /** \defgroup lib Library Management
16
+ * \ingroup util
17
+ * \par
18
+ * Usefull definitions for about dialogs and
19
+ * for comparing the compiled version with the linked version of the library.
20
+ * \par
21
+ * \verbatim im._AUTHOR [in Lua 5] \endverbatim
22
+ * \verbatim im._COPYRIGHT [in Lua 5] \endverbatim
23
+ * \verbatim im._VERSION [in Lua 5] \endverbatim
24
+ * \verbatim im._VERSION_DATE [in Lua 5] \endverbatim
25
+ * \verbatim im._VERSION_NUMBER [in Lua 5] \endverbatim
26
+ * \verbatim im._DESCRIPTION [in Lua 5] \endverbatim
27
+ * \verbatim im._NAME [in Lua 5] \endverbatim
28
+ * \par
29
+ * See \ref im_lib.h
30
+ * @{
31
+ */
32
+ #define IM_AUTHOR "Antonio Scuri"
33
+ #define IM_COPYRIGHT "Copyright (C) 1994-2008 Tecgraf, PUC-Rio."
34
+ #define IM_VERSION "3.4.0"
35
+ #define IM_VERSION_NUMBER 304000
36
+ #define IM_VERSION_DATE "2008/10/14"
37
+ #define IM_DESCRIPTION "Image Representation, Storage, Capture and Processing"
38
+ #define IM_NAME "IM - An Imaging Toolkit"
39
+ /** @} */
40
+
41
+
42
+ /** Returns the library current version. Returns the definition IM_VERSION.
43
+ *
44
+ * \verbatim im.Version() -> version: string [in Lua 5] \endverbatim
45
+ * \ingroup lib */
46
+ const char* imVersion(void);
47
+
48
+ /** Returns the library current version release date. Returns the definition IM_VERSION_DATE.
49
+ *
50
+ * \verbatim im.VersionDate() -> date: string [in Lua 5] \endverbatim
51
+ * \ingroup lib */
52
+ const char* imVersionDate(void);
53
+
54
+ /** Returns the library current version number. Returns the definition IM_VERSION_NUMBER. \n
55
+ * Can be compared in run time with IM_VERSION_NUMBER to compare compiled and linked versions of the library.
56
+ *
57
+ * \verbatim im.VersionNumber() -> version: number [in Lua 5] \endverbatim
58
+ * \ingroup lib */
59
+ int imVersionNumber(void);
60
+
61
+
62
+ #if defined(__cplusplus)
63
+ }
64
+ #endif
65
+
66
+
67
+ /*! \mainpage IM
68
+ * <CENTER>
69
+ * <H3> Image Representation, Storage, Capture and Processing </H3>
70
+ * Tecgraf: Computer Graphics Technology Group, PUC-Rio, Brazil \n
71
+ * http://www.tecgraf.puc-rio.br/im \n
72
+ * mailto:im@tecgraf.puc-rio.br
73
+ * </CENTER>
74
+ *
75
+ * \section over Overview
76
+ * \par
77
+ * IM is a toolkit for Digital Imaging.
78
+ * \par
79
+ * It provides support for image capture, several image file formats and many image processing operations.
80
+ * \par
81
+ * Image representation includes scientific data types (like IEEE floating point data)
82
+ * and attributes (or metadata like GeoTIFF and Exif tags).
83
+ * Animation, video and volumes are supported as image sequences,
84
+ * but there is no digital audio support.
85
+ * \par
86
+ * The main goal of the library is to provide a simple API and abstraction
87
+ * of images for scientific applications.
88
+ * \par
89
+ * The toolkit API is written in C.
90
+ * The core library source code is implemented in C++ and it is very portable,
91
+ * it can be compiled in Windows and UNIX with no modifications.
92
+ * New image processing operations can be implemented in C or in C++.
93
+ * \par
94
+ * IM is free software, can be used for public and commercial applications.
95
+ * \par
96
+ * This work was developed at Tecgraf/PUC-Rio
97
+ * by means of the partnership with PETROBRAS/CENPES.
98
+ *
99
+ * \section author Author
100
+ * \par
101
+ * Basic Software Group @ Tecgraf/PUC-Rio
102
+ * - Antonio Scuri scuri@tecgraf.puc-rio.br
103
+ *
104
+ * \section copyright Copyright Notice
105
+ \verbatim
106
+
107
+ ****************************************************************************
108
+ Copyright (C) 1994-2008 Tecgraf, PUC-Rio.
109
+
110
+ Permission is hereby granted, free of charge, to any person obtaining
111
+ a copy of this software and associated documentation files (the
112
+ "Software"), to deal in the Software without restriction, including
113
+ without limitation the rights to use, copy, modify, merge, publish,
114
+ distribute, sublicense, and/or sell copies of the Software, and to
115
+ permit persons to whom the Software is furnished to do so, subject to
116
+ the following conditions:
117
+
118
+ The above copyright notice and this permission notice shall be
119
+ included in all copies or substantial portions of the Software.
120
+
121
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
122
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
123
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
124
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
125
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
126
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
127
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
128
+ ****************************************************************************
129
+ \endverbatim
130
+ */
131
+
132
+
133
+ /** \defgroup imagerep Image Representation
134
+ * \par
135
+ * See \ref im.h
136
+ */
137
+
138
+
139
+ /** \defgroup file Image Storage
140
+ * \par
141
+ * See \ref im.h
142
+ */
143
+
144
+
145
+ /** \defgroup format File Formats
146
+ * \par
147
+ * See \ref im.h
148
+ *
149
+ * Internal Predefined File Formats:
150
+ * \li "BMP" - Windows Device Independent Bitmap
151
+ * \li "PCX" - ZSoft Picture
152
+ * \li "GIF" - Graphics Interchange Format
153
+ * \li "TIFF" - Tagged Image File Format
154
+ * \li "RAS" - Sun Raster File
155
+ * \li "SGI" - Silicon Graphics Image File Format
156
+ * \li "JPEG" - JPEG File Interchange Format
157
+ * \li "LED" - IUP image in LED
158
+ * \li "TGA" - Truevision Targa
159
+ * \li "RAW" - RAW File
160
+ * \li "PNM" - Netpbm Portable Image Map
161
+ * \li "ICO" - Windows Icon
162
+ * \li "PNG" - Portable Network Graphic Format
163
+ *
164
+ * Other Supported File Formats:
165
+ * \li "JP2" - JPEG-2000 JP2 File Format
166
+ * \li "AVI" - Windows Audio-Video Interleaved RIFF
167
+ * \li "WMV" - Windows Media Video Format
168
+ *
169
+ * Some Known Compressions:
170
+ * \li "NONE" - No Compression.
171
+ * \li "RLE" - Run Lenght Encoding.
172
+ * \li "LZW" - Lempel, Ziff and Welsh.
173
+ * \li "JPEG" - Join Photographics Experts Group.
174
+ * \li "DEFLATE" - LZ77 variation (ZIP)
175
+ *
176
+ * \ingroup file */
177
+
178
+
179
+ /* Library Names Convention
180
+ *
181
+ * Global Functions and Types - "im[Object][Action]" using first capitals (imFileOpen)
182
+ * Local Functions and Types - "i[Object][Action]" using first capitals (iTIFFGetCompIndex)
183
+ * Local Static Variables - same as local functions and types (iFormatCount)
184
+ * Local Static Tables - same as local functions and types with "Table" suffix (iTIFFCompTable)
185
+ * Variables and Members - no prefix, all lower case (width)
186
+ * Defines and Enumerations - all capitals (IM_ERR_NONE)
187
+ *
188
+ */
189
+
190
+
191
+ #endif