fullseye 0.1.0__tar.gz

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 (1617) hide show
  1. fullseye-0.1.0/AUTHORS +6 -0
  2. fullseye-0.1.0/LICENSE +201 -0
  3. fullseye-0.1.0/NOTICE +7 -0
  4. fullseye-0.1.0/PKG-INFO +283 -0
  5. fullseye-0.1.0/README.md +199 -0
  6. fullseye-0.1.0/accel.py +611 -0
  7. fullseye-0.1.0/accel_bridge.py +237 -0
  8. fullseye-0.1.0/accel_match.py +218 -0
  9. fullseye-0.1.0/accel_vol.py +240 -0
  10. fullseye-0.1.0/accuracy_bench.py +133 -0
  11. fullseye-0.1.0/acquire.py +333 -0
  12. fullseye-0.1.0/algo.py +3046 -0
  13. fullseye-0.1.0/algo_codegen.py +176 -0
  14. fullseye-0.1.0/algo_difftest.py +1710 -0
  15. fullseye-0.1.0/api.py +591 -0
  16. fullseye-0.1.0/auto_specs_data.py +325 -0
  17. fullseye-0.1.0/backend_safe.py +120 -0
  18. fullseye-0.1.0/backends.py +314 -0
  19. fullseye-0.1.0/backends_alife.py +473 -0
  20. fullseye-0.1.0/backends_alife2.py +478 -0
  21. fullseye-0.1.0/backends_aug.py +428 -0
  22. fullseye-0.1.0/backends_auto.py +1397 -0
  23. fullseye-0.1.0/backends_color.py +245 -0
  24. fullseye-0.1.0/backends_cv2b.py +64 -0
  25. fullseye-0.1.0/backends_decomp.py +283 -0
  26. fullseye-0.1.0/backends_deform.py +487 -0
  27. fullseye-0.1.0/backends_dl.py +87 -0
  28. fullseye-0.1.0/backends_extra.py +194 -0
  29. fullseye-0.1.0/backends_filters2.py +294 -0
  30. fullseye-0.1.0/backends_imgtools.py +250 -0
  31. fullseye-0.1.0/backends_inverse.py +324 -0
  32. fullseye-0.1.0/backends_kornia.py +117 -0
  33. fullseye-0.1.0/backends_macro.py +106 -0
  34. fullseye-0.1.0/backends_measure1d.py +330 -0
  35. fullseye-0.1.0/backends_physics.py +336 -0
  36. fullseye-0.1.0/backends_pil.py +72 -0
  37. fullseye-0.1.0/backends_r3.py +430 -0
  38. fullseye-0.1.0/backends_regions2.py +464 -0
  39. fullseye-0.1.0/backends_regions3.py +356 -0
  40. fullseye-0.1.0/backends_scipy.py +114 -0
  41. fullseye-0.1.0/backends_segment2.py +350 -0
  42. fullseye-0.1.0/backends_ski2.py +95 -0
  43. fullseye-0.1.0/backends_subpix.py +346 -0
  44. fullseye-0.1.0/backends_tactile.py +327 -0
  45. fullseye-0.1.0/backends_tomo.py +300 -0
  46. fullseye-0.1.0/backends_transform2.py +315 -0
  47. fullseye-0.1.0/backends_xldgeom.py +329 -0
  48. fullseye-0.1.0/baseline.py +77 -0
  49. fullseye-0.1.0/bench.py +83 -0
  50. fullseye-0.1.0/bspline_surf.py +285 -0
  51. fullseye-0.1.0/bundle3d.py +106 -0
  52. fullseye-0.1.0/calib.py +197 -0
  53. fullseye-0.1.0/camera.py +747 -0
  54. fullseye-0.1.0/catalog.py +228 -0
  55. fullseye-0.1.0/codegen.py +89 -0
  56. fullseye-0.1.0/comm.py +563 -0
  57. fullseye-0.1.0/complexops.py +549 -0
  58. fullseye-0.1.0/curvature3d.py +180 -0
  59. fullseye-0.1.0/curve3d.py +101 -0
  60. fullseye-0.1.0/deform3d.py +421 -0
  61. fullseye-0.1.0/deformreg.py +337 -0
  62. fullseye-0.1.0/depth_bilateral.py +237 -0
  63. fullseye-0.1.0/descriptors3d.py +301 -0
  64. fullseye-0.1.0/detect.py +200 -0
  65. fullseye-0.1.0/device.py +238 -0
  66. fullseye-0.1.0/difftest.py +159 -0
  67. fullseye-0.1.0/dispositions.py +153 -0
  68. fullseye-0.1.0/dsp.py +242 -0
  69. fullseye-0.1.0/edges3d.py +304 -0
  70. fullseye-0.1.0/engine.py +292 -0
  71. fullseye-0.1.0/events.py +219 -0
  72. fullseye-0.1.0/evis_fullseye_bridge.py +517 -0
  73. fullseye-0.1.0/evolve.py +133 -0
  74. fullseye-0.1.0/evolve_params.py +141 -0
  75. fullseye-0.1.0/examples/__init__.py +9 -0
  76. fullseye-0.1.0/examples/consumer_hillco.py +97 -0
  77. fullseye-0.1.0/examples/consumer_onocollo.py +107 -0
  78. fullseye-0.1.0/examples/contour_fourier.py +132 -0
  79. fullseye-0.1.0/examples/ct_inspection.py +94 -0
  80. fullseye-0.1.0/examples/draw_annotate.py +76 -0
  81. fullseye-0.1.0/examples/event_camera.py +69 -0
  82. fullseye-0.1.0/examples/g1_policy_staged.py +114 -0
  83. fullseye-0.1.0/examples/gallery2d_color_artistic.py +313 -0
  84. fullseye-0.1.0/examples/gallery2d_contour_measure.py +281 -0
  85. fullseye-0.1.0/examples/gallery2d_edges.py +241 -0
  86. fullseye-0.1.0/examples/gallery2d_features.py +247 -0
  87. fullseye-0.1.0/examples/gallery2d_geometry.py +258 -0
  88. fullseye-0.1.0/examples/gallery2d_gray_arith.py +237 -0
  89. fullseye-0.1.0/examples/gallery2d_halcon_ext.py +259 -0
  90. fullseye-0.1.0/examples/gallery2d_morphology.py +193 -0
  91. fullseye-0.1.0/examples/gallery2d_physics_alife_3d.py +262 -0
  92. fullseye-0.1.0/examples/gallery2d_region.py +224 -0
  93. fullseye-0.1.0/examples/gallery2d_segmentation.py +212 -0
  94. fullseye-0.1.0/examples/gallery2d_smoothing_rank.py +237 -0
  95. fullseye-0.1.0/examples/gallery2d_texture_freq.py +262 -0
  96. fullseye-0.1.0/examples/gaussian_splat_cloud.py +81 -0
  97. fullseye-0.1.0/examples/grasp_pose.py +81 -0
  98. fullseye-0.1.0/examples/image_morph.py +146 -0
  99. fullseye-0.1.0/examples/import_and_grasp.py +59 -0
  100. fullseye-0.1.0/examples/motion_analysis.py +78 -0
  101. fullseye-0.1.0/examples/perception_on_video.py +218 -0
  102. fullseye-0.1.0/examples/perception_pipeline.py +81 -0
  103. fullseye-0.1.0/examples/perception_staged.py +123 -0
  104. fullseye-0.1.0/examples/physical_ai_perception.py +160 -0
  105. fullseye-0.1.0/examples/quickstart.py +68 -0
  106. fullseye-0.1.0/examples/segment_and_classify.py +75 -0
  107. fullseye-0.1.0/examples/signal_filter.py +68 -0
  108. fullseye-0.1.0/examples/sim2real_and_alife.py +89 -0
  109. fullseye-0.1.0/examples/spline_curve.py +73 -0
  110. fullseye-0.1.0/examples2d.py +199 -0
  111. fullseye-0.1.0/examples3d.py +480 -0
  112. fullseye-0.1.0/examples_3d/__init__.py +13 -0
  113. fullseye-0.1.0/examples_3d/alpha_shape_topology.py +158 -0
  114. fullseye-0.1.0/examples_3d/augment_pointcloud.py +155 -0
  115. fullseye-0.1.0/examples_3d/auto_register.py +76 -0
  116. fullseye-0.1.0/examples_3d/bspline_freeform.py +160 -0
  117. fullseye-0.1.0/examples_3d/bundle_adjust.py +82 -0
  118. fullseye-0.1.0/examples_3d/cad_to_scan.py +77 -0
  119. fullseye-0.1.0/examples_3d/contours_to_surface.py +90 -0
  120. fullseye-0.1.0/examples_3d/contours_to_terrain.py +90 -0
  121. fullseye-0.1.0/examples_3d/ct_bone_segmentation.py +101 -0
  122. fullseye-0.1.0/examples_3d/ct_hand_radiograph.py +101 -0
  123. fullseye-0.1.0/examples_3d/ct_sparse_view_recon.py +108 -0
  124. fullseye-0.1.0/examples_3d/ct_surface_extraction.py +88 -0
  125. fullseye-0.1.0/examples_3d/curvature_grasp.py +120 -0
  126. fullseye-0.1.0/examples_3d/curvature_shape_index.py +85 -0
  127. fullseye-0.1.0/examples_3d/curvilinear_proj.py +207 -0
  128. fullseye-0.1.0/examples_3d/cylinder_axis_metrology.py +209 -0
  129. fullseye-0.1.0/examples_3d/denoise_evolution.py +59 -0
  130. fullseye-0.1.0/examples_3d/depth_denoise.py +90 -0
  131. fullseye-0.1.0/examples_3d/detect_primitives_3d.py +202 -0
  132. fullseye-0.1.0/examples_3d/diff_features.py +158 -0
  133. fullseye-0.1.0/examples_3d/dl_mesh_curvature.py +165 -0
  134. fullseye-0.1.0/examples_3d/dl_mesh_symmetry.py +120 -0
  135. fullseye-0.1.0/examples_3d/edges_3d.py +206 -0
  136. fullseye-0.1.0/examples_3d/feature_register.py +249 -0
  137. fullseye-0.1.0/examples_3d/fit_primitives_ext.py +415 -0
  138. fullseye-0.1.0/examples_3d/fpfh_correspondence.py +159 -0
  139. fullseye-0.1.0/examples_3d/gear_metrology.py +136 -0
  140. fullseye-0.1.0/examples_3d/geodesic_distance.py +136 -0
  141. fullseye-0.1.0/examples_3d/geometry_metrology.py +242 -0
  142. fullseye-0.1.0/examples_3d/gicp_register.py +152 -0
  143. fullseye-0.1.0/examples_3d/graycode_structured_light.py +149 -0
  144. fullseye-0.1.0/examples_3d/hull_bounds.py +402 -0
  145. fullseye-0.1.0/examples_3d/inner_box_inspection.py +92 -0
  146. fullseye-0.1.0/examples_3d/itokawa_curvature.py +108 -0
  147. fullseye-0.1.0/examples_3d/itokawa_pose_canonical.py +101 -0
  148. fullseye-0.1.0/examples_3d/itokawa_self_register.py +97 -0
  149. fullseye-0.1.0/examples_3d/itokawa_shape_match.py +84 -0
  150. fullseye-0.1.0/examples_3d/itokawa_symmetry_honest.py +95 -0
  151. fullseye-0.1.0/examples_3d/lidar_projection.py +124 -0
  152. fullseye-0.1.0/examples_3d/lidar_scene_segmentation.py +214 -0
  153. fullseye-0.1.0/examples_3d/matching_localize.py +176 -0
  154. fullseye-0.1.0/examples_3d/medial_topology.py +166 -0
  155. fullseye-0.1.0/examples_3d/mesh_decimate.py +410 -0
  156. fullseye-0.1.0/examples_3d/mesh_lod_download.py +127 -0
  157. fullseye-0.1.0/examples_3d/mesh_props.py +404 -0
  158. fullseye-0.1.0/examples_3d/mesh_smooth.py +209 -0
  159. fullseye-0.1.0/examples_3d/metrics_eval.py +193 -0
  160. fullseye-0.1.0/examples_3d/molecule_atom_count.py +188 -0
  161. fullseye-0.1.0/examples_3d/moment_invariants.py +183 -0
  162. fullseye-0.1.0/examples_3d/morphology_3d.py +187 -0
  163. fullseye-0.1.0/examples_3d/motion_scene.py +249 -0
  164. fullseye-0.1.0/examples_3d/motion_seg.py +112 -0
  165. fullseye-0.1.0/examples_3d/nonrigid_deform.py +162 -0
  166. fullseye-0.1.0/examples_3d/object_segmentation.py +164 -0
  167. fullseye-0.1.0/examples_3d/occupancy_esdf.py +164 -0
  168. fullseye-0.1.0/examples_3d/oriented_bounding_box.py +95 -0
  169. fullseye-0.1.0/examples_3d/oriented_normals.py +121 -0
  170. fullseye-0.1.0/examples_3d/partial_overlap_icp.py +190 -0
  171. fullseye-0.1.0/examples_3d/pcl_geodesic.py +243 -0
  172. fullseye-0.1.0/examples_3d/photometric_stereo.py +167 -0
  173. fullseye-0.1.0/examples_3d/plane_flatness.py +65 -0
  174. fullseye-0.1.0/examples_3d/plane_sweep_depth.py +94 -0
  175. fullseye-0.1.0/examples_3d/pnp_pose_outliers.py +145 -0
  176. fullseye-0.1.0/examples_3d/pointcloud_downsampling.py +66 -0
  177. fullseye-0.1.0/examples_3d/poisson_surface_recon.py +140 -0
  178. fullseye-0.1.0/examples_3d/pose_estimation.py +172 -0
  179. fullseye-0.1.0/examples_3d/pose_graph_slam.py +98 -0
  180. fullseye-0.1.0/examples_3d/primitive_fitting_3d.py +88 -0
  181. fullseye-0.1.0/examples_3d/procedural_hand.py +117 -0
  182. fullseye-0.1.0/examples_3d/range_image.py +202 -0
  183. fullseye-0.1.0/examples_3d/ransac_prim.py +142 -0
  184. fullseye-0.1.0/examples_3d/refinement.py +224 -0
  185. fullseye-0.1.0/examples_3d/reflection_symmetry.py +126 -0
  186. fullseye-0.1.0/examples_3d/reg_eval.py +91 -0
  187. fullseye-0.1.0/examples_3d/region_props_3d.py +212 -0
  188. fullseye-0.1.0/examples_3d/render_ao.py +371 -0
  189. fullseye-0.1.0/examples_3d/render_beauty.py +411 -0
  190. fullseye-0.1.0/examples_3d/render_shade.py +454 -0
  191. fullseye-0.1.0/examples_3d/render_shadow.py +481 -0
  192. fullseye-0.1.0/examples_3d/render_ssaa.py +323 -0
  193. fullseye-0.1.0/examples_3d/render_tonemap.py +368 -0
  194. fullseye-0.1.0/examples_3d/rotational_symmetry_fold.py +143 -0
  195. fullseye-0.1.0/examples_3d/roundness.py +62 -0
  196. fullseye-0.1.0/examples_3d/scene_flow_rigid.py +169 -0
  197. fullseye-0.1.0/examples_3d/sdf_csg.py +74 -0
  198. fullseye-0.1.0/examples_3d/sensor_seg.py +256 -0
  199. fullseye-0.1.0/examples_3d/sfm_recon.py +355 -0
  200. fullseye-0.1.0/examples_3d/sh_descriptor_retrieval.py +286 -0
  201. fullseye-0.1.0/examples_3d/shape_desc_pose.py +205 -0
  202. fullseye-0.1.0/examples_3d/shape_descriptor.py +199 -0
  203. fullseye-0.1.0/examples_3d/shape_retrieval.py +95 -0
  204. fullseye-0.1.0/examples_3d/snell_refraction.py +129 -0
  205. fullseye-0.1.0/examples_3d/space_carving.py +175 -0
  206. fullseye-0.1.0/examples_3d/space_curve.py +249 -0
  207. fullseye-0.1.0/examples_3d/stereo_depth_scene.py +113 -0
  208. fullseye-0.1.0/examples_3d/structured_light.py +119 -0
  209. fullseye-0.1.0/examples_3d/superquadric_fit.py +136 -0
  210. fullseye-0.1.0/examples_3d/symmetry.py +81 -0
  211. fullseye-0.1.0/examples_3d/terrain_traversability.py +116 -0
  212. fullseye-0.1.0/examples_3d/torus_knot_curve.py +146 -0
  213. fullseye-0.1.0/examples_3d/transforms_repr.py +369 -0
  214. fullseye-0.1.0/examples_3d/tsdf_fusion_demo.py +128 -0
  215. fullseye-0.1.0/examples_3d/two_view_pose.py +82 -0
  216. fullseye-0.1.0/examples_3d/volume_downsampling.py +75 -0
  217. fullseye-0.1.0/examples_3d/watershed3d.py +313 -0
  218. fullseye-0.1.0/feat_fpfh.py +320 -0
  219. fullseye-0.1.0/feat_harris.py +132 -0
  220. fullseye-0.1.0/feat_shot.py +332 -0
  221. fullseye-0.1.0/feat_spin.py +256 -0
  222. fullseye-0.1.0/features.py +190 -0
  223. fullseye-0.1.0/filters_flow.py +146 -0
  224. fullseye-0.1.0/fit_primitives_ext.py +382 -0
  225. fullseye-0.1.0/flow.py +216 -0
  226. fullseye-0.1.0/fourierdesc.py +233 -0
  227. fullseye-0.1.0/fringe.py +309 -0
  228. fullseye-0.1.0/fscript.py +1132 -0
  229. fullseye-0.1.0/fsi18n.py +112 -0
  230. fullseye-0.1.0/fslib.py +670 -0
  231. fullseye-0.1.0/fsruntime.py +435 -0
  232. fullseye-0.1.0/fullseye/OP_CATALOG.md +1475 -0
  233. fullseye-0.1.0/fullseye/SENSOR_PLAYBOOK.md +400 -0
  234. fullseye-0.1.0/fullseye/__init__.py +244 -0
  235. fullseye-0.1.0/fullseye/data/halcon_facade_map.json +603 -0
  236. fullseye-0.1.0/fullseye/data/halcon_graph.json +50827 -0
  237. fullseye-0.1.0/fullseye/data/halcon_stubs.json +32020 -0
  238. fullseye-0.1.0/fullseye/i18n/ja.json +13 -0
  239. fullseye-0.1.0/fullseye/rag_setup.py +161 -0
  240. fullseye-0.1.0/fullseye/skill_template/SKILL.md +70 -0
  241. fullseye-0.1.0/fullseye.egg-info/PKG-INFO +283 -0
  242. fullseye-0.1.0/fullseye.egg-info/SOURCES.txt +1615 -0
  243. fullseye-0.1.0/fullseye.egg-info/dependency_links.txt +1 -0
  244. fullseye-0.1.0/fullseye.egg-info/entry_points.txt +4 -0
  245. fullseye-0.1.0/fullseye.egg-info/requires.txt +86 -0
  246. fullseye-0.1.0/fullseye.egg-info/top_level.txt +199 -0
  247. fullseye-0.1.0/fuse3d.py +61 -0
  248. fullseye-0.1.0/g1_policy_bridge.py +382 -0
  249. fullseye-0.1.0/geodesic3d.py +118 -0
  250. fullseye-0.1.0/gicp.py +250 -0
  251. fullseye-0.1.0/graph.py +190 -0
  252. fullseye-0.1.0/graph_seed.py +52 -0
  253. fullseye-0.1.0/graphengine.py +173 -0
  254. fullseye-0.1.0/grasp.py +619 -0
  255. fullseye-0.1.0/halcon_coverage.py +295 -0
  256. fullseye-0.1.0/halcon_names_data.py +2323 -0
  257. fullseye-0.1.0/halcon_rad_ingest.py +192 -0
  258. fullseye-0.1.0/halcon_scrape.py +204 -0
  259. fullseye-0.1.0/honest_summary.py +119 -0
  260. fullseye-0.1.0/hull3d.py +139 -0
  261. fullseye-0.1.0/imagedraw.py +155 -0
  262. fullseye-0.1.0/imagemorph.py +297 -0
  263. fullseye-0.1.0/imgevolve.py +506 -0
  264. fullseye-0.1.0/imgio.py +401 -0
  265. fullseye-0.1.0/imgops_nary.py +238 -0
  266. fullseye-0.1.0/lib_coverage.py +139 -0
  267. fullseye-0.1.0/locomotion.py +211 -0
  268. fullseye-0.1.0/macro_champions_data.py +165 -0
  269. fullseye-0.1.0/match3d.py +2108 -0
  270. fullseye-0.1.0/matching.py +81 -0
  271. fullseye-0.1.0/matching3d.py +180 -0
  272. fullseye-0.1.0/measure.py +213 -0
  273. fullseye-0.1.0/measure3d.py +402 -0
  274. fullseye-0.1.0/medial.py +241 -0
  275. fullseye-0.1.0/mesh.py +1414 -0
  276. fullseye-0.1.0/mesh_decimate.py +337 -0
  277. fullseye-0.1.0/mesh_props.py +256 -0
  278. fullseye-0.1.0/mesh_smooth.py +169 -0
  279. fullseye-0.1.0/meshio_opt.py +584 -0
  280. fullseye-0.1.0/meshrepair.py +735 -0
  281. fullseye-0.1.0/metrics3d.py +121 -0
  282. fullseye-0.1.0/moments3d.py +259 -0
  283. fullseye-0.1.0/mosaic.py +215 -0
  284. fullseye-0.1.0/motion.py +164 -0
  285. fullseye-0.1.0/motion_seg3d.py +235 -0
  286. fullseye-0.1.0/normals_orient.py +261 -0
  287. fullseye-0.1.0/objmodel3d.py +361 -0
  288. fullseye-0.1.0/occupancy.py +336 -0
  289. fullseye-0.1.0/odometry.py +208 -0
  290. fullseye-0.1.0/ops.py +836 -0
  291. fullseye-0.1.0/ops3d.py +545 -0
  292. fullseye-0.1.0/oss_adapter.py +328 -0
  293. fullseye-0.1.0/parity.py +206 -0
  294. fullseye-0.1.0/pcl_augment.py +314 -0
  295. fullseye-0.1.0/pcl_filter.py +288 -0
  296. fullseye-0.1.0/pcseg.py +524 -0
  297. fullseye-0.1.0/photometric.py +129 -0
  298. fullseye-0.1.0/pipeline3d.py +84 -0
  299. fullseye-0.1.0/pipeline_evolve.py +282 -0
  300. fullseye-0.1.0/plane_sweep.py +161 -0
  301. fullseye-0.1.0/pnp3d.py +149 -0
  302. fullseye-0.1.0/pointcloud.py +186 -0
  303. fullseye-0.1.0/pose.py +87 -0
  304. fullseye-0.1.0/pose_graph.py +109 -0
  305. fullseye-0.1.0/pose_quat.py +242 -0
  306. fullseye-0.1.0/ppf.py +238 -0
  307. fullseye-0.1.0/problems.py +362 -0
  308. fullseye-0.1.0/pyproject.toml +144 -0
  309. fullseye-0.1.0/range_image.py +114 -0
  310. fullseye-0.1.0/ransac_fit.py +413 -0
  311. fullseye-0.1.0/raster.py +451 -0
  312. fullseye-0.1.0/recipes.py +97 -0
  313. fullseye-0.1.0/recon3d.py +363 -0
  314. fullseye-0.1.0/reconstruction.py +349 -0
  315. fullseye-0.1.0/references.py +102 -0
  316. fullseye-0.1.0/regionprops3d.py +357 -0
  317. fullseye-0.1.0/registration.py +258 -0
  318. fullseye-0.1.0/registration_eval.py +193 -0
  319. fullseye-0.1.0/render3d.py +543 -0
  320. fullseye-0.1.0/render_ao.py +283 -0
  321. fullseye-0.1.0/render_beauty.py +370 -0
  322. fullseye-0.1.0/render_shade.py +201 -0
  323. fullseye-0.1.0/render_shadow.py +313 -0
  324. fullseye-0.1.0/render_ssaa.py +217 -0
  325. fullseye-0.1.0/render_tonemap.py +143 -0
  326. fullseye-0.1.0/report.py +86 -0
  327. fullseye-0.1.0/robust.py +135 -0
  328. fullseye-0.1.0/sample_data.py +435 -0
  329. fullseye-0.1.0/sample_images.py +46 -0
  330. fullseye-0.1.0/samples.py +129 -0
  331. fullseye-0.1.0/scale.py +188 -0
  332. fullseye-0.1.0/scene_flow3d.py +195 -0
  333. fullseye-0.1.0/sceneflow.py +202 -0
  334. fullseye-0.1.0/sdf_ops.py +180 -0
  335. fullseye-0.1.0/segment3d.py +244 -0
  336. fullseye-0.1.0/setup.cfg +4 -0
  337. fullseye-0.1.0/signal1d.py +238 -0
  338. fullseye-0.1.0/sim_source.py +596 -0
  339. fullseye-0.1.0/specops.py +1241 -0
  340. fullseye-0.1.0/spherical_proj.py +210 -0
  341. fullseye-0.1.0/stereo.py +407 -0
  342. fullseye-0.1.0/studio.py +6289 -0
  343. fullseye-0.1.0/studio_assets/__init__.py +14 -0
  344. fullseye-0.1.0/studio_assets/i18n.json +290 -0
  345. fullseye-0.1.0/studio_assets/op_help/3d/a3_distribution.html +18 -0
  346. fullseye-0.1.0/studio_assets/op_help/3d/aabb.html +18 -0
  347. fullseye-0.1.0/studio_assets/op_help/3d/alpha_shape_boundary.html +18 -0
  348. fullseye-0.1.0/studio_assets/op_help/3d/alpha_shape_mesh.html +18 -0
  349. fullseye-0.1.0/studio_assets/op_help/3d/ambient_occlusion.html +18 -0
  350. fullseye-0.1.0/studio_assets/op_help/3d/angle_3points.html +18 -0
  351. fullseye-0.1.0/studio_assets/op_help/3d/angle_between_lines.html +18 -0
  352. fullseye-0.1.0/studio_assets/op_help/3d/angle_between_planes.html +18 -0
  353. fullseye-0.1.0/studio_assets/op_help/3d/angle_line_plane.html +18 -0
  354. fullseye-0.1.0/studio_assets/op_help/3d/antialias.html +18 -0
  355. fullseye-0.1.0/studio_assets/op_help/3d/arc_length.html +19 -0
  356. fullseye-0.1.0/studio_assets/op_help/3d/background_flatten.html +18 -0
  357. fullseye-0.1.0/studio_assets/op_help/3d/bearing_angle_image.html +18 -0
  358. fullseye-0.1.0/studio_assets/op_help/3d/bilateral_filter_depth.html +18 -0
  359. fullseye-0.1.0/studio_assets/op_help/3d/box_sdf.html +19 -0
  360. fullseye-0.1.0/studio_assets/op_help/3d/bundle_adjust.html +18 -0
  361. fullseye-0.1.0/studio_assets/op_help/3d/canny3d.html +18 -0
  362. fullseye-0.1.0/studio_assets/op_help/3d/carve.html +18 -0
  363. fullseye-0.1.0/studio_assets/op_help/3d/cast_shadow.html +19 -0
  364. fullseye-0.1.0/studio_assets/op_help/3d/central_moments.html +18 -0
  365. fullseye-0.1.0/studio_assets/op_help/3d/chamfer_distance.html +21 -0
  366. fullseye-0.1.0/studio_assets/op_help/3d/compute_fpfh.html +18 -0
  367. fullseye-0.1.0/studio_assets/op_help/3d/convex_hull.html +18 -0
  368. fullseye-0.1.0/studio_assets/op_help/3d/curvature_maps.html +19 -0
  369. fullseye-0.1.0/studio_assets/op_help/3d/curvature_torsion.html +19 -0
  370. fullseye-0.1.0/studio_assets/op_help/3d/cutout.html +18 -0
  371. fullseye-0.1.0/studio_assets/op_help/3d/cylinder_unwrap.html +19 -0
  372. fullseye-0.1.0/studio_assets/op_help/3d/d2_distribution.html +18 -0
  373. fullseye-0.1.0/studio_assets/op_help/3d/decimate_qem.html +19 -0
  374. fullseye-0.1.0/studio_assets/op_help/3d/decode_fringe.html +18 -0
  375. fullseye-0.1.0/studio_assets/op_help/3d/depth_to_organized_points.html +18 -0
  376. fullseye-0.1.0/studio_assets/op_help/3d/depth_to_points.html +18 -0
  377. fullseye-0.1.0/studio_assets/op_help/3d/describe.html +20 -0
  378. fullseye-0.1.0/studio_assets/op_help/3d/detect_reflection_symmetry.html +21 -0
  379. fullseye-0.1.0/studio_assets/op_help/3d/detect_rotational_symmetry.html +19 -0
  380. fullseye-0.1.0/studio_assets/op_help/3d/distance_line_line.html +18 -0
  381. fullseye-0.1.0/studio_assets/op_help/3d/distance_point_line.html +18 -0
  382. fullseye-0.1.0/studio_assets/op_help/3d/distance_point_plane.html +18 -0
  383. fullseye-0.1.0/studio_assets/op_help/3d/distance_ridge.html +18 -0
  384. fullseye-0.1.0/studio_assets/op_help/3d/dlt_pose.html +19 -0
  385. fullseye-0.1.0/studio_assets/op_help/3d/edge_alias_energy.html +19 -0
  386. fullseye-0.1.0/studio_assets/op_help/3d/edge_points.html +18 -0
  387. fullseye-0.1.0/studio_assets/op_help/3d/edt_jfa.html +19 -0
  388. fullseye-0.1.0/studio_assets/op_help/3d/elastic_deform.html +18 -0
  389. fullseye-0.1.0/studio_assets/op_help/3d/esdf.html +18 -0
  390. fullseye-0.1.0/studio_assets/op_help/3d/essential_8point.html +18 -0
  391. fullseye-0.1.0/studio_assets/op_help/3d/estimate_alpha.html +19 -0
  392. fullseye-0.1.0/studio_assets/op_help/3d/estimate_covariances.html +18 -0
  393. fullseye-0.1.0/studio_assets/op_help/3d/estimate_flow.html +18 -0
  394. fullseye-0.1.0/studio_assets/op_help/3d/estimate_normals.html +20 -0
  395. fullseye-0.1.0/studio_assets/op_help/3d/estimate_oriented_normals.html +18 -0
  396. fullseye-0.1.0/studio_assets/op_help/3d/estimate_point_normals.html +18 -0
  397. fullseye-0.1.0/studio_assets/op_help/3d/euclidean_cluster.html +18 -0
  398. fullseye-0.1.0/studio_assets/op_help/3d/eval_bspline_curve.html +18 -0
  399. fullseye-0.1.0/studio_assets/op_help/3d/eval_bspline_surface.html +18 -0
  400. fullseye-0.1.0/studio_assets/op_help/3d/eval_poly_surface.html +18 -0
  401. fullseye-0.1.0/studio_assets/op_help/3d/extent_signature.html +18 -0
  402. fullseye-0.1.0/studio_assets/op_help/3d/extract_surface_points.html +19 -0
  403. fullseye-0.1.0/studio_assets/op_help/3d/face_normals.html +18 -0
  404. fullseye-0.1.0/studio_assets/op_help/3d/farthest_point_sampling.html +19 -0
  405. fullseye-0.1.0/studio_assets/op_help/3d/fill_holes.html +18 -0
  406. fullseye-0.1.0/studio_assets/op_help/3d/filter_by_volume.html +18 -0
  407. fullseye-0.1.0/studio_assets/op_help/3d/fit_box3.html +18 -0
  408. fullseye-0.1.0/studio_assets/op_help/3d/fit_bspline_curve.html +18 -0
  409. fullseye-0.1.0/studio_assets/op_help/3d/fit_bspline_surface.html +18 -0
  410. fullseye-0.1.0/studio_assets/op_help/3d/fit_circle3.html +18 -0
  411. fullseye-0.1.0/studio_assets/op_help/3d/fit_circle_3d.html +18 -0
  412. fullseye-0.1.0/studio_assets/op_help/3d/fit_cone.html +18 -0
  413. fullseye-0.1.0/studio_assets/op_help/3d/fit_ellipsoid.html +18 -0
  414. fullseye-0.1.0/studio_assets/op_help/3d/fit_line3.html +18 -0
  415. fullseye-0.1.0/studio_assets/op_help/3d/fit_line_3d.html +18 -0
  416. fullseye-0.1.0/studio_assets/op_help/3d/fit_plane3.html +18 -0
  417. fullseye-0.1.0/studio_assets/op_help/3d/fit_plane_3d.html +18 -0
  418. fullseye-0.1.0/studio_assets/op_help/3d/fit_poly_surface.html +18 -0
  419. fullseye-0.1.0/studio_assets/op_help/3d/fit_rigid.html +18 -0
  420. fullseye-0.1.0/studio_assets/op_help/3d/fit_sphere3.html +18 -0
  421. fullseye-0.1.0/studio_assets/op_help/3d/fit_sphere_3d.html +18 -0
  422. fullseye-0.1.0/studio_assets/op_help/3d/fit_spline_curve.html +18 -0
  423. fullseye-0.1.0/studio_assets/op_help/3d/fit_superquadric.html +18 -0
  424. fullseye-0.1.0/studio_assets/op_help/3d/fit_torus.html +18 -0
  425. fullseye-0.1.0/studio_assets/op_help/3d/fit_zernike.html +19 -0
  426. fullseye-0.1.0/studio_assets/op_help/3d/frenet_frame.html +19 -0
  427. fullseye-0.1.0/studio_assets/op_help/3d/fresnel_reflectance.html +18 -0
  428. fullseye-0.1.0/studio_assets/op_help/3d/fscore.html +18 -0
  429. fullseye-0.1.0/studio_assets/op_help/3d/fundamental_8point.html +18 -0
  430. fullseye-0.1.0/studio_assets/op_help/3d/fuse.html +18 -0
  431. fullseye-0.1.0/studio_assets/op_help/3d/fuse_to_voxel.html +19 -0
  432. fullseye-0.1.0/studio_assets/op_help/3d/gaussian_curvature.html +19 -0
  433. fullseye-0.1.0/studio_assets/op_help/3d/gaussians_to_voxel.html +19 -0
  434. fullseye-0.1.0/studio_assets/op_help/3d/geodesic_distances.html +18 -0
  435. fullseye-0.1.0/studio_assets/op_help/3d/geodesic_mesh.html +18 -0
  436. fullseye-0.1.0/studio_assets/op_help/3d/gicp.html +18 -0
  437. fullseye-0.1.0/studio_assets/op_help/3d/gradient3d.html +18 -0
  438. fullseye-0.1.0/studio_assets/op_help/3d/graycode_decode.html +18 -0
  439. fullseye-0.1.0/studio_assets/op_help/3d/harris3d_keypoints.html +19 -0
  440. fullseye-0.1.0/studio_assets/op_help/3d/hausdorff_distance.html +20 -0
  441. fullseye-0.1.0/studio_assets/op_help/3d/hessian3d.html +19 -0
  442. fullseye-0.1.0/studio_assets/op_help/3d/hough_plane_3d.html +19 -0
  443. fullseye-0.1.0/studio_assets/op_help/3d/hough_sphere_3d.html +19 -0
  444. fullseye-0.1.0/studio_assets/op_help/3d/icp_point2plane.html +18 -0
  445. fullseye-0.1.0/studio_assets/op_help/3d/icp_point2point_3d.html +21 -0
  446. fullseye-0.1.0/studio_assets/op_help/3d/inertia_tensor.html +18 -0
  447. fullseye-0.1.0/studio_assets/op_help/3d/inflate.html +18 -0
  448. fullseye-0.1.0/studio_assets/op_help/3d/inlier_ratio.html +20 -0
  449. fullseye-0.1.0/studio_assets/op_help/3d/inner_box3.html +18 -0
  450. fullseye-0.1.0/studio_assets/op_help/3d/inside_outside.html +18 -0
  451. fullseye-0.1.0/studio_assets/op_help/3d/integrate.html +18 -0
  452. fullseye-0.1.0/studio_assets/op_help/3d/integrate_normals.html +18 -0
  453. fullseye-0.1.0/studio_assets/op_help/3d/intersect_line_plane.html +18 -0
  454. fullseye-0.1.0/studio_assets/op_help/3d/intersect_planes.html +18 -0
  455. fullseye-0.1.0/studio_assets/op_help/3d/iss_keypoints.html +18 -0
  456. fullseye-0.1.0/studio_assets/op_help/3d/jitter.html +18 -0
  457. fullseye-0.1.0/studio_assets/op_help/3d/joint_bilateral.html +18 -0
  458. fullseye-0.1.0/studio_assets/op_help/3d/knn_graph.html +18 -0
  459. fullseye-0.1.0/studio_assets/op_help/3d/label_components.html +19 -0
  460. fullseye-0.1.0/studio_assets/op_help/3d/laplacian_smooth.html +18 -0
  461. fullseye-0.1.0/studio_assets/op_help/3d/largest_component.html +18 -0
  462. fullseye-0.1.0/studio_assets/op_help/3d/line_from_2points.html +18 -0
  463. fullseye-0.1.0/studio_assets/op_help/3d/link_edges.html +18 -0
  464. fullseye-0.1.0/studio_assets/op_help/3d/log_zero_crossings.html +18 -0
  465. fullseye-0.1.0/studio_assets/op_help/3d/matcap_shade.html +18 -0
  466. fullseye-0.1.0/studio_assets/op_help/3d/match_chamfer_3d.html +19 -0
  467. fullseye-0.1.0/studio_assets/op_help/3d/match_curvature_3d.html +19 -0
  468. fullseye-0.1.0/studio_assets/op_help/3d/match_hough_3d.html +19 -0
  469. fullseye-0.1.0/studio_assets/op_help/3d/match_logpolar_z.html +19 -0
  470. fullseye-0.1.0/studio_assets/op_help/3d/match_mip_2d.html +19 -0
  471. fullseye-0.1.0/studio_assets/op_help/3d/match_pca.html +18 -0
  472. fullseye-0.1.0/studio_assets/op_help/3d/match_phase_3d.html +19 -0
  473. fullseye-0.1.0/studio_assets/op_help/3d/match_points_ncc.html +19 -0
  474. fullseye-0.1.0/studio_assets/op_help/3d/match_sh_descriptor.html +20 -0
  475. fullseye-0.1.0/studio_assets/op_help/3d/match_shape_3d.html +19 -0
  476. fullseye-0.1.0/studio_assets/op_help/3d/mean_curvature.html +18 -0
  477. fullseye-0.1.0/studio_assets/op_help/3d/mean_edge_error.html +18 -0
  478. fullseye-0.1.0/studio_assets/op_help/3d/mean_reprojection_error.html +18 -0
  479. fullseye-0.1.0/studio_assets/op_help/3d/medial_axis_points.html +18 -0
  480. fullseye-0.1.0/studio_assets/op_help/3d/medial_match.html +18 -0
  481. fullseye-0.1.0/studio_assets/op_help/3d/mesh_area.html +19 -0
  482. fullseye-0.1.0/studio_assets/op_help/3d/mesh_to_points.html +18 -0
  483. fullseye-0.1.0/studio_assets/op_help/3d/mesh_to_voxel.html +19 -0
  484. fullseye-0.1.0/studio_assets/op_help/3d/min_enclosing_sphere.html +18 -0
  485. fullseye-0.1.0/studio_assets/op_help/3d/mls_smooth.html +18 -0
  486. fullseye-0.1.0/studio_assets/op_help/3d/moment_axes.html +18 -0
  487. fullseye-0.1.0/studio_assets/op_help/3d/moment_invariants.html +18 -0
  488. fullseye-0.1.0/studio_assets/op_help/3d/morph_blackhat3d.html +19 -0
  489. fullseye-0.1.0/studio_assets/op_help/3d/morph_dilate3d.html +19 -0
  490. fullseye-0.1.0/studio_assets/op_help/3d/morph_erode3d.html +19 -0
  491. fullseye-0.1.0/studio_assets/op_help/3d/morph_gradient3d.html +19 -0
  492. fullseye-0.1.0/studio_assets/op_help/3d/morph_tophat3d.html +20 -0
  493. fullseye-0.1.0/studio_assets/op_help/3d/nearest_neighbor_flow.html +18 -0
  494. fullseye-0.1.0/studio_assets/op_help/3d/normal_consistency.html +18 -0
  495. fullseye-0.1.0/studio_assets/op_help/3d/normal_from_reflection.html +18 -0
  496. fullseye-0.1.0/studio_assets/op_help/3d/normals_from_depth.html +18 -0
  497. fullseye-0.1.0/studio_assets/op_help/3d/obb.html +18 -0
  498. fullseye-0.1.0/studio_assets/op_help/3d/occlusion_edges.html +18 -0
  499. fullseye-0.1.0/studio_assets/op_help/3d/occupancy_grid.html +18 -0
  500. fullseye-0.1.0/studio_assets/op_help/3d/optimize_pose_graph.html +18 -0
  501. fullseye-0.1.0/studio_assets/op_help/3d/orient_normals.html +18 -0
  502. fullseye-0.1.0/studio_assets/op_help/3d/phong_shade.html +19 -0
  503. fullseye-0.1.0/studio_assets/op_help/3d/photometric_stereo.html +18 -0
  504. fullseye-0.1.0/studio_assets/op_help/3d/plane_from_3points.html +18 -0
  505. fullseye-0.1.0/studio_assets/op_help/3d/plane_segmentation.html +18 -0
  506. fullseye-0.1.0/studio_assets/op_help/3d/plane_sweep_depth.html +18 -0
  507. fullseye-0.1.0/studio_assets/op_help/3d/pnp_ransac.html +19 -0
  508. fullseye-0.1.0/studio_assets/op_help/3d/points_to_voxel.html +20 -0
  509. fullseye-0.1.0/studio_assets/op_help/3d/poisson_lite.html +18 -0
  510. fullseye-0.1.0/studio_assets/op_help/3d/polar_unwrap.html +19 -0
  511. fullseye-0.1.0/studio_assets/op_help/3d/pose_error.html +18 -0
  512. fullseye-0.1.0/studio_assets/op_help/3d/principal_curvatures.html +19 -0
  513. fullseye-0.1.0/studio_assets/op_help/3d/principal_moments.html +18 -0
  514. fullseye-0.1.0/studio_assets/op_help/3d/project.html +18 -0
  515. fullseye-0.1.0/studio_assets/op_help/3d/project_cylindrical.html +18 -0
  516. fullseye-0.1.0/studio_assets/op_help/3d/project_points.html +19 -0
  517. fullseye-0.1.0/studio_assets/op_help/3d/project_spherical.html +18 -0
  518. fullseye-0.1.0/studio_assets/op_help/3d/query_distance.html +18 -0
  519. fullseye-0.1.0/studio_assets/op_help/3d/radius_outlier_removal.html +18 -0
  520. fullseye-0.1.0/studio_assets/op_help/3d/random_dropout.html +18 -0
  521. fullseye-0.1.0/studio_assets/op_help/3d/random_rotation.html +20 -0
  522. fullseye-0.1.0/studio_assets/op_help/3d/random_scale.html +18 -0
  523. fullseye-0.1.0/studio_assets/op_help/3d/ransac_cylinder.html +18 -0
  524. fullseye-0.1.0/studio_assets/op_help/3d/ransac_line.html +18 -0
  525. fullseye-0.1.0/studio_assets/op_help/3d/ransac_plane.html +18 -0
  526. fullseye-0.1.0/studio_assets/op_help/3d/ransac_sphere.html +18 -0
  527. fullseye-0.1.0/studio_assets/op_help/3d/recover_pose.html +18 -0
  528. fullseye-0.1.0/studio_assets/op_help/3d/refine_lm.html +19 -0
  529. fullseye-0.1.0/studio_assets/op_help/3d/refine_peak_newton.html +19 -0
  530. fullseye-0.1.0/studio_assets/op_help/3d/refine_rotation_z.html +19 -0
  531. fullseye-0.1.0/studio_assets/op_help/3d/refine_translation_lk.html +19 -0
  532. fullseye-0.1.0/studio_assets/op_help/3d/reflect.html +19 -0
  533. fullseye-0.1.0/studio_assets/op_help/3d/reflect_points.html +18 -0
  534. fullseye-0.1.0/studio_assets/op_help/3d/reflection_symmetry_score.html +19 -0
  535. fullseye-0.1.0/studio_assets/op_help/3d/refract.html +18 -0
  536. fullseye-0.1.0/studio_assets/op_help/3d/region_growing.html +18 -0
  537. fullseye-0.1.0/studio_assets/op_help/3d/region_props.html +18 -0
  538. fullseye-0.1.0/studio_assets/op_help/3d/register_cpd_rigid.html +18 -0
  539. fullseye-0.1.0/studio_assets/op_help/3d/register_cross.html +18 -0
  540. fullseye-0.1.0/studio_assets/op_help/3d/register_fpfh.html +18 -0
  541. fullseye-0.1.0/studio_assets/op_help/3d/register_nonrigid.html +18 -0
  542. fullseye-0.1.0/studio_assets/op_help/3d/register_shot.html +18 -0
  543. fullseye-0.1.0/studio_assets/op_help/3d/register_spin.html +18 -0
  544. fullseye-0.1.0/studio_assets/op_help/3d/registration_recall.html +18 -0
  545. fullseye-0.1.0/studio_assets/op_help/3d/relative_pose.html +19 -0
  546. fullseye-0.1.0/studio_assets/op_help/3d/render_beauty.html +18 -0
  547. fullseye-0.1.0/studio_assets/op_help/3d/render_lambertian.html +19 -0
  548. fullseye-0.1.0/studio_assets/op_help/3d/render_point_depth.html +18 -0
  549. fullseye-0.1.0/studio_assets/op_help/3d/render_shaded.html +18 -0
  550. fullseye-0.1.0/studio_assets/op_help/3d/render_volume_projection.html +19 -0
  551. fullseye-0.1.0/studio_assets/op_help/3d/reprojection_error.html +19 -0
  552. fullseye-0.1.0/studio_assets/op_help/3d/resample_uniform.html +18 -0
  553. fullseye-0.1.0/studio_assets/op_help/3d/rigid_flow.html +18 -0
  554. fullseye-0.1.0/studio_assets/op_help/3d/rmse_correspondence.html +18 -0
  555. fullseye-0.1.0/studio_assets/op_help/3d/rmse_inliers.html +18 -0
  556. fullseye-0.1.0/studio_assets/op_help/3d/rotation_translation_error.html +18 -0
  557. fullseye-0.1.0/studio_assets/op_help/3d/sample_surface.html +19 -0
  558. fullseye-0.1.0/studio_assets/op_help/3d/sampson_distance.html +18 -0
  559. fullseye-0.1.0/studio_assets/op_help/3d/scene_flow_lk.html +19 -0
  560. fullseye-0.1.0/studio_assets/op_help/3d/sdf_intersect.html +18 -0
  561. fullseye-0.1.0/studio_assets/op_help/3d/sdf_offset.html +18 -0
  562. fullseye-0.1.0/studio_assets/op_help/3d/sdf_smooth_union.html +18 -0
  563. fullseye-0.1.0/studio_assets/op_help/3d/sdf_subtract.html +18 -0
  564. fullseye-0.1.0/studio_assets/op_help/3d/sdf_to_occupancy.html +18 -0
  565. fullseye-0.1.0/studio_assets/op_help/3d/sdf_union.html +19 -0
  566. fullseye-0.1.0/studio_assets/op_help/3d/segment_rigid_motions.html +18 -0
  567. fullseye-0.1.0/studio_assets/op_help/3d/sh_descriptor.html +20 -0
  568. fullseye-0.1.0/studio_assets/op_help/3d/shape_distance.html +20 -0
  569. fullseye-0.1.0/studio_assets/op_help/3d/shape_index.html +19 -0
  570. fullseye-0.1.0/studio_assets/op_help/3d/shot_descriptor.html +18 -0
  571. fullseye-0.1.0/studio_assets/op_help/3d/signed_distance_field.html +19 -0
  572. fullseye-0.1.0/studio_assets/op_help/3d/skeletonize_vol.html +18 -0
  573. fullseye-0.1.0/studio_assets/op_help/3d/smallest_box3.html +18 -0
  574. fullseye-0.1.0/studio_assets/op_help/3d/smallest_box3_axis.html +18 -0
  575. fullseye-0.1.0/studio_assets/op_help/3d/smallest_sphere3.html +18 -0
  576. fullseye-0.1.0/studio_assets/op_help/3d/smooth_flow.html +18 -0
  577. fullseye-0.1.0/studio_assets/op_help/3d/snell_angle.html +18 -0
  578. fullseye-0.1.0/studio_assets/op_help/3d/sobel3d.html +19 -0
  579. fullseye-0.1.0/studio_assets/op_help/3d/sphere_sdf.html +23 -0
  580. fullseye-0.1.0/studio_assets/op_help/3d/statistical_outlier_removal.html +18 -0
  581. fullseye-0.1.0/studio_assets/op_help/3d/superquadric_residual.html +18 -0
  582. fullseye-0.1.0/studio_assets/op_help/3d/supersample_mesh.html +18 -0
  583. fullseye-0.1.0/studio_assets/op_help/3d/surface_form_error.html +18 -0
  584. fullseye-0.1.0/studio_assets/op_help/3d/surface_normals.html +18 -0
  585. fullseye-0.1.0/studio_assets/op_help/3d/surface_residual.html +18 -0
  586. fullseye-0.1.0/studio_assets/op_help/3d/synthesize_fringes.html +18 -0
  587. fullseye-0.1.0/studio_assets/op_help/3d/synthesize_silhouette.html +18 -0
  588. fullseye-0.1.0/studio_assets/op_help/3d/taubin_smooth.html +18 -0
  589. fullseye-0.1.0/studio_assets/op_help/3d/to_points.html +18 -0
  590. fullseye-0.1.0/studio_assets/op_help/3d/tonemap_aces.html +18 -0
  591. fullseye-0.1.0/studio_assets/op_help/3d/tonemap_reinhard.html +19 -0
  592. fullseye-0.1.0/studio_assets/op_help/3d/topology_signature.html +18 -0
  593. fullseye-0.1.0/studio_assets/op_help/3d/tps_fit.html +18 -0
  594. fullseye-0.1.0/studio_assets/op_help/3d/tps_warp.html +18 -0
  595. fullseye-0.1.0/studio_assets/op_help/3d/triangulate.html +18 -0
  596. fullseye-0.1.0/studio_assets/op_help/3d/tsdf_from_depth.html +18 -0
  597. fullseye-0.1.0/studio_assets/op_help/3d/unproject_spherical.html +18 -0
  598. fullseye-0.1.0/studio_assets/op_help/3d/unwrap_phase_2d.html +18 -0
  599. fullseye-0.1.0/studio_assets/op_help/3d/vertex_curvature.html +19 -0
  600. fullseye-0.1.0/studio_assets/op_help/3d/vertex_normals.html +18 -0
  601. fullseye-0.1.0/studio_assets/op_help/3d/visual_hull.html +18 -0
  602. fullseye-0.1.0/studio_assets/op_help/3d/vol_watershed.html +19 -0
  603. fullseye-0.1.0/studio_assets/op_help/3d/volume_downsample.html +18 -0
  604. fullseye-0.1.0/studio_assets/op_help/3d/voxel_grid_downsample.html +18 -0
  605. fullseye-0.1.0/studio_assets/op_help/3d/voxel_iou.html +18 -0
  606. fullseye-0.1.0/studio_assets/op_help/3d/voxel_to_mesh.html +18 -0
  607. fullseye-0.1.0/studio_assets/op_help/3d/voxel_to_mips.html +18 -0
  608. fullseye-0.1.0/studio_assets/op_help/3d/warp_by_plane.html +18 -0
  609. fullseye-0.1.0/studio_assets/op_help/3d/wrapped_phase.html +18 -0
  610. fullseye-0.1.0/studio_assets/op_help/README.md +26 -0
  611. fullseye-0.1.0/studio_assets/op_help/abs_image.html +22 -0
  612. fullseye-0.1.0/studio_assets/op_help/access_channel.html +22 -0
  613. fullseye-0.1.0/studio_assets/op_help/acos_image.html +22 -0
  614. fullseye-0.1.0/studio_assets/op_help/adaptive_gauss_thresh.html +22 -0
  615. fullseye-0.1.0/studio_assets/op_help/add_noise_distribution.html +22 -0
  616. fullseye-0.1.0/studio_assets/op_help/add_noise_white.html +22 -0
  617. fullseye-0.1.0/studio_assets/op_help/affine_trans_contour_xld.html +22 -0
  618. fullseye-0.1.0/studio_assets/op_help/affine_trans_image.html +22 -0
  619. fullseye-0.1.0/studio_assets/op_help/affine_trans_image_size.html +22 -0
  620. fullseye-0.1.0/studio_assets/op_help/affine_trans_polygon_xld.html +22 -0
  621. fullseye-0.1.0/studio_assets/op_help/affine_trans_region.html +22 -0
  622. fullseye-0.1.0/studio_assets/op_help/affine_warp.html +22 -0
  623. fullseye-0.1.0/studio_assets/op_help/alife_curvature_flow.html +21 -0
  624. fullseye-0.1.0/studio_assets/op_help/alife_cyclic_ca.html +22 -0
  625. fullseye-0.1.0/studio_assets/op_help/alife_dla.html +22 -0
  626. fullseye-0.1.0/studio_assets/op_help/alife_gray_scott.html +21 -0
  627. fullseye-0.1.0/studio_assets/op_help/alife_langton_ant.html +21 -0
  628. fullseye-0.1.0/studio_assets/op_help/alife_lenia.html +21 -0
  629. fullseye-0.1.0/studio_assets/op_help/alife_life_step.html +22 -0
  630. fullseye-0.1.0/studio_assets/op_help/alife_perona_malik.html +21 -0
  631. fullseye-0.1.0/studio_assets/op_help/alife_reaction_bz.html +22 -0
  632. fullseye-0.1.0/studio_assets/op_help/alife_sandpile.html +21 -0
  633. fullseye-0.1.0/studio_assets/op_help/alife_turing.html +22 -0
  634. fullseye-0.1.0/studio_assets/op_help/alife_wolfram1d.html +21 -0
  635. fullseye-0.1.0/studio_assets/op_help/anisotropic_diffusion.html +22 -0
  636. fullseye-0.1.0/studio_assets/op_help/area_center.html +22 -0
  637. fullseye-0.1.0/studio_assets/op_help/area_center_xld.html +22 -0
  638. fullseye-0.1.0/studio_assets/op_help/area_frac.html +22 -0
  639. fullseye-0.1.0/studio_assets/op_help/area_holes.html +22 -0
  640. fullseye-0.1.0/studio_assets/op_help/asin_image.html +22 -0
  641. fullseye-0.1.0/studio_assets/op_help/atan_image.html +22 -0
  642. fullseye-0.1.0/studio_assets/op_help/aug_barrel.html +22 -0
  643. fullseye-0.1.0/studio_assets/op_help/aug_chromatic.html +21 -0
  644. fullseye-0.1.0/studio_assets/op_help/aug_cutout.html +21 -0
  645. fullseye-0.1.0/studio_assets/op_help/aug_fixed_pattern.html +22 -0
  646. fullseye-0.1.0/studio_assets/op_help/aug_jpeg_blocks.html +22 -0
  647. fullseye-0.1.0/studio_assets/op_help/aug_motion_blur.html +21 -0
  648. fullseye-0.1.0/studio_assets/op_help/aug_read_noise.html +21 -0
  649. fullseye-0.1.0/studio_assets/op_help/aug_rolling_shutter.html +22 -0
  650. fullseye-0.1.0/studio_assets/op_help/aug_shot_noise.html +22 -0
  651. fullseye-0.1.0/studio_assets/op_help/aug_vignette.html +22 -0
  652. fullseye-0.1.0/studio_assets/op_help/auto_threshold.html +22 -0
  653. fullseye-0.1.0/studio_assets/op_help/bandpass_image.html +22 -0
  654. fullseye-0.1.0/studio_assets/op_help/bilateral.html +23 -0
  655. fullseye-0.1.0/studio_assets/op_help/bilateral_filter.html +22 -0
  656. fullseye-0.1.0/studio_assets/op_help/bin_threshold.html +22 -0
  657. fullseye-0.1.0/studio_assets/op_help/binary_threshold.html +22 -0
  658. fullseye-0.1.0/studio_assets/op_help/binomial_filter.html +22 -0
  659. fullseye-0.1.0/studio_assets/op_help/bit_not.html +22 -0
  660. fullseye-0.1.0/studio_assets/op_help/blob_count.html +23 -0
  661. fullseye-0.1.0/studio_assets/op_help/bothat.html +22 -0
  662. fullseye-0.1.0/studio_assets/op_help/boundary.html +22 -0
  663. fullseye-0.1.0/studio_assets/op_help/canny.html +22 -0
  664. fullseye-0.1.0/studio_assets/op_help/cfa_to_rgb.html +22 -0
  665. fullseye-0.1.0/studio_assets/op_help/circularity.html +23 -0
  666. fullseye-0.1.0/studio_assets/op_help/circularity_xld.html +22 -0
  667. fullseye-0.1.0/studio_assets/op_help/clahe.html +21 -0
  668. fullseye-0.1.0/studio_assets/op_help/classify_shape.html +21 -0
  669. fullseye-0.1.0/studio_assets/op_help/close_contours_xld.html +22 -0
  670. fullseye-0.1.0/studio_assets/op_help/closest_point_transform.html +22 -0
  671. fullseye-0.1.0/studio_assets/op_help/closing_circle.html +22 -0
  672. fullseye-0.1.0/studio_assets/op_help/closing_golay.html +22 -0
  673. fullseye-0.1.0/studio_assets/op_help/closing_rectangle1.html +22 -0
  674. fullseye-0.1.0/studio_assets/op_help/coherence_enhancing_diff.html +22 -0
  675. fullseye-0.1.0/studio_assets/op_help/compactness.html +22 -0
  676. fullseye-0.1.0/studio_assets/op_help/compactness_xld.html +22 -0
  677. fullseye-0.1.0/studio_assets/op_help/connect_and_holes.html +22 -0
  678. fullseye-0.1.0/studio_assets/op_help/contlength.html +22 -0
  679. fullseye-0.1.0/studio_assets/op_help/contour_point_num_xld.html +22 -0
  680. fullseye-0.1.0/studio_assets/op_help/contours_to_region.html +23 -0
  681. fullseye-0.1.0/studio_assets/op_help/convex_fill.html +22 -0
  682. fullseye-0.1.0/studio_assets/op_help/convexity.html +22 -0
  683. fullseye-0.1.0/studio_assets/op_help/convexity_xld.html +22 -0
  684. fullseye-0.1.0/studio_assets/op_help/cooc_feature_matrix.html +22 -0
  685. fullseye-0.1.0/studio_assets/op_help/corner_response.html +22 -0
  686. fullseye-0.1.0/studio_assets/op_help/cos_image.html +22 -0
  687. fullseye-0.1.0/studio_assets/op_help/count_channels.html +22 -0
  688. fullseye-0.1.0/studio_assets/op_help/count_contours.html +22 -0
  689. fullseye-0.1.0/studio_assets/op_help/count_obj.html +22 -0
  690. fullseye-0.1.0/studio_assets/op_help/cv_adaptive_gauss.html +22 -0
  691. fullseye-0.1.0/studio_assets/op_help/cv_adaptive_mean.html +22 -0
  692. fullseye-0.1.0/studio_assets/op_help/cv_bilateral.html +22 -0
  693. fullseye-0.1.0/studio_assets/op_help/cv_blackhat.html +22 -0
  694. fullseye-0.1.0/studio_assets/op_help/cv_box.html +22 -0
  695. fullseye-0.1.0/studio_assets/op_help/cv_canny.html +22 -0
  696. fullseye-0.1.0/studio_assets/op_help/cv_cc_count.html +22 -0
  697. fullseye-0.1.0/studio_assets/op_help/cv_clahe.html +21 -0
  698. fullseye-0.1.0/studio_assets/op_help/cv_close.html +22 -0
  699. fullseye-0.1.0/studio_assets/op_help/cv_corner_harris.html +22 -0
  700. fullseye-0.1.0/studio_assets/op_help/cv_dilate.html +22 -0
  701. fullseye-0.1.0/studio_assets/op_help/cv_dist.html +22 -0
  702. fullseye-0.1.0/studio_assets/op_help/cv_erode.html +22 -0
  703. fullseye-0.1.0/studio_assets/op_help/cv_gaussian.html +22 -0
  704. fullseye-0.1.0/studio_assets/op_help/cv_good_features.html +21 -0
  705. fullseye-0.1.0/studio_assets/op_help/cv_gradient.html +22 -0
  706. fullseye-0.1.0/studio_assets/op_help/cv_hough_circles.html +22 -0
  707. fullseye-0.1.0/studio_assets/op_help/cv_hough_lines.html +22 -0
  708. fullseye-0.1.0/studio_assets/op_help/cv_laplacian.html +22 -0
  709. fullseye-0.1.0/studio_assets/op_help/cv_median.html +22 -0
  710. fullseye-0.1.0/studio_assets/op_help/cv_min_eigen.html +22 -0
  711. fullseye-0.1.0/studio_assets/op_help/cv_nlmeans.html +21 -0
  712. fullseye-0.1.0/studio_assets/op_help/cv_open.html +22 -0
  713. fullseye-0.1.0/studio_assets/op_help/cv_otsu.html +22 -0
  714. fullseye-0.1.0/studio_assets/op_help/cv_precorner.html +22 -0
  715. fullseye-0.1.0/studio_assets/op_help/cv_scharr.html +22 -0
  716. fullseye-0.1.0/studio_assets/op_help/cv_sharpen.html +22 -0
  717. fullseye-0.1.0/studio_assets/op_help/cv_tophat.html +22 -0
  718. fullseye-0.1.0/studio_assets/op_help/cv_trunc.html +22 -0
  719. fullseye-0.1.0/studio_assets/op_help/dc_homomorphic.html +21 -0
  720. fullseye-0.1.0/studio_assets/op_help/dc_local_contrast_norm.html +21 -0
  721. fullseye-0.1.0/studio_assets/op_help/dc_retinex.html +21 -0
  722. fullseye-0.1.0/studio_assets/op_help/dc_rpca_lowrank.html +21 -0
  723. fullseye-0.1.0/studio_assets/op_help/dc_rpca_sparse.html +21 -0
  724. fullseye-0.1.0/studio_assets/op_help/dc_structure_texture.html +21 -0
  725. fullseye-0.1.0/studio_assets/op_help/dc_texture_residual.html +21 -0
  726. fullseye-0.1.0/studio_assets/op_help/decode_barcode.html +22 -0
  727. fullseye-0.1.0/studio_assets/op_help/deform_ffd.html +21 -0
  728. fullseye-0.1.0/studio_assets/op_help/deform_mls.html +21 -0
  729. fullseye-0.1.0/studio_assets/op_help/deform_tps.html +21 -0
  730. fullseye-0.1.0/studio_assets/op_help/derivate_gauss.html +22 -0
  731. fullseye-0.1.0/studio_assets/op_help/deviation_image.html +22 -0
  732. fullseye-0.1.0/studio_assets/op_help/diameter_region.html +22 -0
  733. fullseye-0.1.0/studio_assets/op_help/diameter_xld.html +22 -0
  734. fullseye-0.1.0/studio_assets/op_help/diff_of_gauss.html +22 -0
  735. fullseye-0.1.0/studio_assets/op_help/dilation_circle.html +22 -0
  736. fullseye-0.1.0/studio_assets/op_help/dilation_golay.html +22 -0
  737. fullseye-0.1.0/studio_assets/op_help/dilation_rectangle1.html +22 -0
  738. fullseye-0.1.0/studio_assets/op_help/dilation_seq.html +22 -0
  739. fullseye-0.1.0/studio_assets/op_help/dist_transform.html +22 -0
  740. fullseye-0.1.0/studio_assets/op_help/distance_transform.html +22 -0
  741. fullseye-0.1.0/studio_assets/op_help/dl_aniso_diffusion.html +22 -0
  742. fullseye-0.1.0/studio_assets/op_help/dl_guided_filter.html +22 -0
  743. fullseye-0.1.0/studio_assets/op_help/dog.html +22 -0
  744. fullseye-0.1.0/studio_assets/op_help/dots_image.html +22 -0
  745. fullseye-0.1.0/studio_assets/op_help/dual_rank.html +22 -0
  746. fullseye-0.1.0/studio_assets/op_help/dual_threshold.html +22 -0
  747. fullseye-0.1.0/studio_assets/op_help/dyn_threshold.html +23 -0
  748. fullseye-0.1.0/studio_assets/op_help/eccentricity.html +22 -0
  749. fullseye-0.1.0/studio_assets/op_help/eccentricity_xld.html +22 -0
  750. fullseye-0.1.0/studio_assets/op_help/edges_color.html +22 -0
  751. fullseye-0.1.0/studio_assets/op_help/edges_color_sub_pix.html +22 -0
  752. fullseye-0.1.0/studio_assets/op_help/edges_image.html +22 -0
  753. fullseye-0.1.0/studio_assets/op_help/edges_sub_pix.html +24 -0
  754. fullseye-0.1.0/studio_assets/op_help/eliminate_min_max.html +22 -0
  755. fullseye-0.1.0/studio_assets/op_help/eliminate_sp.html +22 -0
  756. fullseye-0.1.0/studio_assets/op_help/elliptic_axis.html +22 -0
  757. fullseye-0.1.0/studio_assets/op_help/elliptic_axis_xld.html +22 -0
  758. fullseye-0.1.0/studio_assets/op_help/entropy_gray.html +22 -0
  759. fullseye-0.1.0/studio_assets/op_help/entropy_image.html +22 -0
  760. fullseye-0.1.0/studio_assets/op_help/equ_histo_image.html +22 -0
  761. fullseye-0.1.0/studio_assets/op_help/equ_histo_image_rect.html +22 -0
  762. fullseye-0.1.0/studio_assets/op_help/equalize.html +22 -0
  763. fullseye-0.1.0/studio_assets/op_help/erosion_circle.html +22 -0
  764. fullseye-0.1.0/studio_assets/op_help/erosion_golay.html +22 -0
  765. fullseye-0.1.0/studio_assets/op_help/erosion_rectangle1.html +22 -0
  766. fullseye-0.1.0/studio_assets/op_help/erosion_seq.html +22 -0
  767. fullseye-0.1.0/studio_assets/op_help/estimate_noise.html +22 -0
  768. fullseye-0.1.0/studio_assets/op_help/euler_number.html +22 -0
  769. fullseye-0.1.0/studio_assets/op_help/exp_image.html +22 -0
  770. fullseye-0.1.0/studio_assets/op_help/f2_bit_slice.html +22 -0
  771. fullseye-0.1.0/studio_assets/op_help/f2_expand_domain.html +22 -0
  772. fullseye-0.1.0/studio_assets/op_help/f2_gauss_pyramid.html +22 -0
  773. fullseye-0.1.0/studio_assets/op_help/f2_gray_inside.html +22 -0
  774. fullseye-0.1.0/studio_assets/op_help/f2_gray_skeleton.html +22 -0
  775. fullseye-0.1.0/studio_assets/op_help/f2_lut_trans.html +22 -0
  776. fullseye-0.1.0/studio_assets/op_help/f2_shock.html +22 -0
  777. fullseye-0.1.0/studio_assets/op_help/f2_symmetry.html +22 -0
  778. fullseye-0.1.0/studio_assets/op_help/f2_topographic.html +22 -0
  779. fullseye-0.1.0/studio_assets/op_help/fast_threshold.html +22 -0
  780. fullseye-0.1.0/studio_assets/op_help/fft_generic.html +22 -0
  781. fullseye-0.1.0/studio_assets/op_help/fft_image.html +22 -0
  782. fullseye-0.1.0/studio_assets/op_help/fft_image_inv.html +22 -0
  783. fullseye-0.1.0/studio_assets/op_help/fill_holes.html +22 -0
  784. fullseye-0.1.0/studio_assets/op_help/fill_up.html +22 -0
  785. fullseye-0.1.0/studio_assets/op_help/fill_up_shape.html +22 -0
  786. fullseye-0.1.0/studio_assets/op_help/fit_line_contours.html +22 -0
  787. fullseye-0.1.0/studio_assets/op_help/frei_amp.html +22 -0
  788. fullseye-0.1.0/studio_assets/op_help/frei_dir.html +22 -0
  789. fullseye-0.1.0/studio_assets/op_help/gabor.html +22 -0
  790. fullseye-0.1.0/studio_assets/op_help/gamma.html +22 -0
  791. fullseye-0.1.0/studio_assets/op_help/gamma_image.html +22 -0
  792. fullseye-0.1.0/studio_assets/op_help/gauss_filter.html +22 -0
  793. fullseye-0.1.0/studio_assets/op_help/gauss_image.html +22 -0
  794. fullseye-0.1.0/studio_assets/op_help/gaussian.html +31 -0
  795. fullseye-0.1.0/studio_assets/op_help/gclose.html +22 -0
  796. fullseye-0.1.0/studio_assets/op_help/gdilate.html +22 -0
  797. fullseye-0.1.0/studio_assets/op_help/gen_contour_region_xld.html +22 -0
  798. fullseye-0.1.0/studio_assets/op_help/gen_gabor.html +22 -0
  799. fullseye-0.1.0/studio_assets/op_help/gen_region_contour_xld.html +22 -0
  800. fullseye-0.1.0/studio_assets/op_help/gen_region_polygon_xld.html +22 -0
  801. fullseye-0.1.0/studio_assets/op_help/gerode.html +22 -0
  802. fullseye-0.1.0/studio_assets/op_help/get_region_contour.html +22 -0
  803. fullseye-0.1.0/studio_assets/op_help/get_region_convex.html +22 -0
  804. fullseye-0.1.0/studio_assets/op_help/get_region_thickness.html +22 -0
  805. fullseye-0.1.0/studio_assets/op_help/gopen.html +22 -0
  806. fullseye-0.1.0/studio_assets/op_help/grad_dir.html +21 -0
  807. fullseye-0.1.0/studio_assets/op_help/gray_bothat.html +22 -0
  808. fullseye-0.1.0/studio_assets/op_help/gray_closing.html +22 -0
  809. fullseye-0.1.0/studio_assets/op_help/gray_closing_rect.html +22 -0
  810. fullseye-0.1.0/studio_assets/op_help/gray_closing_shape.html +22 -0
  811. fullseye-0.1.0/studio_assets/op_help/gray_dilation.html +22 -0
  812. fullseye-0.1.0/studio_assets/op_help/gray_dilation_rect.html +22 -0
  813. fullseye-0.1.0/studio_assets/op_help/gray_dilation_shape.html +22 -0
  814. fullseye-0.1.0/studio_assets/op_help/gray_erosion.html +22 -0
  815. fullseye-0.1.0/studio_assets/op_help/gray_erosion_rect.html +22 -0
  816. fullseye-0.1.0/studio_assets/op_help/gray_erosion_shape.html +22 -0
  817. fullseye-0.1.0/studio_assets/op_help/gray_histo_abs.html +22 -0
  818. fullseye-0.1.0/studio_assets/op_help/gray_opening.html +22 -0
  819. fullseye-0.1.0/studio_assets/op_help/gray_opening_rect.html +22 -0
  820. fullseye-0.1.0/studio_assets/op_help/gray_opening_shape.html +22 -0
  821. fullseye-0.1.0/studio_assets/op_help/gray_range_rect.html +22 -0
  822. fullseye-0.1.0/studio_assets/op_help/gray_tophat.html +22 -0
  823. fullseye-0.1.0/studio_assets/op_help/guide_gallery2d_color_artistic.html +153 -0
  824. fullseye-0.1.0/studio_assets/op_help/guide_gallery2d_contour_measure.html +139 -0
  825. fullseye-0.1.0/studio_assets/op_help/guide_gallery2d_edges.html +156 -0
  826. fullseye-0.1.0/studio_assets/op_help/guide_gallery2d_features.html +168 -0
  827. fullseye-0.1.0/studio_assets/op_help/guide_gallery2d_geometry.html +177 -0
  828. fullseye-0.1.0/studio_assets/op_help/guide_gallery2d_gray_arith.html +150 -0
  829. fullseye-0.1.0/studio_assets/op_help/guide_gallery2d_halcon_ext.html +179 -0
  830. fullseye-0.1.0/studio_assets/op_help/guide_gallery2d_morphology.html +119 -0
  831. fullseye-0.1.0/studio_assets/op_help/guide_gallery2d_physics_alife_3d.html +152 -0
  832. fullseye-0.1.0/studio_assets/op_help/guide_gallery2d_region.html +193 -0
  833. fullseye-0.1.0/studio_assets/op_help/guide_gallery2d_segmentation.html +218 -0
  834. fullseye-0.1.0/studio_assets/op_help/guide_gallery2d_smoothing_rank.html +183 -0
  835. fullseye-0.1.0/studio_assets/op_help/guide_gallery2d_texture_freq.html +177 -0
  836. fullseye-0.1.0/studio_assets/op_help/guided_filter.html +22 -0
  837. fullseye-0.1.0/studio_assets/op_help/h_threshold.html +22 -0
  838. fullseye-0.1.0/studio_assets/op_help/height_width_ratio.html +22 -0
  839. fullseye-0.1.0/studio_assets/op_help/highpass.html +23 -0
  840. fullseye-0.1.0/studio_assets/op_help/highpass_image.html +22 -0
  841. fullseye-0.1.0/studio_assets/op_help/hough_circle_trans.html +22 -0
  842. fullseye-0.1.0/studio_assets/op_help/hough_line_trans.html +22 -0
  843. fullseye-0.1.0/studio_assets/op_help/hx_add_noise_contour.html +22 -0
  844. fullseye-0.1.0/studio_assets/op_help/hx_char_threshold.html +22 -0
  845. fullseye-0.1.0/studio_assets/op_help/hx_clip_contours.html +22 -0
  846. fullseye-0.1.0/studio_assets/op_help/hx_clip_end_points.html +22 -0
  847. fullseye-0.1.0/studio_assets/op_help/hx_clip_region_rel.html +22 -0
  848. fullseye-0.1.0/studio_assets/op_help/hx_close_edges.html +22 -0
  849. fullseye-0.1.0/studio_assets/op_help/hx_close_edges_length.html +22 -0
  850. fullseye-0.1.0/studio_assets/op_help/hx_closing.html +22 -0
  851. fullseye-0.1.0/studio_assets/op_help/hx_cooc_feature.html +22 -0
  852. fullseye-0.1.0/studio_assets/op_help/hx_crop_contours.html +22 -0
  853. fullseye-0.1.0/studio_assets/op_help/hx_detect_edge_segments.html +22 -0
  854. fullseye-0.1.0/studio_assets/op_help/hx_dilation1.html +22 -0
  855. fullseye-0.1.0/studio_assets/op_help/hx_dilation2.html +22 -0
  856. fullseye-0.1.0/studio_assets/op_help/hx_disparity_to_xyz.html +22 -0
  857. fullseye-0.1.0/studio_assets/op_help/hx_dist_ellipse_contour.html +22 -0
  858. fullseye-0.1.0/studio_assets/op_help/hx_dist_ellipse_points.html +22 -0
  859. fullseye-0.1.0/studio_assets/op_help/hx_dist_rect2_points.html +22 -0
  860. fullseye-0.1.0/studio_assets/op_help/hx_distance_pc.html +22 -0
  861. fullseye-0.1.0/studio_assets/op_help/hx_distance_pr.html +22 -0
  862. fullseye-0.1.0/studio_assets/op_help/hx_distance_sc.html +22 -0
  863. fullseye-0.1.0/studio_assets/op_help/hx_erosion1.html +22 -0
  864. fullseye-0.1.0/studio_assets/op_help/hx_estimate_al_am.html +22 -0
  865. fullseye-0.1.0/studio_assets/op_help/hx_estimate_sl_al_lr.html +22 -0
  866. fullseye-0.1.0/studio_assets/op_help/hx_estimate_sl_al_zc.html +22 -0
  867. fullseye-0.1.0/studio_assets/op_help/hx_estimate_tilt_lr.html +22 -0
  868. fullseye-0.1.0/studio_assets/op_help/hx_estimate_tilt_zc.html +22 -0
  869. fullseye-0.1.0/studio_assets/op_help/hx_expand_region.html +22 -0
  870. fullseye-0.1.0/studio_assets/op_help/hx_fill_interlace.html +22 -0
  871. fullseye-0.1.0/studio_assets/op_help/hx_fit_circle_contour.html +22 -0
  872. fullseye-0.1.0/studio_assets/op_help/hx_fit_ellipse_contour.html +22 -0
  873. fullseye-0.1.0/studio_assets/op_help/hx_fit_rectangle2_contour.html +22 -0
  874. fullseye-0.1.0/studio_assets/op_help/hx_fit_surface1.html +22 -0
  875. fullseye-0.1.0/studio_assets/op_help/hx_fit_surface2.html +22 -0
  876. fullseye-0.1.0/studio_assets/op_help/hx_full_domain.html +22 -0
  877. fullseye-0.1.0/studio_assets/op_help/hx_fuzzy_measure_pairs.html +24 -0
  878. fullseye-0.1.0/studio_assets/op_help/hx_gabor.html +22 -0
  879. fullseye-0.1.0/studio_assets/op_help/hx_gen_bandfilter.html +22 -0
  880. fullseye-0.1.0/studio_assets/op_help/hx_gen_bandpass.html +22 -0
  881. fullseye-0.1.0/studio_assets/op_help/hx_gen_checker_region.html +22 -0
  882. fullseye-0.1.0/studio_assets/op_help/hx_gen_circle.html +22 -0
  883. fullseye-0.1.0/studio_assets/op_help/hx_gen_circle_sector.html +22 -0
  884. fullseye-0.1.0/studio_assets/op_help/hx_gen_derivative_filter.html +22 -0
  885. fullseye-0.1.0/studio_assets/op_help/hx_gen_disc_se.html +22 -0
  886. fullseye-0.1.0/studio_assets/op_help/hx_gen_ellipse.html +22 -0
  887. fullseye-0.1.0/studio_assets/op_help/hx_gen_ellipse_sector.html +22 -0
  888. fullseye-0.1.0/studio_assets/op_help/hx_gen_empty_region.html +22 -0
  889. fullseye-0.1.0/studio_assets/op_help/hx_gen_grid_region.html +22 -0
  890. fullseye-0.1.0/studio_assets/op_help/hx_gen_highpass.html +22 -0
  891. fullseye-0.1.0/studio_assets/op_help/hx_gen_image_proto.html +22 -0
  892. fullseye-0.1.0/studio_assets/op_help/hx_gen_lowpass.html +22 -0
  893. fullseye-0.1.0/studio_assets/op_help/hx_gen_parallel_contour.html +22 -0
  894. fullseye-0.1.0/studio_assets/op_help/hx_gen_rectangle2.html +22 -0
  895. fullseye-0.1.0/studio_assets/op_help/hx_get_domain.html +22 -0
  896. fullseye-0.1.0/studio_assets/op_help/hx_histo_to_thresh.html +22 -0
  897. fullseye-0.1.0/studio_assets/op_help/hx_lowlands.html +22 -0
  898. fullseye-0.1.0/studio_assets/op_help/hx_mean_shape.html +22 -0
  899. fullseye-0.1.0/studio_assets/op_help/hx_moments_any_xld.html +22 -0
  900. fullseye-0.1.0/studio_assets/op_help/hx_move_region.html +25 -0
  901. fullseye-0.1.0/studio_assets/op_help/hx_nonmax_dir.html +22 -0
  902. fullseye-0.1.0/studio_assets/op_help/hx_opening.html +22 -0
  903. fullseye-0.1.0/studio_assets/op_help/hx_plane_deviation.html +22 -0
  904. fullseye-0.1.0/studio_assets/op_help/hx_plateaus_center.html +22 -0
  905. fullseye-0.1.0/studio_assets/op_help/hx_polar_trans_inv.html +22 -0
  906. fullseye-0.1.0/studio_assets/op_help/hx_radial_distort_contour.html +22 -0
  907. fullseye-0.1.0/studio_assets/op_help/hx_rectangle1_domain.html +22 -0
  908. fullseye-0.1.0/studio_assets/op_help/hx_region_to_label.html +22 -0
  909. fullseye-0.1.0/studio_assets/op_help/hx_region_to_mean.html +22 -0
  910. fullseye-0.1.0/studio_assets/op_help/hx_regress_contours.html +22 -0
  911. fullseye-0.1.0/studio_assets/op_help/hx_select_xld_point.html +22 -0
  912. fullseye-0.1.0/studio_assets/op_help/hx_shade_height_field.html +22 -0
  913. fullseye-0.1.0/studio_assets/op_help/hx_smallest_circle_xld.html +22 -0
  914. fullseye-0.1.0/studio_assets/op_help/hx_smallest_rect1_xld.html +22 -0
  915. fullseye-0.1.0/studio_assets/op_help/hx_smallest_rect2_xld.html +22 -0
  916. fullseye-0.1.0/studio_assets/op_help/hx_sort_contours.html +22 -0
  917. fullseye-0.1.0/studio_assets/op_help/hx_split_contours.html +22 -0
  918. fullseye-0.1.0/studio_assets/op_help/hx_split_skeleton_region.html +22 -0
  919. fullseye-0.1.0/studio_assets/op_help/hx_test_closed_xld.html +22 -0
  920. fullseye-0.1.0/studio_assets/op_help/hx_test_region_point.html +22 -0
  921. fullseye-0.1.0/studio_assets/op_help/hx_test_region_points.html +22 -0
  922. fullseye-0.1.0/studio_assets/op_help/hx_test_self_intersect.html +22 -0
  923. fullseye-0.1.0/studio_assets/op_help/hx_union_adjacent.html +22 -0
  924. fullseye-0.1.0/studio_assets/op_help/hysteresis_threshold.html +22 -0
  925. fullseye-0.1.0/studio_assets/op_help/identity.html +19 -0
  926. fullseye-0.1.0/studio_assets/op_help/illuminate.html +22 -0
  927. fullseye-0.1.0/studio_assets/op_help/intensity.html +22 -0
  928. fullseye-0.1.0/studio_assets/op_help/invert.html +22 -0
  929. fullseye-0.1.0/studio_assets/op_help/invert_image.html +22 -0
  930. fullseye-0.1.0/studio_assets/op_help/invert_region.html +22 -0
  931. fullseye-0.1.0/studio_assets/op_help/isotropic_diffusion.html +22 -0
  932. fullseye-0.1.0/studio_assets/op_help/it_add_image_border.html +22 -0
  933. fullseye-0.1.0/studio_assets/op_help/it_bit_lshift.html +22 -0
  934. fullseye-0.1.0/studio_assets/op_help/it_bit_mask.html +22 -0
  935. fullseye-0.1.0/studio_assets/op_help/it_bit_rshift.html +22 -0
  936. fullseye-0.1.0/studio_assets/op_help/it_change_format.html +22 -0
  937. fullseye-0.1.0/studio_assets/op_help/it_convert_image_type.html +22 -0
  938. fullseye-0.1.0/studio_assets/op_help/it_crop_domain.html +22 -0
  939. fullseye-0.1.0/studio_assets/op_help/it_crop_part.html +22 -0
  940. fullseye-0.1.0/studio_assets/op_help/it_crop_rectangle1.html +22 -0
  941. fullseye-0.1.0/studio_assets/op_help/it_full_domain.html +21 -0
  942. fullseye-0.1.0/studio_assets/op_help/it_region_to_bin.html +22 -0
  943. fullseye-0.1.0/studio_assets/op_help/iv_backproject_superres.html +21 -0
  944. fullseye-0.1.0/studio_assets/op_help/iv_gradient_inpaint.html +21 -0
  945. fullseye-0.1.0/studio_assets/op_help/iv_motion_deblur.html +21 -0
  946. fullseye-0.1.0/studio_assets/op_help/iv_richardson_lucy.html +21 -0
  947. fullseye-0.1.0/studio_assets/op_help/iv_unsharp_deblur.html +21 -0
  948. fullseye-0.1.0/studio_assets/op_help/iv_wiener_deconv_spatial.html +21 -0
  949. fullseye-0.1.0/studio_assets/op_help/junctions_skeleton.html +22 -0
  950. fullseye-0.1.0/studio_assets/op_help/kirsch_amp.html +22 -0
  951. fullseye-0.1.0/studio_assets/op_help/kirsch_dir.html +22 -0
  952. fullseye-0.1.0/studio_assets/op_help/laplace.html +23 -0
  953. fullseye-0.1.0/studio_assets/op_help/laplace_of_gauss.html +22 -0
  954. fullseye-0.1.0/studio_assets/op_help/length_xld.html +22 -0
  955. fullseye-0.1.0/studio_assets/op_help/linear_trans_color.html +22 -0
  956. fullseye-0.1.0/studio_assets/op_help/lines_color.html +22 -0
  957. fullseye-0.1.0/studio_assets/op_help/lines_facet.html +22 -0
  958. fullseye-0.1.0/studio_assets/op_help/lines_gauss.html +22 -0
  959. fullseye-0.1.0/studio_assets/op_help/local_max.html +23 -0
  960. fullseye-0.1.0/studio_assets/op_help/local_min.html +22 -0
  961. fullseye-0.1.0/studio_assets/op_help/local_threshold.html +22 -0
  962. fullseye-0.1.0/studio_assets/op_help/log.html +22 -0
  963. fullseye-0.1.0/studio_assets/op_help/log_image.html +22 -0
  964. fullseye-0.1.0/studio_assets/op_help/lowpass.html +22 -0
  965. fullseye-0.1.0/studio_assets/op_help/m1_fuzzy_measure_pos.html +22 -0
  966. fullseye-0.1.0/studio_assets/op_help/m1_measure_pairs.html +22 -0
  967. fullseye-0.1.0/studio_assets/op_help/m1_measure_pos.html +22 -0
  968. fullseye-0.1.0/studio_assets/op_help/m1_measure_projection.html +22 -0
  969. fullseye-0.1.0/studio_assets/op_help/m1_measure_thresh.html +22 -0
  970. fullseye-0.1.0/studio_assets/op_help/macro_binarize.html +21 -0
  971. fullseye-0.1.0/studio_assets/op_help/macro_denoise.html +22 -0
  972. fullseye-0.1.0/studio_assets/op_help/macro_edge.html +21 -0
  973. fullseye-0.1.0/studio_assets/op_help/macro_vol_denoise.html +21 -0
  974. fullseye-0.1.0/studio_assets/op_help/max_filter.html +22 -0
  975. fullseye-0.1.0/studio_assets/op_help/mean_box.html +22 -0
  976. fullseye-0.1.0/studio_assets/op_help/mean_curvature_flow.html +22 -0
  977. fullseye-0.1.0/studio_assets/op_help/mean_image.html +22 -0
  978. fullseye-0.1.0/studio_assets/op_help/mean_sp.html +22 -0
  979. fullseye-0.1.0/studio_assets/op_help/median.html +25 -0
  980. fullseye-0.1.0/studio_assets/op_help/median_image.html +22 -0
  981. fullseye-0.1.0/studio_assets/op_help/median_rect.html +22 -0
  982. fullseye-0.1.0/studio_assets/op_help/median_separate.html +22 -0
  983. fullseye-0.1.0/studio_assets/op_help/median_weighted.html +22 -0
  984. fullseye-0.1.0/studio_assets/op_help/min_filter.html +22 -0
  985. fullseye-0.1.0/studio_assets/op_help/min_max_gray.html +22 -0
  986. fullseye-0.1.0/studio_assets/op_help/mirror_image.html +22 -0
  987. fullseye-0.1.0/studio_assets/op_help/mirror_region.html +22 -0
  988. fullseye-0.1.0/studio_assets/op_help/moments_region_2nd.html +22 -0
  989. fullseye-0.1.0/studio_assets/op_help/moments_region_2nd_invar.html +22 -0
  990. fullseye-0.1.0/studio_assets/op_help/moments_region_2nd_rel_invar.html +22 -0
  991. fullseye-0.1.0/studio_assets/op_help/moments_region_3rd.html +22 -0
  992. fullseye-0.1.0/studio_assets/op_help/moments_region_3rd_invar.html +22 -0
  993. fullseye-0.1.0/studio_assets/op_help/moments_region_central.html +22 -0
  994. fullseye-0.1.0/studio_assets/op_help/moments_region_central_invar.html +22 -0
  995. fullseye-0.1.0/studio_assets/op_help/moments_xld.html +22 -0
  996. fullseye-0.1.0/studio_assets/op_help/monotony.html +22 -0
  997. fullseye-0.1.0/studio_assets/op_help/morph_grad.html +22 -0
  998. fullseye-0.1.0/studio_assets/op_help/morph_skeleton.html +22 -0
  999. fullseye-0.1.0/studio_assets/op_help/ncc_locate.html +22 -0
  1000. fullseye-0.1.0/studio_assets/op_help/nonmax_suppression_amp.html +22 -0
  1001. fullseye-0.1.0/studio_assets/op_help/opening_circle.html +22 -0
  1002. fullseye-0.1.0/studio_assets/op_help/opening_golay.html +22 -0
  1003. fullseye-0.1.0/studio_assets/op_help/opening_rectangle1.html +22 -0
  1004. fullseye-0.1.0/studio_assets/op_help/orientation_region.html +22 -0
  1005. fullseye-0.1.0/studio_assets/op_help/orientation_xld.html +22 -0
  1006. fullseye-0.1.0/studio_assets/op_help/otsu.html +36 -0
  1007. fullseye-0.1.0/studio_assets/op_help/percentile.html +22 -0
  1008. fullseye-0.1.0/studio_assets/op_help/ph_coherence_enhancing_diffusion.html +21 -0
  1009. fullseye-0.1.0/studio_assets/op_help/ph_heat_flow.html +21 -0
  1010. fullseye-0.1.0/studio_assets/op_help/ph_mean_curvature_motion.html +21 -0
  1011. fullseye-0.1.0/studio_assets/op_help/ph_perona_malik.html +21 -0
  1012. fullseye-0.1.0/studio_assets/op_help/ph_reaction_diffusion.html +21 -0
  1013. fullseye-0.1.0/studio_assets/op_help/ph_total_variation_flow.html +21 -0
  1014. fullseye-0.1.0/studio_assets/op_help/phase_deg.html +22 -0
  1015. fullseye-0.1.0/studio_assets/op_help/phase_rad.html +22 -0
  1016. fullseye-0.1.0/studio_assets/op_help/points_foerstner.html +22 -0
  1017. fullseye-0.1.0/studio_assets/op_help/points_harris_binomial.html +22 -0
  1018. fullseye-0.1.0/studio_assets/op_help/polar_trans_contour_xld.html +22 -0
  1019. fullseye-0.1.0/studio_assets/op_help/polar_trans_image.html +22 -0
  1020. fullseye-0.1.0/studio_assets/op_help/polar_trans_image_ext.html +22 -0
  1021. fullseye-0.1.0/studio_assets/op_help/polar_trans_image_inv.html +22 -0
  1022. fullseye-0.1.0/studio_assets/op_help/polar_trans_region_inv.html +22 -0
  1023. fullseye-0.1.0/studio_assets/op_help/pouring.html +22 -0
  1024. fullseye-0.1.0/studio_assets/op_help/pow_image.html +22 -0
  1025. fullseye-0.1.0/studio_assets/op_help/power_byte.html +22 -0
  1026. fullseye-0.1.0/studio_assets/op_help/power_ln.html +22 -0
  1027. fullseye-0.1.0/studio_assets/op_help/power_real.html +22 -0
  1028. fullseye-0.1.0/studio_assets/op_help/prewitt_amp.html +22 -0
  1029. fullseye-0.1.0/studio_assets/op_help/prewitt_dir.html +22 -0
  1030. fullseye-0.1.0/studio_assets/op_help/prewitt_mag.html +22 -0
  1031. fullseye-0.1.0/studio_assets/op_help/principal_comp.html +22 -0
  1032. fullseye-0.1.0/studio_assets/op_help/projective_trans_contour_xld.html +22 -0
  1033. fullseye-0.1.0/studio_assets/op_help/projective_trans_image.html +22 -0
  1034. fullseye-0.1.0/studio_assets/op_help/projective_trans_image_size.html +22 -0
  1035. fullseye-0.1.0/studio_assets/op_help/projective_trans_region.html +22 -0
  1036. fullseye-0.1.0/studio_assets/op_help/pruning.html +22 -0
  1037. fullseye-0.1.0/studio_assets/op_help/r2_inner_circle.html +22 -0
  1038. fullseye-0.1.0/studio_assets/op_help/r2_inner_rectangle1.html +22 -0
  1039. fullseye-0.1.0/studio_assets/op_help/r2_partition_rectangle.html +22 -0
  1040. fullseye-0.1.0/studio_assets/op_help/r2_runlength_features.html +22 -0
  1041. fullseye-0.1.0/studio_assets/op_help/r2_smallest_circle.html +22 -0
  1042. fullseye-0.1.0/studio_assets/op_help/r2_smallest_rectangle1.html +21 -0
  1043. fullseye-0.1.0/studio_assets/op_help/r2_smallest_rectangle2.html +22 -0
  1044. fullseye-0.1.0/studio_assets/op_help/r2_sort_region.html +22 -0
  1045. fullseye-0.1.0/studio_assets/op_help/r2_split_skeleton_lines.html +23 -0
  1046. fullseye-0.1.0/studio_assets/op_help/r2_union1.html +22 -0
  1047. fullseye-0.1.0/studio_assets/op_help/r3_background_seg.html +22 -0
  1048. fullseye-0.1.0/studio_assets/op_help/r3_clip_region.html +22 -0
  1049. fullseye-0.1.0/studio_assets/op_help/r3_eliminate_runs.html +22 -0
  1050. fullseye-0.1.0/studio_assets/op_help/r3_label_to_region.html +22 -0
  1051. fullseye-0.1.0/studio_assets/op_help/r3_partition_dynamic.html +22 -0
  1052. fullseye-0.1.0/studio_assets/op_help/r3_polar_trans_region.html +22 -0
  1053. fullseye-0.1.0/studio_assets/op_help/r3_rank_region.html +22 -0
  1054. fullseye-0.1.0/studio_assets/op_help/r3_region_features.html +22 -0
  1055. fullseye-0.1.0/studio_assets/op_help/r3_runlength_distribution.html +22 -0
  1056. fullseye-0.1.0/studio_assets/op_help/r3_select_region_point.html +22 -0
  1057. fullseye-0.1.0/studio_assets/op_help/rank_image.html +22 -0
  1058. fullseye-0.1.0/studio_assets/op_help/rank_rect.html +22 -0
  1059. fullseye-0.1.0/studio_assets/op_help/rectangularity.html +22 -0
  1060. fullseye-0.1.0/studio_assets/op_help/rectangularity_xld.html +22 -0
  1061. fullseye-0.1.0/studio_assets/op_help/reg_close.html +22 -0
  1062. fullseye-0.1.0/studio_assets/op_help/reg_dilate.html +22 -0
  1063. fullseye-0.1.0/studio_assets/op_help/reg_erode.html +22 -0
  1064. fullseye-0.1.0/studio_assets/op_help/reg_open.html +22 -0
  1065. fullseye-0.1.0/studio_assets/op_help/region_boundary.html +22 -0
  1066. fullseye-0.1.0/studio_assets/op_help/regiongrowing.html +22 -0
  1067. fullseye-0.1.0/studio_assets/op_help/regiongrowing_mean.html +22 -0
  1068. fullseye-0.1.0/studio_assets/op_help/remove_noise_region.html +22 -0
  1069. fullseye-0.1.0/studio_assets/op_help/remove_small.html +23 -0
  1070. fullseye-0.1.0/studio_assets/op_help/rescale_img.html +22 -0
  1071. fullseye-0.1.0/studio_assets/op_help/rft_generic.html +22 -0
  1072. fullseye-0.1.0/studio_assets/op_help/rgb1_to_gray.html +22 -0
  1073. fullseye-0.1.0/studio_assets/op_help/rgb3_to_gray.html +22 -0
  1074. fullseye-0.1.0/studio_assets/op_help/roberts.html +22 -0
  1075. fullseye-0.1.0/studio_assets/op_help/roberts_mag.html +22 -0
  1076. fullseye-0.1.0/studio_assets/op_help/robinson_amp.html +22 -0
  1077. fullseye-0.1.0/studio_assets/op_help/robinson_dir.html +22 -0
  1078. fullseye-0.1.0/studio_assets/op_help/rotate_image.html +22 -0
  1079. fullseye-0.1.0/studio_assets/op_help/rotate_img.html +22 -0
  1080. fullseye-0.1.0/studio_assets/op_help/roundness.html +22 -0
  1081. fullseye-0.1.0/studio_assets/op_help/scale_clip.html +22 -0
  1082. fullseye-0.1.0/studio_assets/op_help/scale_image.html +22 -0
  1083. fullseye-0.1.0/studio_assets/op_help/scale_image_max.html +22 -0
  1084. fullseye-0.1.0/studio_assets/op_help/segment_image_mser.html +22 -0
  1085. fullseye-0.1.0/studio_assets/op_help/select_contours.html +23 -0
  1086. fullseye-0.1.0/studio_assets/op_help/select_contours_xld.html +22 -0
  1087. fullseye-0.1.0/studio_assets/op_help/select_largest.html +22 -0
  1088. fullseye-0.1.0/studio_assets/op_help/select_shape.html +22 -0
  1089. fullseye-0.1.0/studio_assets/op_help/select_shape_std.html +22 -0
  1090. fullseye-0.1.0/studio_assets/op_help/select_shape_xld.html +22 -0
  1091. fullseye-0.1.0/studio_assets/op_help/sg_felzenszwalb.html +21 -0
  1092. fullseye-0.1.0/studio_assets/op_help/sg_gmm_segment.html +21 -0
  1093. fullseye-0.1.0/studio_assets/op_help/sg_kmeans_intensity.html +21 -0
  1094. fullseye-0.1.0/studio_assets/op_help/sg_normalized_cut_2.html +21 -0
  1095. fullseye-0.1.0/studio_assets/op_help/sg_region_growing_seeded.html +21 -0
  1096. fullseye-0.1.0/studio_assets/op_help/sg_slic_superpixels.html +21 -0
  1097. fullseye-0.1.0/studio_assets/op_help/sg_watershed_gradient.html +21 -0
  1098. fullseye-0.1.0/studio_assets/op_help/shape_locate.html +22 -0
  1099. fullseye-0.1.0/studio_assets/op_help/shape_trans.html +22 -0
  1100. fullseye-0.1.0/studio_assets/op_help/shape_trans_xld.html +22 -0
  1101. fullseye-0.1.0/studio_assets/op_help/sigma_image.html +22 -0
  1102. fullseye-0.1.0/studio_assets/op_help/sigmoid.html +22 -0
  1103. fullseye-0.1.0/studio_assets/op_help/simulate_defocus.html +22 -0
  1104. fullseye-0.1.0/studio_assets/op_help/simulate_motion.html +22 -0
  1105. fullseye-0.1.0/studio_assets/op_help/sin_image.html +22 -0
  1106. fullseye-0.1.0/studio_assets/op_help/sk_adapthist.html +21 -0
  1107. fullseye-0.1.0/studio_assets/op_help/sk_adjust_log.html +22 -0
  1108. fullseye-0.1.0/studio_assets/op_help/sk_area_opening.html +21 -0
  1109. fullseye-0.1.0/studio_assets/op_help/sk_autolevel.html +22 -0
  1110. fullseye-0.1.0/studio_assets/op_help/sk_blur_effect.html +21 -0
  1111. fullseye-0.1.0/studio_assets/op_help/sk_butterworth.html +21 -0
  1112. fullseye-0.1.0/studio_assets/op_help/sk_canny.html +22 -0
  1113. fullseye-0.1.0/studio_assets/op_help/sk_chan_vese.html +21 -0
  1114. fullseye-0.1.0/studio_assets/op_help/sk_clear_border.html +21 -0
  1115. fullseye-0.1.0/studio_assets/op_help/sk_convex.html +22 -0
  1116. fullseye-0.1.0/studio_assets/op_help/sk_corner_harris.html +22 -0
  1117. fullseye-0.1.0/studio_assets/op_help/sk_dog.html +22 -0
  1118. fullseye-0.1.0/studio_assets/op_help/sk_enhance_contrast.html +21 -0
  1119. fullseye-0.1.0/studio_assets/op_help/sk_entropy.html +22 -0
  1120. fullseye-0.1.0/studio_assets/op_help/sk_entropy_feat.html +22 -0
  1121. fullseye-0.1.0/studio_assets/op_help/sk_euler.html +22 -0
  1122. fullseye-0.1.0/studio_assets/op_help/sk_farid.html +22 -0
  1123. fullseye-0.1.0/studio_assets/op_help/sk_felzenszwalb.html +21 -0
  1124. fullseye-0.1.0/studio_assets/op_help/sk_find_boundaries.html +22 -0
  1125. fullseye-0.1.0/studio_assets/op_help/sk_find_contours.html +21 -0
  1126. fullseye-0.1.0/studio_assets/op_help/sk_frangi.html +22 -0
  1127. fullseye-0.1.0/studio_assets/op_help/sk_gabor.html +22 -0
  1128. fullseye-0.1.0/studio_assets/op_help/sk_hessian.html +22 -0
  1129. fullseye-0.1.0/studio_assets/op_help/sk_hessian_det.html +21 -0
  1130. fullseye-0.1.0/studio_assets/op_help/sk_hysteresis.html +22 -0
  1131. fullseye-0.1.0/studio_assets/op_help/sk_lbp.html +21 -0
  1132. fullseye-0.1.0/studio_assets/op_help/sk_li.html +22 -0
  1133. fullseye-0.1.0/studio_assets/op_help/sk_local_maxima.html +22 -0
  1134. fullseye-0.1.0/studio_assets/op_help/sk_medial.html +22 -0
  1135. fullseye-0.1.0/studio_assets/op_help/sk_median_disk.html +22 -0
  1136. fullseye-0.1.0/studio_assets/op_help/sk_meijering.html +22 -0
  1137. fullseye-0.1.0/studio_assets/op_help/sk_niblack.html +22 -0
  1138. fullseye-0.1.0/studio_assets/op_help/sk_nlm.html +21 -0
  1139. fullseye-0.1.0/studio_assets/op_help/sk_otsu.html +22 -0
  1140. fullseye-0.1.0/studio_assets/op_help/sk_remove_holes.html +22 -0
  1141. fullseye-0.1.0/studio_assets/op_help/sk_rolling_ball.html +21 -0
  1142. fullseye-0.1.0/studio_assets/op_help/sk_sauvola.html +22 -0
  1143. fullseye-0.1.0/studio_assets/op_help/sk_scharr.html +22 -0
  1144. fullseye-0.1.0/studio_assets/op_help/sk_shape_index.html +21 -0
  1145. fullseye-0.1.0/studio_assets/op_help/sk_skeleton.html +22 -0
  1146. fullseye-0.1.0/studio_assets/op_help/sk_slic.html +21 -0
  1147. fullseye-0.1.0/studio_assets/op_help/sk_swirl.html +22 -0
  1148. fullseye-0.1.0/studio_assets/op_help/sk_thin.html +22 -0
  1149. fullseye-0.1.0/studio_assets/op_help/sk_tv.html +21 -0
  1150. fullseye-0.1.0/studio_assets/op_help/sk_tv_bregman.html +21 -0
  1151. fullseye-0.1.0/studio_assets/op_help/sk_wavelet.html +21 -0
  1152. fullseye-0.1.0/studio_assets/op_help/sk_yen.html +22 -0
  1153. fullseye-0.1.0/studio_assets/op_help/skeleton.html +22 -0
  1154. fullseye-0.1.0/studio_assets/op_help/smallest_rectangle1.html +22 -0
  1155. fullseye-0.1.0/studio_assets/op_help/smooth_contours.html +22 -0
  1156. fullseye-0.1.0/studio_assets/op_help/smooth_contours_xld.html +22 -0
  1157. fullseye-0.1.0/studio_assets/op_help/smooth_image.html +22 -0
  1158. fullseye-0.1.0/studio_assets/op_help/sobel_amp.html +22 -0
  1159. fullseye-0.1.0/studio_assets/op_help/sobel_dir.html +22 -0
  1160. fullseye-0.1.0/studio_assets/op_help/sobel_mag.html +33 -0
  1161. fullseye-0.1.0/studio_assets/op_help/sp_critical_points_sub_pix.html +22 -0
  1162. fullseye-0.1.0/studio_assets/op_help/sp_local_max_sub_pix.html +21 -0
  1163. fullseye-0.1.0/studio_assets/op_help/sp_local_min_sub_pix.html +22 -0
  1164. fullseye-0.1.0/studio_assets/op_help/sp_lowlands_center.html +22 -0
  1165. fullseye-0.1.0/studio_assets/op_help/sp_plateaus.html +22 -0
  1166. fullseye-0.1.0/studio_assets/op_help/sp_saddle_points_sub_pix.html +22 -0
  1167. fullseye-0.1.0/studio_assets/op_help/sqrt_image.html +22 -0
  1168. fullseye-0.1.0/studio_assets/op_help/std_filter.html +22 -0
  1169. fullseye-0.1.0/studio_assets/op_help/tac_contact_mask.html +18 -0
  1170. fullseye-0.1.0/studio_assets/op_help/tac_height_from_shading.html +18 -0
  1171. fullseye-0.1.0/studio_assets/op_help/tac_pressure_proxy.html +18 -0
  1172. fullseye-0.1.0/studio_assets/op_help/tac_shear_field.html +18 -0
  1173. fullseye-0.1.0/studio_assets/op_help/tac_surface_normal.html +18 -0
  1174. fullseye-0.1.0/studio_assets/op_help/tan_image.html +22 -0
  1175. fullseye-0.1.0/studio_assets/op_help/texture_laws.html +22 -0
  1176. fullseye-0.1.0/studio_assets/op_help/tf_census_transform.html +21 -0
  1177. fullseye-0.1.0/studio_assets/op_help/tf_gradient_domain_reintegrate.html +21 -0
  1178. fullseye-0.1.0/studio_assets/op_help/tf_log_polar.html +21 -0
  1179. fullseye-0.1.0/studio_assets/op_help/tf_phase_congruency.html +21 -0
  1180. fullseye-0.1.0/studio_assets/op_help/tf_radon_sinogram.html +21 -0
  1181. fullseye-0.1.0/studio_assets/op_help/tf_rank_transform.html +21 -0
  1182. fullseye-0.1.0/studio_assets/op_help/tf_steerable_filter.html +21 -0
  1183. fullseye-0.1.0/studio_assets/op_help/thinning.html +22 -0
  1184. fullseye-0.1.0/studio_assets/op_help/thinning_golay.html +22 -0
  1185. fullseye-0.1.0/studio_assets/op_help/thinning_seq.html +22 -0
  1186. fullseye-0.1.0/studio_assets/op_help/threshold.html +22 -0
  1187. fullseye-0.1.0/studio_assets/op_help/threshold_sub_pix.html +22 -0
  1188. fullseye-0.1.0/studio_assets/op_help/tm_backproject_unfiltered.html +21 -0
  1189. fullseye-0.1.0/studio_assets/op_help/tm_fbp_reconstruct.html +21 -0
  1190. fullseye-0.1.0/studio_assets/op_help/tm_radon_forward.html +21 -0
  1191. fullseye-0.1.0/studio_assets/op_help/tm_sart_reconstruct.html +21 -0
  1192. fullseye-0.1.0/studio_assets/op_help/tm_sinogram_denoise.html +21 -0
  1193. fullseye-0.1.0/studio_assets/op_help/tophat.html +22 -0
  1194. fullseye-0.1.0/studio_assets/op_help/total_length.html +22 -0
  1195. fullseye-0.1.0/studio_assets/op_help/trans_from_rgb.html +22 -0
  1196. fullseye-0.1.0/studio_assets/op_help/trans_to_rgb.html +22 -0
  1197. fullseye-0.1.0/studio_assets/op_help/transpose_region.html +22 -0
  1198. fullseye-0.1.0/studio_assets/op_help/trimmed_mean.html +22 -0
  1199. fullseye-0.1.0/studio_assets/op_help/unsharp.html +22 -0
  1200. fullseye-0.1.0/studio_assets/op_help/var_threshold.html +22 -0
  1201. fullseye-0.1.0/studio_assets/op_help/vol_count.html +21 -0
  1202. fullseye-0.1.0/studio_assets/op_help/vol_dilate.html +21 -0
  1203. fullseye-0.1.0/studio_assets/op_help/vol_erode.html +21 -0
  1204. fullseye-0.1.0/studio_assets/op_help/vol_gaussian.html +21 -0
  1205. fullseye-0.1.0/studio_assets/op_help/vol_median.html +21 -0
  1206. fullseye-0.1.0/studio_assets/op_help/vol_mip.html +21 -0
  1207. fullseye-0.1.0/studio_assets/op_help/vol_slice.html +21 -0
  1208. fullseye-0.1.0/studio_assets/op_help/vol_threshold.html +21 -0
  1209. fullseye-0.1.0/studio_assets/op_help/watersheds.html +22 -0
  1210. fullseye-0.1.0/studio_assets/op_help/watersheds_threshold.html +22 -0
  1211. fullseye-0.1.0/studio_assets/op_help/xcv2_fast_count.html +21 -0
  1212. fullseye-0.1.0/studio_assets/op_help/xcv2_hitmiss.html +21 -0
  1213. fullseye-0.1.0/studio_assets/op_help/xcv2_lap_var.html +21 -0
  1214. fullseye-0.1.0/studio_assets/op_help/xcv2_meanshift.html +21 -0
  1215. fullseye-0.1.0/studio_assets/op_help/xcv2_warp_logpolar.html +21 -0
  1216. fullseye-0.1.0/studio_assets/op_help/xcv3_agast_count.html +21 -0
  1217. fullseye-0.1.0/studio_assets/op_help/xcv3_brisk_count.html +21 -0
  1218. fullseye-0.1.0/studio_assets/op_help/xcv3_denoise_tvl1.html +21 -0
  1219. fullseye-0.1.0/studio_assets/op_help/xcv3_gray_hu1.html +21 -0
  1220. fullseye-0.1.0/studio_assets/op_help/xcv3_inpaint_ns.html +21 -0
  1221. fullseye-0.1.0/studio_assets/op_help/xcv3_lsd_count.html +21 -0
  1222. fullseye-0.1.0/studio_assets/op_help/xcv3_pyr_laplacian.html +21 -0
  1223. fullseye-0.1.0/studio_assets/op_help/xcv3_sift_count.html +21 -0
  1224. fullseye-0.1.0/studio_assets/op_help/xcv_detail_enhance.html +21 -0
  1225. fullseye-0.1.0/studio_assets/op_help/xcv_edge_preserving.html +21 -0
  1226. fullseye-0.1.0/studio_assets/op_help/xcv_grabcut.html +21 -0
  1227. fullseye-0.1.0/studio_assets/op_help/xcv_inpaint.html +21 -0
  1228. fullseye-0.1.0/studio_assets/op_help/xcv_orb_count.html +21 -0
  1229. fullseye-0.1.0/studio_assets/op_help/xcv_pencil_sketch.html +21 -0
  1230. fullseye-0.1.0/studio_assets/op_help/xcv_stylization.html +21 -0
  1231. fullseye-0.1.0/studio_assets/op_help/xcv_watershed_markers.html +22 -0
  1232. fullseye-0.1.0/studio_assets/op_help/xg_area_center.html +22 -0
  1233. fullseye-0.1.0/studio_assets/op_help/xg_clip_contours.html +21 -0
  1234. fullseye-0.1.0/studio_assets/op_help/xg_crop_contours.html +21 -0
  1235. fullseye-0.1.0/studio_assets/op_help/xg_eccentricity.html +22 -0
  1236. fullseye-0.1.0/studio_assets/op_help/xg_elliptic_axis.html +22 -0
  1237. fullseye-0.1.0/studio_assets/op_help/xg_gen_polygons.html +22 -0
  1238. fullseye-0.1.0/studio_assets/op_help/xg_height_width_ratio.html +22 -0
  1239. fullseye-0.1.0/studio_assets/op_help/xg_moments.html +25 -0
  1240. fullseye-0.1.0/studio_assets/op_help/xg_orientation.html +25 -0
  1241. fullseye-0.1.0/studio_assets/op_help/xg_regress_contours.html +24 -0
  1242. fullseye-0.1.0/studio_assets/op_help/xkor_bilateral.html +21 -0
  1243. fullseye-0.1.0/studio_assets/op_help/xkor_canny.html +21 -0
  1244. fullseye-0.1.0/studio_assets/op_help/xkor_clahe.html +21 -0
  1245. fullseye-0.1.0/studio_assets/op_help/xkor_dog.html +21 -0
  1246. fullseye-0.1.0/studio_assets/op_help/xkor_gaussian.html +21 -0
  1247. fullseye-0.1.0/studio_assets/op_help/xkor_gftt.html +21 -0
  1248. fullseye-0.1.0/studio_assets/op_help/xkor_harris.html +21 -0
  1249. fullseye-0.1.0/studio_assets/op_help/xkor_hessian.html +21 -0
  1250. fullseye-0.1.0/studio_assets/op_help/xkor_laplacian.html +21 -0
  1251. fullseye-0.1.0/studio_assets/op_help/xkor_median.html +21 -0
  1252. fullseye-0.1.0/studio_assets/op_help/xkor_motion_blur.html +21 -0
  1253. fullseye-0.1.0/studio_assets/op_help/xkor_unsharp.html +21 -0
  1254. fullseye-0.1.0/studio_assets/op_help/xmh_bernsen.html +21 -0
  1255. fullseye-0.1.0/studio_assets/op_help/xmh_bwperim.html +21 -0
  1256. fullseye-0.1.0/studio_assets/op_help/xmh_daubechies.html +21 -0
  1257. fullseye-0.1.0/studio_assets/op_help/xmh_haar.html +21 -0
  1258. fullseye-0.1.0/studio_assets/op_help/xmh_majority.html +21 -0
  1259. fullseye-0.1.0/studio_assets/op_help/xmh_pftas.html +21 -0
  1260. fullseye-0.1.0/studio_assets/op_help/xmh_regmin.html +21 -0
  1261. fullseye-0.1.0/studio_assets/op_help/xmh_selfmatch.html +21 -0
  1262. fullseye-0.1.0/studio_assets/op_help/xmh_soft.html +21 -0
  1263. fullseye-0.1.0/studio_assets/op_help/xmh_zernike.html +21 -0
  1264. fullseye-0.1.0/studio_assets/op_help/xpil_autocontrast.html +21 -0
  1265. fullseye-0.1.0/studio_assets/op_help/xpil_contour.html +21 -0
  1266. fullseye-0.1.0/studio_assets/op_help/xpil_contrast.html +21 -0
  1267. fullseye-0.1.0/studio_assets/op_help/xpil_detail.html +21 -0
  1268. fullseye-0.1.0/studio_assets/op_help/xpil_edge_enhance.html +21 -0
  1269. fullseye-0.1.0/studio_assets/op_help/xpil_emboss.html +21 -0
  1270. fullseye-0.1.0/studio_assets/op_help/xpil_find_edges.html +21 -0
  1271. fullseye-0.1.0/studio_assets/op_help/xpil_mode_filter.html +21 -0
  1272. fullseye-0.1.0/studio_assets/op_help/xpil_offset.html +21 -0
  1273. fullseye-0.1.0/studio_assets/op_help/xpil_posterize.html +21 -0
  1274. fullseye-0.1.0/studio_assets/op_help/xpil_smooth_more.html +21 -0
  1275. fullseye-0.1.0/studio_assets/op_help/xpil_solarize.html +21 -0
  1276. fullseye-0.1.0/studio_assets/op_help/xpil_unsharp_mask.html +21 -0
  1277. fullseye-0.1.0/studio_assets/op_help/xsitk_closing_by_recon.html +21 -0
  1278. fullseye-0.1.0/studio_assets/op_help/xsitk_confidence_connected.html +21 -0
  1279. fullseye-0.1.0/studio_assets/op_help/xsitk_connected_threshold.html +21 -0
  1280. fullseye-0.1.0/studio_assets/op_help/xsitk_curv_aniso_diff.html +21 -0
  1281. fullseye-0.1.0/studio_assets/op_help/xsitk_curvature_flow.html +21 -0
  1282. fullseye-0.1.0/studio_assets/op_help/xsitk_grayscale_fillhole.html +21 -0
  1283. fullseye-0.1.0/studio_assets/op_help/xsitk_grayscale_grindpeak.html +21 -0
  1284. fullseye-0.1.0/studio_assets/op_help/xsitk_huang_thresh.html +21 -0
  1285. fullseye-0.1.0/studio_assets/op_help/xsitk_laplacian_sharpen.html +21 -0
  1286. fullseye-0.1.0/studio_assets/op_help/xsitk_maxentropy_thresh.html +21 -0
  1287. fullseye-0.1.0/studio_assets/op_help/xsitk_minmax_curv_flow.html +21 -0
  1288. fullseye-0.1.0/studio_assets/op_help/xsitk_moments_thresh.html +21 -0
  1289. fullseye-0.1.0/studio_assets/op_help/xsitk_opening_by_recon.html +21 -0
  1290. fullseye-0.1.0/studio_assets/op_help/xsitk_signed_maurer_dist.html +21 -0
  1291. fullseye-0.1.0/studio_assets/op_help/xsk2_corner_kr.html +21 -0
  1292. fullseye-0.1.0/studio_assets/op_help/xsk2_diameter_opening.html +21 -0
  1293. fullseye-0.1.0/studio_assets/op_help/xsk2_h_maxima.html +21 -0
  1294. fullseye-0.1.0/studio_assets/op_help/xsk2_hog.html +21 -0
  1295. fullseye-0.1.0/studio_assets/op_help/xsk2_inv_gauss_grad.html +21 -0
  1296. fullseye-0.1.0/studio_assets/op_help/xsk2_isotropic_close.html +21 -0
  1297. fullseye-0.1.0/studio_assets/op_help/xsk2_multiotsu.html +21 -0
  1298. fullseye-0.1.0/studio_assets/op_help/xsk2_radon.html +21 -0
  1299. fullseye-0.1.0/studio_assets/op_help/xsk2_rank_geomean.html +21 -0
  1300. fullseye-0.1.0/studio_assets/op_help/xsk2_reconstruction.html +21 -0
  1301. fullseye-0.1.0/studio_assets/op_help/xsk2_wiener.html +21 -0
  1302. fullseye-0.1.0/studio_assets/op_help/xsk3_area_closing.html +21 -0
  1303. fullseye-0.1.0/studio_assets/op_help/xsk3_corner_fast.html +21 -0
  1304. fullseye-0.1.0/studio_assets/op_help/xsk3_corner_moravec.html +21 -0
  1305. fullseye-0.1.0/studio_assets/op_help/xsk3_diameter_closing.html +21 -0
  1306. fullseye-0.1.0/studio_assets/op_help/xsk3_estimate_sigma.html +21 -0
  1307. fullseye-0.1.0/studio_assets/op_help/xsk3_h_minima.html +21 -0
  1308. fullseye-0.1.0/studio_assets/op_help/xsk3_integral_image.html +21 -0
  1309. fullseye-0.1.0/studio_assets/op_help/xsk3_is_low_contrast.html +21 -0
  1310. fullseye-0.1.0/studio_assets/op_help/xsk3_peak_local_max.html +21 -0
  1311. fullseye-0.1.0/studio_assets/op_help/xsk3_rank_equalize.html +21 -0
  1312. fullseye-0.1.0/studio_assets/op_help/xsk3_rank_majority.html +21 -0
  1313. fullseye-0.1.0/studio_assets/op_help/xsk3_rank_mean_bilateral.html +21 -0
  1314. fullseye-0.1.0/studio_assets/op_help/xsk3_rank_otsu.html +21 -0
  1315. fullseye-0.1.0/studio_assets/op_help/xsk3_rank_subtract_mean.html +21 -0
  1316. fullseye-0.1.0/studio_assets/op_help/xsk3_threshold_local_median.html +21 -0
  1317. fullseye-0.1.0/studio_assets/op_help/xsk_blob_dog.html +21 -0
  1318. fullseye-0.1.0/studio_assets/op_help/xsk_blob_doh.html +21 -0
  1319. fullseye-0.1.0/studio_assets/op_help/xsk_blob_log.html +21 -0
  1320. fullseye-0.1.0/studio_assets/op_help/xsk_flood.html +21 -0
  1321. fullseye-0.1.0/studio_assets/op_help/xsk_hessian_eig.html +21 -0
  1322. fullseye-0.1.0/studio_assets/op_help/xsk_inpaint.html +21 -0
  1323. fullseye-0.1.0/studio_assets/op_help/xsk_meijering.html +21 -0
  1324. fullseye-0.1.0/studio_assets/op_help/xsk_orb_count.html +21 -0
  1325. fullseye-0.1.0/studio_assets/op_help/xsk_random_walker.html +21 -0
  1326. fullseye-0.1.0/studio_assets/op_help/xsk_richardson_lucy.html +21 -0
  1327. fullseye-0.1.0/studio_assets/op_help/xsk_sato.html +21 -0
  1328. fullseye-0.1.0/studio_assets/op_help/xsk_struct_coherence.html +21 -0
  1329. fullseye-0.1.0/studio_assets/op_help/xsk_unwrap_phase.html +21 -0
  1330. fullseye-0.1.0/studio_assets/op_help/xsp_chamfer_dist.html +21 -0
  1331. fullseye-0.1.0/studio_assets/op_help/xsp_cspline_smooth.html +21 -0
  1332. fullseye-0.1.0/studio_assets/op_help/xsp_dct.html +21 -0
  1333. fullseye-0.1.0/studio_assets/op_help/xsp_dct_denoise.html +21 -0
  1334. fullseye-0.1.0/studio_assets/op_help/xsp_dct_lowpass.html +21 -0
  1335. fullseye-0.1.0/studio_assets/op_help/xsp_detrend_flatten.html +21 -0
  1336. fullseye-0.1.0/studio_assets/op_help/xsp_gauss_grad_mag.html +21 -0
  1337. fullseye-0.1.0/studio_assets/op_help/xsp_hilbert_env.html +21 -0
  1338. fullseye-0.1.0/studio_assets/op_help/xsp_morph_laplace.html +21 -0
  1339. fullseye-0.1.0/studio_assets/op_help/xsp_savgol.html +21 -0
  1340. fullseye-0.1.0/studio_assets/op_help/xsp_wiener.html +21 -0
  1341. fullseye-0.1.0/studio_assets/op_help/xwt_detail_energy.html +21 -0
  1342. fullseye-0.1.0/studio_assets/op_help/xwt_directional_detail.html +21 -0
  1343. fullseye-0.1.0/studio_assets/op_help/xwt_firm_denoise.html +21 -0
  1344. fullseye-0.1.0/studio_assets/op_help/xwt_hf_reconstruct.html +21 -0
  1345. fullseye-0.1.0/studio_assets/op_help/xwt_lf_reconstruct.html +21 -0
  1346. fullseye-0.1.0/studio_assets/op_help/xwt_mra_component.html +21 -0
  1347. fullseye-0.1.0/studio_assets/op_help/xwt_packet_entropy.html +21 -0
  1348. fullseye-0.1.0/studio_assets/op_help/xwt_subband_tile.html +21 -0
  1349. fullseye-0.1.0/studio_assets/op_help/xwt_visushrink.html +21 -0
  1350. fullseye-0.1.0/studio_assets/op_help/zero_crossing.html +22 -0
  1351. fullseye-0.1.0/studio_assets/op_help/zero_crossing_sub_pix.html +22 -0
  1352. fullseye-0.1.0/studio_assets/op_help/zoom_image_factor.html +22 -0
  1353. fullseye-0.1.0/studio_assets/op_help/zoom_image_size.html +22 -0
  1354. fullseye-0.1.0/studio_assets/op_help/zoom_region.html +22 -0
  1355. fullseye-0.1.0/studio_assets/sample_3d/ATTRIBUTION.md +18 -0
  1356. fullseye-0.1.0/studio_assets/sample_3d/itokawa_points.npy +0 -0
  1357. fullseye-0.1.0/studio_assets/sample_3d/skeleton_ct.npy +0 -0
  1358. fullseye-0.1.0/studio_assets/sample_images/blobs.png +0 -0
  1359. fullseye-0.1.0/studio_assets/sample_images/brick_quilt.png +0 -0
  1360. fullseye-0.1.0/studio_assets/sample_images/camera.png +0 -0
  1361. fullseye-0.1.0/studio_assets/sample_images/cell.png +0 -0
  1362. fullseye-0.1.0/studio_assets/sample_images/checker_noisy.png +0 -0
  1363. fullseye-0.1.0/studio_assets/sample_images/coins.png +0 -0
  1364. fullseye-0.1.0/studio_assets/sample_images/gradient.png +0 -0
  1365. fullseye-0.1.0/studio_assets/sample_images/grain_synth.png +0 -0
  1366. fullseye-0.1.0/studio_assets/sample_images/manifest.json +70 -0
  1367. fullseye-0.1.0/studio_assets/sample_images/page.png +0 -0
  1368. fullseye-0.1.0/studio_assets/sample_images/shapes.png +0 -0
  1369. fullseye-0.1.0/studio_assets/sample_images/weave_synth.png +0 -0
  1370. fullseye-0.1.0/studio_assets/sample_sources_ai/amber_ant.png +0 -0
  1371. fullseye-0.1.0/studio_assets/sample_sources_ai/amber_beetle.png +0 -0
  1372. fullseye-0.1.0/studio_assets/sample_sources_ai/amber_mosquito.png +0 -0
  1373. fullseye-0.1.0/studio_assets/sample_sources_ai/beans_pile.png +0 -0
  1374. fullseye-0.1.0/studio_assets/sample_sources_ai/bga_xray_like.png +0 -0
  1375. fullseye-0.1.0/studio_assets/sample_sources_ai/bottle_caps.png +0 -0
  1376. fullseye-0.1.0/studio_assets/sample_sources_ai/chess_floor.png +0 -0
  1377. fullseye-0.1.0/studio_assets/sample_sources_ai/cookies_tray.png +0 -0
  1378. fullseye-0.1.0/studio_assets/sample_sources_ai/crack_concrete.png +0 -0
  1379. fullseye-0.1.0/studio_assets/sample_sources_ai/dark_workshop.png +0 -0
  1380. fullseye-0.1.0/studio_assets/sample_sources_ai/dragonfly_wing.png +0 -0
  1381. fullseye-0.1.0/studio_assets/sample_sources_ai/eht_m87.jpg +0 -0
  1382. fullseye-0.1.0/studio_assets/sample_sources_ai/feather_macro.png +0 -0
  1383. fullseye-0.1.0/studio_assets/sample_sources_ai/fruits.png +0 -0
  1384. fullseye-0.1.0/studio_assets/sample_sources_ai/fundus_like.png +0 -0
  1385. fullseye-0.1.0/studio_assets/sample_sources_ai/gears.png +0 -0
  1386. fullseye-0.1.0/studio_assets/sample_sources_ai/leaf_veins.png +0 -0
  1387. fullseye-0.1.0/studio_assets/sample_sources_ai/mars_dunes.jpg +0 -0
  1388. fullseye-0.1.0/studio_assets/sample_sources_ai/otolith.png +0 -0
  1389. fullseye-0.1.0/studio_assets/sample_sources_ai/parts_tray.png +0 -0
  1390. fullseye-0.1.0/studio_assets/sample_sources_ai/pcb.png +0 -0
  1391. fullseye-0.1.0/studio_assets/sample_sources_ai/road.png +0 -0
  1392. fullseye-0.1.0/studio_assets/sample_sources_ai/statue.png +0 -0
  1393. fullseye-0.1.0/studio_assets/sample_sources_ai/steel_balls.png +0 -0
  1394. fullseye-0.1.0/studio_assets/sample_sources_ai/thin_section.png +0 -0
  1395. fullseye-0.1.0/studio_assets/sample_sources_ai/tree_rings.png +0 -0
  1396. fullseye-0.1.0/studio_assets/sample_thumbs/binarize_document_adaptive.png +0 -0
  1397. fullseye-0.1.0/studio_assets/sample_thumbs/blobs_difference_of_gaussians.png +0 -0
  1398. fullseye-0.1.0/studio_assets/sample_thumbs/count_blobs.png +0 -0
  1399. fullseye-0.1.0/studio_assets/sample_thumbs/denoise_bilateral_unsharp.png +0 -0
  1400. fullseye-0.1.0/studio_assets/sample_thumbs/denoise_median.png +0 -0
  1401. fullseye-0.1.0/studio_assets/sample_thumbs/denoise_total_variation.png +0 -0
  1402. fullseye-0.1.0/studio_assets/sample_thumbs/edge_canny.png +0 -0
  1403. fullseye-0.1.0/studio_assets/sample_thumbs/edge_sobel_otsu.png +0 -0
  1404. fullseye-0.1.0/studio_assets/sample_thumbs/enhance_clahe_contrast.png +0 -0
  1405. fullseye-0.1.0/studio_assets/sample_thumbs/enhance_gamma.png +0 -0
  1406. fullseye-0.1.0/studio_assets/sample_thumbs/enhance_histogram_equalize.png +0 -0
  1407. fullseye-0.1.0/studio_assets/sample_thumbs/keypoints_harris_corners.png +0 -0
  1408. fullseye-0.1.0/studio_assets/sample_thumbs/manifest.json +164 -0
  1409. fullseye-0.1.0/studio_assets/sample_thumbs/morphology_gradient.png +0 -0
  1410. fullseye-0.1.0/studio_assets/sample_thumbs/segment_blob_coin.png +0 -0
  1411. fullseye-0.1.0/studio_assets/sample_thumbs/shape_distance_transform.png +0 -0
  1412. fullseye-0.1.0/studio_assets/sample_thumbs/sharpen_highpass.png +0 -0
  1413. fullseye-0.1.0/studio_assets/sample_thumbs/sharpen_unsharp_mask.png +0 -0
  1414. fullseye-0.1.0/studio_assets/sample_thumbs/spots_local_maxima.png +0 -0
  1415. fullseye-0.1.0/studio_assets/sample_thumbs/texture_gabor.png +0 -0
  1416. fullseye-0.1.0/studio_assets/sample_thumbs/texture_local_std.png +0 -0
  1417. fullseye-0.1.0/superquadric.py +234 -0
  1418. fullseye-0.1.0/sweep.py +70 -0
  1419. fullseye-0.1.0/symmetry3d.py +114 -0
  1420. fullseye-0.1.0/synth.py +468 -0
  1421. fullseye-0.1.0/terrain.py +336 -0
  1422. fullseye-0.1.0/tests/test_abi_conformance.py +220 -0
  1423. fullseye-0.1.0/tests/test_accel_3d_toolkit.py +88 -0
  1424. fullseye-0.1.0/tests/test_accel_bridge.py +126 -0
  1425. fullseye-0.1.0/tests/test_accel_match.py +104 -0
  1426. fullseye-0.1.0/tests/test_accel_pipeline.py +76 -0
  1427. fullseye-0.1.0/tests/test_accel_region.py +79 -0
  1428. fullseye-0.1.0/tests/test_accel_smoothing.py +63 -0
  1429. fullseye-0.1.0/tests/test_accel_vol.py +118 -0
  1430. fullseye-0.1.0/tests/test_accuracy_bench.py +22 -0
  1431. fullseye-0.1.0/tests/test_acquire.py +92 -0
  1432. fullseye-0.1.0/tests/test_algo.py +2332 -0
  1433. fullseye-0.1.0/tests/test_alife.py +349 -0
  1434. fullseye-0.1.0/tests/test_alife2.py +606 -0
  1435. fullseye-0.1.0/tests/test_api.py +146 -0
  1436. fullseye-0.1.0/tests/test_api_device.py +48 -0
  1437. fullseye-0.1.0/tests/test_aug.py +316 -0
  1438. fullseye-0.1.0/tests/test_backend_safe.py +81 -0
  1439. fullseye-0.1.0/tests/test_backends.py +80 -0
  1440. fullseye-0.1.0/tests/test_backends_auto.py +53 -0
  1441. fullseye-0.1.0/tests/test_bspline_surf.py +287 -0
  1442. fullseye-0.1.0/tests/test_bundle3d.py +70 -0
  1443. fullseye-0.1.0/tests/test_camera.py +256 -0
  1444. fullseye-0.1.0/tests/test_cli_resolution.py +45 -0
  1445. fullseye-0.1.0/tests/test_codegen.py +65 -0
  1446. fullseye-0.1.0/tests/test_comm.py +129 -0
  1447. fullseye-0.1.0/tests/test_complexops.py +261 -0
  1448. fullseye-0.1.0/tests/test_correctness_anchors.py +85 -0
  1449. fullseye-0.1.0/tests/test_curvature3d.py +185 -0
  1450. fullseye-0.1.0/tests/test_curve3d.py +147 -0
  1451. fullseye-0.1.0/tests/test_decomp.py +282 -0
  1452. fullseye-0.1.0/tests/test_deform.py +615 -0
  1453. fullseye-0.1.0/tests/test_deform3d.py +288 -0
  1454. fullseye-0.1.0/tests/test_deformreg.py +443 -0
  1455. fullseye-0.1.0/tests/test_depth_bilateral.py +280 -0
  1456. fullseye-0.1.0/tests/test_descriptors3d.py +237 -0
  1457. fullseye-0.1.0/tests/test_detect.py +105 -0
  1458. fullseye-0.1.0/tests/test_device.py +112 -0
  1459. fullseye-0.1.0/tests/test_difftest.py +90 -0
  1460. fullseye-0.1.0/tests/test_dispositions.py +118 -0
  1461. fullseye-0.1.0/tests/test_dsp.py +106 -0
  1462. fullseye-0.1.0/tests/test_edges3d.py +240 -0
  1463. fullseye-0.1.0/tests/test_engine.py +135 -0
  1464. fullseye-0.1.0/tests/test_events.py +129 -0
  1465. fullseye-0.1.0/tests/test_evis_walk_perception.py +49 -0
  1466. fullseye-0.1.0/tests/test_evolution_honesty.py +63 -0
  1467. fullseye-0.1.0/tests/test_evolve_params.py +85 -0
  1468. fullseye-0.1.0/tests/test_examples.py +85 -0
  1469. fullseye-0.1.0/tests/test_examples2d.py +26 -0
  1470. fullseye-0.1.0/tests/test_examples3d.py +71 -0
  1471. fullseye-0.1.0/tests/test_feat_descriptors.py +114 -0
  1472. fullseye-0.1.0/tests/test_features.py +94 -0
  1473. fullseye-0.1.0/tests/test_filters2.py +294 -0
  1474. fullseye-0.1.0/tests/test_fix_border_wrap.py +99 -0
  1475. fullseye-0.1.0/tests/test_fix_clahe_coverage.py +57 -0
  1476. fullseye-0.1.0/tests/test_fix_frei_dir.py +93 -0
  1477. fullseye-0.1.0/tests/test_fix_gabor_dc.py +95 -0
  1478. fullseye-0.1.0/tests/test_flow.py +158 -0
  1479. fullseye-0.1.0/tests/test_fourierdesc.py +140 -0
  1480. fullseye-0.1.0/tests/test_fringe.py +273 -0
  1481. fullseye-0.1.0/tests/test_fscript.py +236 -0
  1482. fullseye-0.1.0/tests/test_fsi18n.py +89 -0
  1483. fullseye-0.1.0/tests/test_fslib.py +326 -0
  1484. fullseye-0.1.0/tests/test_fsruntime.py +295 -0
  1485. fullseye-0.1.0/tests/test_fstypes.py +183 -0
  1486. fullseye-0.1.0/tests/test_fullseye_3dgs.py +233 -0
  1487. fullseye-0.1.0/tests/test_g1_policy.py +111 -0
  1488. fullseye-0.1.0/tests/test_gaits.py +104 -0
  1489. fullseye-0.1.0/tests/test_geodesic3d.py +234 -0
  1490. fullseye-0.1.0/tests/test_gicp.py +219 -0
  1491. fullseye-0.1.0/tests/test_graphengine.py +93 -0
  1492. fullseye-0.1.0/tests/test_grasp.py +286 -0
  1493. fullseye-0.1.0/tests/test_gsplat_torch.py +85 -0
  1494. fullseye-0.1.0/tests/test_gsplat_train.py +40 -0
  1495. fullseye-0.1.0/tests/test_imagedraw.py +66 -0
  1496. fullseye-0.1.0/tests/test_imagemorph.py +141 -0
  1497. fullseye-0.1.0/tests/test_imgio.py +142 -0
  1498. fullseye-0.1.0/tests/test_imgops_nary.py +70 -0
  1499. fullseye-0.1.0/tests/test_imgtools.py +275 -0
  1500. fullseye-0.1.0/tests/test_inverse.py +264 -0
  1501. fullseye-0.1.0/tests/test_known_bugs.py +144 -0
  1502. fullseye-0.1.0/tests/test_locomotion.py +219 -0
  1503. fullseye-0.1.0/tests/test_macro_ops.py +123 -0
  1504. fullseye-0.1.0/tests/test_match3d.py +677 -0
  1505. fullseye-0.1.0/tests/test_measure.py +133 -0
  1506. fullseye-0.1.0/tests/test_measure1d.py +269 -0
  1507. fullseye-0.1.0/tests/test_measure3d.py +179 -0
  1508. fullseye-0.1.0/tests/test_medial.py +208 -0
  1509. fullseye-0.1.0/tests/test_mesh.py +936 -0
  1510. fullseye-0.1.0/tests/test_mesh_decimate.py +87 -0
  1511. fullseye-0.1.0/tests/test_meshio_opt.py +334 -0
  1512. fullseye-0.1.0/tests/test_meshrepair.py +300 -0
  1513. fullseye-0.1.0/tests/test_metrics3d.py +99 -0
  1514. fullseye-0.1.0/tests/test_moments3d.py +298 -0
  1515. fullseye-0.1.0/tests/test_motion.py +138 -0
  1516. fullseye-0.1.0/tests/test_motion_seg3d.py +277 -0
  1517. fullseye-0.1.0/tests/test_ncc_normalization.py +121 -0
  1518. fullseye-0.1.0/tests/test_normals_orient.py +203 -0
  1519. fullseye-0.1.0/tests/test_occupancy.py +338 -0
  1520. fullseye-0.1.0/tests/test_odometry.py +137 -0
  1521. fullseye-0.1.0/tests/test_op_contracts.py +118 -0
  1522. fullseye-0.1.0/tests/test_op_example_coverage.py +49 -0
  1523. fullseye-0.1.0/tests/test_opdocs.py +213 -0
  1524. fullseye-0.1.0/tests/test_ops.py +120 -0
  1525. fullseye-0.1.0/tests/test_ops3d.py +22 -0
  1526. fullseye-0.1.0/tests/test_optional_torch_absent.py +45 -0
  1527. fullseye-0.1.0/tests/test_oss_adapter.py +76 -0
  1528. fullseye-0.1.0/tests/test_packaging_foundation.py +104 -0
  1529. fullseye-0.1.0/tests/test_parity.py +92 -0
  1530. fullseye-0.1.0/tests/test_pcl_augment.py +373 -0
  1531. fullseye-0.1.0/tests/test_pcl_filter.py +183 -0
  1532. fullseye-0.1.0/tests/test_pcseg.py +302 -0
  1533. fullseye-0.1.0/tests/test_perception_edge.py +70 -0
  1534. fullseye-0.1.0/tests/test_photometric.py +76 -0
  1535. fullseye-0.1.0/tests/test_physarum_search.py +219 -0
  1536. fullseye-0.1.0/tests/test_physics.py +273 -0
  1537. fullseye-0.1.0/tests/test_pipeline3d.py +75 -0
  1538. fullseye-0.1.0/tests/test_pipeline_engine.py +64 -0
  1539. fullseye-0.1.0/tests/test_pipeline_evolve.py +101 -0
  1540. fullseye-0.1.0/tests/test_plane_sweep.py +246 -0
  1541. fullseye-0.1.0/tests/test_pnp3d.py +141 -0
  1542. fullseye-0.1.0/tests/test_pointcloud.py +108 -0
  1543. fullseye-0.1.0/tests/test_pose.py +51 -0
  1544. fullseye-0.1.0/tests/test_pose_graph.py +108 -0
  1545. fullseye-0.1.0/tests/test_ppf.py +66 -0
  1546. fullseye-0.1.0/tests/test_public_api.py +136 -0
  1547. fullseye-0.1.0/tests/test_rag_setup.py +83 -0
  1548. fullseye-0.1.0/tests/test_range_image.py +100 -0
  1549. fullseye-0.1.0/tests/test_ransac_fit.py +237 -0
  1550. fullseye-0.1.0/tests/test_raster.py +281 -0
  1551. fullseye-0.1.0/tests/test_recipes.py +32 -0
  1552. fullseye-0.1.0/tests/test_recon3d.py +255 -0
  1553. fullseye-0.1.0/tests/test_region_geom_binary.py +96 -0
  1554. fullseye-0.1.0/tests/test_regionprops3d.py +244 -0
  1555. fullseye-0.1.0/tests/test_regions2.py +314 -0
  1556. fullseye-0.1.0/tests/test_regions3.py +275 -0
  1557. fullseye-0.1.0/tests/test_registration.py +163 -0
  1558. fullseye-0.1.0/tests/test_registration_eval.py +301 -0
  1559. fullseye-0.1.0/tests/test_render3d.py +258 -0
  1560. fullseye-0.1.0/tests/test_robust.py +132 -0
  1561. fullseye-0.1.0/tests/test_scale.py +45 -0
  1562. fullseye-0.1.0/tests/test_scale_ooc.py +87 -0
  1563. fullseye-0.1.0/tests/test_scene_flow3d.py +195 -0
  1564. fullseye-0.1.0/tests/test_scene_registry.py +46 -0
  1565. fullseye-0.1.0/tests/test_sceneflow.py +126 -0
  1566. fullseye-0.1.0/tests/test_sdf_ops.py +261 -0
  1567. fullseye-0.1.0/tests/test_segment2.py +242 -0
  1568. fullseye-0.1.0/tests/test_segment3d.py +259 -0
  1569. fullseye-0.1.0/tests/test_sensor_sims.py +93 -0
  1570. fullseye-0.1.0/tests/test_shapematch_family.py +153 -0
  1571. fullseye-0.1.0/tests/test_shapematch_gpu.py +175 -0
  1572. fullseye-0.1.0/tests/test_shapematch_pyramid.py +85 -0
  1573. fullseye-0.1.0/tests/test_shapematch_rotation.py +107 -0
  1574. fullseye-0.1.0/tests/test_shapematch_scale_pyramid.py +159 -0
  1575. fullseye-0.1.0/tests/test_signal1d.py +115 -0
  1576. fullseye-0.1.0/tests/test_signed_response.py +60 -0
  1577. fullseye-0.1.0/tests/test_sim_source.py +176 -0
  1578. fullseye-0.1.0/tests/test_specops.py +341 -0
  1579. fullseye-0.1.0/tests/test_specops_fusion.py +500 -0
  1580. fullseye-0.1.0/tests/test_spherical_proj.py +257 -0
  1581. fullseye-0.1.0/tests/test_stereo.py +181 -0
  1582. fullseye-0.1.0/tests/test_studio.py +2693 -0
  1583. fullseye-0.1.0/tests/test_studio_ops_browser.py +86 -0
  1584. fullseye-0.1.0/tests/test_subpix.py +262 -0
  1585. fullseye-0.1.0/tests/test_superquadric.py +143 -0
  1586. fullseye-0.1.0/tests/test_symmetry3d.py +84 -0
  1587. fullseye-0.1.0/tests/test_synth.py +304 -0
  1588. fullseye-0.1.0/tests/test_tactile.py +230 -0
  1589. fullseye-0.1.0/tests/test_terrain.py +103 -0
  1590. fullseye-0.1.0/tests/test_tomo.py +287 -0
  1591. fullseye-0.1.0/tests/test_transform2.py +270 -0
  1592. fullseye-0.1.0/tests/test_tsdf_fusion.py +214 -0
  1593. fullseye-0.1.0/tests/test_twoview.py +155 -0
  1594. fullseye-0.1.0/tests/test_unified.py +102 -0
  1595. fullseye-0.1.0/tests/test_unified_packaging.py +46 -0
  1596. fullseye-0.1.0/tests/test_unified_pipeline.py +95 -0
  1597. fullseye-0.1.0/tests/test_update_fullseye.py +72 -0
  1598. fullseye-0.1.0/tests/test_verify_auto.py +65 -0
  1599. fullseye-0.1.0/tests/test_video.py +191 -0
  1600. fullseye-0.1.0/tests/test_videops.py +390 -0
  1601. fullseye-0.1.0/tests/test_viewer3d.py +139 -0
  1602. fullseye-0.1.0/tests/test_visualhull.py +195 -0
  1603. fullseye-0.1.0/tests/test_volio.py +325 -0
  1604. fullseye-0.1.0/tests/test_volops.py +327 -0
  1605. fullseye-0.1.0/tests/test_wave0.py +223 -0
  1606. fullseye-0.1.0/tests/test_xldgeom.py +293 -0
  1607. fullseye-0.1.0/transforms.py +387 -0
  1608. fullseye-0.1.0/tsdf_fusion.py +227 -0
  1609. fullseye-0.1.0/twoview.py +219 -0
  1610. fullseye-0.1.0/unified.py +687 -0
  1611. fullseye-0.1.0/verify_auto.py +192 -0
  1612. fullseye-0.1.0/video.py +319 -0
  1613. fullseye-0.1.0/videops.py +315 -0
  1614. fullseye-0.1.0/visualhull.py +230 -0
  1615. fullseye-0.1.0/volio.py +588 -0
  1616. fullseye-0.1.0/volops.py +668 -0
  1617. fullseye-0.1.0/watershed3d.py +306 -0
fullseye-0.1.0/AUTHORS ADDED
@@ -0,0 +1,6 @@
1
+ fullseye (imgevolve) — Authors
2
+ ===============================
3
+
4
+ Kazufumi Furuse <kazufumi@furuse.work> (https://github.com/furuse-kazufumi)
5
+
6
+ fullseye is authored and maintained by Kazufumi Furuse.
fullseye-0.1.0/LICENSE ADDED
@@ -0,0 +1,201 @@
1
+ Apache License
2
+ Version 2.0, January 2004
3
+ http://www.apache.org/licenses/
4
+
5
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
6
+
7
+ 1. Definitions.
8
+
9
+ "License" shall mean the terms and conditions for use, reproduction,
10
+ and distribution as defined by Sections 1 through 9 of this document.
11
+
12
+ "Licensor" shall mean the copyright owner or entity authorized by
13
+ the copyright owner that is granting the License.
14
+
15
+ "Legal Entity" shall mean the union of the acting entity and all
16
+ other entities that control, are controlled by, or are under common
17
+ control with that entity. For the purposes of this definition,
18
+ "control" means (i) the power, direct or indirect, to cause the
19
+ direction or management of such entity, whether by contract or
20
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
21
+ outstanding shares, or (iii) beneficial ownership of such entity.
22
+
23
+ "You" (or "Your") shall mean an individual or Legal Entity
24
+ exercising permissions granted by this License.
25
+
26
+ "Source" form shall mean the preferred form for making modifications,
27
+ including but not limited to software source code, documentation
28
+ source, and configuration files.
29
+
30
+ "Object" form shall mean any form resulting from mechanical
31
+ transformation or translation of a Source form, including but
32
+ not limited to compiled object code, generated documentation,
33
+ and conversions to other media types.
34
+
35
+ "Work" shall mean the work of authorship, whether in Source or
36
+ Object form, made available under the License, as indicated by a
37
+ copyright notice that is included in or attached to the work
38
+ (an example is provided in the Appendix below).
39
+
40
+ "Derivative Works" shall mean any work, whether in Source or Object
41
+ form, that is based on (or derived from) the Work and for which the
42
+ editorial revisions, annotations, elaborations, or other modifications
43
+ represent, as a whole, an original work of authorship. For the purposes
44
+ of this License, Derivative Works shall not include works that remain
45
+ separable from, or merely link (or bind by name) to the interfaces of,
46
+ the Work and Derivative Works thereof.
47
+
48
+ "Contribution" shall mean any work of authorship, including
49
+ the original version of the Work and any modifications or additions
50
+ to that Work or Derivative Works thereof, that is intentionally
51
+ submitted to Licensor for inclusion in the Work by the copyright owner
52
+ or by an individual or Legal Entity authorized to submit on behalf of
53
+ the copyright owner. For the purposes of this definition, "submitted"
54
+ means any form of electronic, verbal, or written communication sent
55
+ to the Licensor or its representatives, including but not limited to
56
+ communication on electronic mailing lists, source code control systems,
57
+ and issue tracking systems that are managed by, or on behalf of, the
58
+ Licensor for the purpose of discussing and improving the Work, but
59
+ excluding communication that is conspicuously marked or otherwise
60
+ designated in writing by the copyright owner as "Not a Contribution."
61
+
62
+ "Contributor" shall mean Licensor and any individual or Legal Entity
63
+ on behalf of whom a Contribution has been received by Licensor and
64
+ subsequently incorporated within the Work.
65
+
66
+ 2. Grant of Copyright License. Subject to the terms and conditions of
67
+ this License, each Contributor hereby grants to You a perpetual,
68
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
69
+ copyright license to reproduce, prepare Derivative Works of,
70
+ publicly display, publicly perform, sublicense, and distribute the
71
+ Work and such Derivative Works in Source or Object form.
72
+
73
+ 3. Grant of Patent License. Subject to the terms and conditions of
74
+ this License, each Contributor hereby grants to You a perpetual,
75
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
76
+ (except as stated in this section) patent license to make, have made,
77
+ use, offer to sell, sell, import, and otherwise transfer the Work,
78
+ where such license applies only to those patent claims licensable
79
+ by such Contributor that are necessarily infringed by their
80
+ Contribution(s) alone or by combination of their Contribution(s)
81
+ with the Work to which such Contribution(s) was submitted. If You
82
+ institute patent litigation against any entity (including a
83
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
84
+ or a Contribution incorporated within the Work constitutes direct
85
+ or contributory patent infringement, then any patent licenses
86
+ granted to You under this License for that Work shall terminate
87
+ as of the date such litigation is filed.
88
+
89
+ 4. Redistribution. You may reproduce and distribute copies of the
90
+ Work or Derivative Works thereof in any medium, with or without
91
+ modifications, and in Source or Object form, provided that You
92
+ meet the following conditions:
93
+
94
+ (a) You must give any other recipients of the Work or Derivative
95
+ Works a copy of this License; and
96
+
97
+ (b) You must cause any modified files to carry prominent notices
98
+ stating that You changed the files; and
99
+
100
+ (c) You must retain, in the Source form of any Derivative Works
101
+ that You distribute, all copyright, patent, trademark, and
102
+ attribution notices from the Source form of the Work,
103
+ excluding those notices that do not pertain to any part of
104
+ the Derivative Works; and
105
+
106
+ (d) If the Work includes a "NOTICE" text file as part of its
107
+ distribution, then any Derivative Works that You distribute must
108
+ include a readable copy of the attribution notices contained
109
+ within such NOTICE file, excluding those notices that do not
110
+ pertain to any part of the Derivative Works, in at least one
111
+ of the following places: within a NOTICE text file distributed
112
+ as part of the Derivative Works; within the Source form or
113
+ documentation, if provided along with the Derivative Works; or,
114
+ within a display generated by the Derivative Works, if and
115
+ wherever such third-party notices normally appear. The contents
116
+ of the NOTICE file are for informational purposes only and do
117
+ not modify the License. You may add Your own attribution notices
118
+ within Derivative Works that You distribute, alongside or as an
119
+ addendum to the NOTICE text from the Work, provided that such
120
+ additional attribution notices cannot be construed as modifying
121
+ the License.
122
+
123
+ You may add Your own copyright statement to Your modifications and
124
+ may provide additional or different license terms and conditions for
125
+ use, reproduction, or distribution of Your modifications, or for any
126
+ such Derivative Works as a whole, provided Your use, reproduction,
127
+ and distribution of the Work otherwise complies with the conditions
128
+ stated in this License.
129
+
130
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
131
+ any Contribution intentionally submitted for inclusion in the Work
132
+ by You to the Licensor shall be under the terms and conditions of
133
+ this License, without any additional terms or conditions.
134
+ Notwithstanding the above, nothing herein shall supersede or modify
135
+ the terms of any separate license agreement you may have executed
136
+ with Licensor regarding such Contributions.
137
+
138
+ 6. Trademarks. This License does not grant permission to use the trade
139
+ names, trademarks, service marks, or product names of the Licensor,
140
+ except as required for reasonable and customary use in describing the
141
+ origin of the Work and reproducing the content of the NOTICE file.
142
+
143
+ 7. Disclaimer of Warranty. Unless required by applicable law or
144
+ agreed to in writing, Licensor provides the Work (and each
145
+ Contributor provides its Contributions) on an "AS IS" BASIS,
146
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
147
+ implied, including, without limitation, any warranties or conditions
148
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
149
+ PARTICULAR PURPOSE. You are solely responsible for determining the
150
+ appropriateness of using or redistributing the Work and assume any
151
+ risks associated with Your exercise of permissions under this License.
152
+
153
+ 8. Limitation of Liability. In no event and under no legal theory,
154
+ whether in tort (including negligence), contract, or otherwise,
155
+ unless required by applicable law (such as deliberate and grossly
156
+ negligent acts) or agreed to in writing, shall any Contributor be
157
+ liable to You for damages, including any direct, indirect, special,
158
+ incidental, or consequential damages of any character arising as a
159
+ result of this License or out of the use or inability to use the
160
+ Work (including but not limited to damages for loss of goodwill,
161
+ work stoppage, computer failure or malfunction, or any and all
162
+ other commercial damages or losses), even if such Contributor
163
+ has been advised of the possibility of such damages.
164
+
165
+ 9. Accepting Warranty or Additional Liability. While redistributing
166
+ the Work or Derivative Works thereof, You may choose to offer,
167
+ and charge a fee for, acceptance of support, warranty, indemnity,
168
+ or other liability obligations and/or rights consistent with this
169
+ License. However, in accepting such obligations, You may act only
170
+ on Your own behalf and on Your sole responsibility, not on behalf
171
+ of any other Contributor, and only if You agree to indemnify,
172
+ defend, and hold each Contributor harmless for any liability
173
+ incurred by, or claims asserted against, such Contributor by reason
174
+ of your accepting any such warranty or additional liability.
175
+
176
+ END OF TERMS AND CONDITIONS
177
+
178
+ APPENDIX: How to apply the Apache License to your work.
179
+
180
+ To apply the Apache License to your work, attach the following
181
+ boilerplate notice, with the fields enclosed by brackets "[]"
182
+ replaced with your own identifying information. (Don't include
183
+ the brackets!) The text should be enclosed in the appropriate
184
+ comment syntax for the file format. We also recommend that a
185
+ file or class name and description of purpose be included on the
186
+ same "printed page" as the copyright notice for easier
187
+ identification within third-party archives.
188
+
189
+ Copyright 2026 Kazufumi Furuse
190
+
191
+ Licensed under the Apache License, Version 2.0 (the "License");
192
+ you may not use this file except in compliance with the License.
193
+ You may obtain a copy of the License at
194
+
195
+ http://www.apache.org/licenses/LICENSE-2.0
196
+
197
+ Unless required by applicable law or agreed to in writing, software
198
+ distributed under the License is distributed on an "AS IS" BASIS,
199
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
200
+ See the License for the specific language governing permissions and
201
+ limitations under the License.
fullseye-0.1.0/NOTICE ADDED
@@ -0,0 +1,7 @@
1
+ fullseye
2
+ Copyright (c) 2026 Kazufumi Furuse
3
+
4
+ This product includes software developed by Kazufumi Furuse
5
+ (https://github.com/furuse-kazufumi).
6
+
7
+ Licensed under the Apache License, Version 2.0. See the LICENSE file.
@@ -0,0 +1,283 @@
1
+ Metadata-Version: 2.4
2
+ Name: fullseye
3
+ Version: 0.1.0
4
+ Summary: Evolvable image-processing operator library and honest pipeline designer (numpy-native, optional GPU)
5
+ Author-email: Kazufumi Furuse <kazufumi@furuse.work>
6
+ License: Apache-2.0
7
+ Project-URL: Homepage, https://github.com/furuse-kazufumi/fullseye
8
+ Project-URL: Repository, https://github.com/furuse-kazufumi/fullseye
9
+ Project-URL: Documentation, https://github.com/furuse-kazufumi/fullseye/tree/master/docs
10
+ Project-URL: Operator corpus (RAG), https://github.com/furuse-kazufumi/fullseye/tree/master/docs/ops
11
+ Project-URL: Bug tracker, https://github.com/furuse-kazufumi/fullseye/issues
12
+ Keywords: image-processing,computer-vision,evolutionary-algorithm,pipeline,operators
13
+ Requires-Python: >=3.10
14
+ Description-Content-Type: text/markdown
15
+ License-File: LICENSE
16
+ License-File: NOTICE
17
+ License-File: AUTHORS
18
+ Requires-Dist: numpy>=1.23
19
+ Requires-Dist: scipy>=1.9
20
+ Provides-Extra: opencv
21
+ Requires-Dist: opencv-python>=4.6; extra == "opencv"
22
+ Provides-Extra: skimage
23
+ Requires-Dist: scikit-image>=0.20; extra == "skimage"
24
+ Provides-Extra: pil
25
+ Requires-Dist: Pillow>=9; extra == "pil"
26
+ Provides-Extra: wavelets
27
+ Requires-Dist: PyWavelets>=1.4; extra == "wavelets"
28
+ Provides-Extra: gpu
29
+ Requires-Dist: torch>=2.0; extra == "gpu"
30
+ Requires-Dist: kornia>=0.7; extra == "gpu"
31
+ Provides-Extra: extra
32
+ Requires-Dist: mahotas>=1.4; extra == "extra"
33
+ Requires-Dist: SimpleITK>=2.2; extra == "extra"
34
+ Provides-Extra: gui
35
+ Requires-Dist: PySide6>=6.5; extra == "gui"
36
+ Provides-Extra: video
37
+ Requires-Dist: imageio>=2.28; extra == "video"
38
+ Requires-Dist: imageio-ffmpeg>=0.4; extra == "video"
39
+ Provides-Extra: audio
40
+ Requires-Dist: soundfile>=0.12; extra == "audio"
41
+ Provides-Extra: volume
42
+ Requires-Dist: SimpleITK>=2.2; extra == "volume"
43
+ Requires-Dist: tifffile>=2023.1; extra == "volume"
44
+ Provides-Extra: raster
45
+ Requires-Dist: imageio>=2.28; extra == "raster"
46
+ Requires-Dist: tifffile>=2023.1; extra == "raster"
47
+ Provides-Extra: gltf
48
+ Requires-Dist: pygltflib>=1.16; extra == "gltf"
49
+ Provides-Extra: lidar
50
+ Requires-Dist: laspy>=2.5; extra == "lidar"
51
+ Requires-Dist: lazrs>=0.5; extra == "lidar"
52
+ Provides-Extra: pcd
53
+ Requires-Dist: pypcd4>=1.4; extra == "pcd"
54
+ Provides-Extra: threed
55
+ Requires-Dist: torch>=2.0; extra == "threed"
56
+ Requires-Dist: scikit-image>=0.20; extra == "threed"
57
+ Requires-Dist: SimpleITK>=2.2; extra == "threed"
58
+ Provides-Extra: serial
59
+ Requires-Dist: pyserial>=3.5; extra == "serial"
60
+ Provides-Extra: modbus
61
+ Requires-Dist: pymodbus>=3.0; extra == "modbus"
62
+ Provides-Extra: mqtt
63
+ Requires-Dist: paho-mqtt>=1.6; extra == "mqtt"
64
+ Provides-Extra: opcua
65
+ Requires-Dist: asyncua>=1.0; extra == "opcua"
66
+ Provides-Extra: dev
67
+ Requires-Dist: pytest>=7; extra == "dev"
68
+ Requires-Dist: pytest-cov>=4; extra == "dev"
69
+ Requires-Dist: ruff>=0.4; extra == "dev"
70
+ Provides-Extra: all
71
+ Requires-Dist: opencv-python>=4.6; extra == "all"
72
+ Requires-Dist: scikit-image>=0.20; extra == "all"
73
+ Requires-Dist: Pillow>=9; extra == "all"
74
+ Requires-Dist: PyWavelets>=1.4; extra == "all"
75
+ Requires-Dist: torch>=2.0; extra == "all"
76
+ Requires-Dist: kornia>=0.7; extra == "all"
77
+ Requires-Dist: mahotas>=1.4; extra == "all"
78
+ Requires-Dist: SimpleITK>=2.2; extra == "all"
79
+ Requires-Dist: PySide6>=6.5; extra == "all"
80
+ Requires-Dist: imageio>=2.28; extra == "all"
81
+ Requires-Dist: imageio-ffmpeg>=0.4; extra == "all"
82
+ Requires-Dist: tifffile>=2023.1; extra == "all"
83
+ Dynamic: license-file
84
+
85
+ # Fullseye
86
+
87
+ [![CI](https://github.com/furuse-kazufumi/fullseye/actions/workflows/ci.yml/badge.svg)](https://github.com/furuse-kazufumi/fullseye/actions/workflows/ci.yml)
88
+ [![PyPI](https://img.shields.io/pypi/v/fullseye)](https://pypi.org/project/fullseye/)
89
+ [![License](https://img.shields.io/badge/license-Apache--2.0-blue)](LICENSE)
90
+
91
+ **An in-house, numpy-native image-processing operator library and evolutionary
92
+ pipeline designer.** Every operator is reimplemented from published algorithms and
93
+ open-source libraries (OpenCV, scikit-image, SciPy, Pillow, PyWavelets, SimpleITK,
94
+ mahotas, kornia/torch), given a single typed interface, and contract-tested
95
+ (finite, deterministic, sort-typed). On top of the operators sits an evolutionary
96
+ search that *designs* pipelines and gates them honestly on a held-out set.
97
+
98
+ Two ways to use it: **apply known operators** (most of the time), or **evolve a new
99
+ pipeline** when no single operator solves the task. It is `pip`-installable and works
100
+ on plain numpy arrays, so other projects can drop it into a vision pipeline directly.
101
+
102
+ <!-- Absolute raw URLs on purpose: this README doubles as the PyPI long description,
103
+ where repo-relative image paths break. -->
104
+ ![Fullseye's own renderer: SDF smooth-union sculpture with AO, soft shadows and ACES tonemap — pure numpy](https://raw.githubusercontent.com/furuse-kazufumi/fullseye/master/docs/articles/assets/render_beauty_hero.png)
105
+
106
+ *Rendered by Fullseye's numpy renderer (SDF → marching cubes → AO / soft shadows / ACES). More real outputs below.*
107
+
108
+ ## Install
109
+
110
+ ```bash
111
+ pip install fullseye # PyPI (numpy + scipy core)
112
+ pip install "fullseye[all]" # + opencv, scikit-image, Pillow, PyWavelets, SimpleITK, kornia/torch, PySide6
113
+ # from a checkout: pip install -e . (per-backend extras: .[opencv] .[skimage] .[gpu] ...)
114
+ ```
115
+
116
+ PyPI: <https://pypi.org/project/fullseye/> · Source / issues / operator corpus:
117
+ GitHub (linked from the PyPI sidebar). After installing, `fullseye-rag` sets up the
118
+ Claude Code RAG skill; `py -3.11 tools/update_fullseye.py` updates a checkout without
119
+ touching your environment (see `docs/AI_RAG_GUIDE.md`).
120
+
121
+ Only numpy and scipy are required; every other backend is optional and only its own
122
+ operators are affected when it is absent (graceful degradation). GPU is opt-in.
123
+
124
+ ## Quickstart (programmatic API)
125
+
126
+ ```python
127
+ import fullseye, numpy as np
128
+
129
+ frame = np.asarray(img, np.float64) # gray H×W in [0,1] (H×W×3 for color)
130
+ edges = fullseye.apply(frame, "sobel_amp") # numpy in, numpy out
131
+ seg = fullseye.apply(frame, "otsu") # image → region (binary {0,1})
132
+ n = fullseye.apply(seg, "count_obj") # region → feature → a float
133
+ out = fullseye.run_pipeline(frame, ["gaussian", "sobel_amp", "otsu"]) # shared knobs
134
+ out = fullseye.run_pipeline(frame, [("gaussian",0.3,0.5), ("otsu",0.4,0.5)]) # per-stage knobs
135
+ fullseye.list_ops(sort="region"); fullseye.op_names() # discover
136
+ ```
137
+
138
+ `apply(image, name, a=0.5, b=0.5)` and `run_pipeline` take an operator name and two
139
+ knobs in `[0, 1]`. Feature operators return a Python float; contour operators a dict.
140
+
141
+ ## Operator library
142
+
143
+ **~1000 typed operators** (measured: 731 distinct 2-D across 46 categories + 265 3-D
144
+ across 55 categories), covering denoising, smoothing, sharpening,
145
+ thresholding/segmentation, morphology, edge/corner/blob detection, distance
146
+ transforms, color-space conversion, texture/shape features, contours, and the 3-D
147
+ modality (point clouds / meshes / volumes / SDF / 6-DoF pose). Sorts: `image` (gray
148
+ `[0,1]`), `color` (RGB), `region` (binary), `feature` (scalar), `contour`, `volume`.
149
+
150
+ Every operator carries a machine-readable Markdown note under `docs/ops/`
151
+ (call form, type contract, HALCON counterpart, references, author/license/version
152
+ fingerprint) — a single source of truth that generates the Studio help pages and
153
+ doubles as a **retrieval (RAG) corpus for AI coding assistants**: an agent such as
154
+ Claude Code can look up operators by contract, chain them by sort, and inspect every
155
+ intermediate result. One command installs the bundled Claude Code skill and pins the
156
+ corpus path (`py -3.11 tools/setup_claude_rag.py` — see `docs/AI_RAG_GUIDE.md`).
157
+ Coverage against HALCON's 2313 operators is measured, not asserted
158
+ (`py -3.11 imgevolve.py coverage`).
159
+
160
+ ```bash
161
+ py -3.11 imgevolve.py ops --search edge # search implemented operators
162
+ py -3.11 imgevolve.py apply gaussian in.png out.png --a 0.6
163
+ py -3.11 imgevolve.py pipeline in.png out.png --ops "gaussian,sobel_amp,otsu"
164
+ py -3.11 imgevolve.py coverage # honest coverage numbers
165
+ ```
166
+
167
+ Adding one operator makes evolution, code generation, the catalog, and the
168
+ machine-readable index (`docs/OP_INDEX.json`) follow automatically.
169
+
170
+ ![Real outputs of classic 2-D vision operators — edges, segmentation, contour measurement](https://raw.githubusercontent.com/furuse-kazufumi/fullseye/master/docs/articles/assets/vision_ops_montage.png)
171
+
172
+ ## Perception stack (robotics-friendly)
173
+
174
+ Building blocks that turn frames into geometry and objects — the pieces a robot
175
+ needs to perceive, measure, and act. A **sensor-simulation suite** (pseudo-LiDAR,
176
+ stereo, event camera / DVS, photometric stereo, TSDF fusion, polarization, focus
177
+ stacking) lets you develop and test perception pipelines without hardware:
178
+
179
+ ![Physical-AI sensor simulation suite — pseudo-LiDAR, stereo depth, event camera (DVS), focus stacking, polarization, camera+IMU Kalman fusion](https://raw.githubusercontent.com/furuse-kazufumi/fullseye/master/docs/articles/assets/physical_ai_montage.png)
180
+
181
+ The **3-D side is where Fullseye differentiates most**: 265 typed 3-D operators
182
+ spanning point clouds / meshes / volumes / SDF — 3-D feature descriptors
183
+ (SHOT, FPFH, spin images), TSDF fusion, fringe projection, photometric stereo,
184
+ superquadric fitting, medial axis, geodesic distance, visual hull, and
185
+ boundary-preserving manifold-strict QEM decimation — all pure numpy behind one
186
+ typed registry. Real data, real numbers (asteroid 25143 Itokawa, JAXA
187
+ Hayabusa / Gaskell shape model):
188
+
189
+ ![Asteroid 25143 Itokawa real point cloud — curvature analysis, ICP self-registration (rot err 0.027°), PCA canonical pose](https://raw.githubusercontent.com/furuse-kazufumi/fullseye/master/docs/articles/assets/itokawa_montage.png)
190
+
191
+ ```python
192
+ import fullseye as fs
193
+ disp = fs.disparity_map(left, right, max_disp=16) # dense stereo (block matching)
194
+ Z = fs.depth_from_disparity(disp, focal=f, baseline=B) # Z = f·B/d
195
+ pts = fs.reproject_to_points(Z, fx=f, fy=f) # point cloud (N,3)
196
+ grid,_= fs.elevation_map(world_pts, cell=0.05) # 2.5-D terrain heightmap
197
+ ok = fs.traversability(grid, cell=0.05, max_step=0.1) # foothold / obstacle mask
198
+ objs = fs.segment_objects(frame, threshold="otsu") # per-object records (geometry + descriptors)
199
+ rgb = fs.colorize_depth(Z); fs.save_ply("cloud.ply", pts) # visualise / export (no matplotlib)
200
+ ```
201
+
202
+ Motion, over time — feed it a real clip:
203
+
204
+ ```python
205
+ frames = fs.read_frames("clip.mp4", gray=True, step=2) # (T,H,W) float64 [0,1] (mp4/gif)
206
+ for a, b in fs.frame_pairs(frames):
207
+ u, v = fs.optical_flow_lk(a, b) # dense flow; also track_points / motion_*
208
+ ```
209
+
210
+ `fs.to_float01(x)` coerces uint8/uint16/bool/PIL/path inputs to float64 `[0,1]`;
211
+ `fs.read_frames` / `iter_frames` / `write_video` / `probe` handle video I/O (see
212
+ `docs/PERCEPTION_REALDATA.md` for measured results on real footage).
213
+
214
+ ## Evolutionary pipeline design
215
+
216
+ When the task is "find an algorithm that maximizes metric *M* on my data", evolve one.
217
+ Fitness is measured on the **training** split only; a **held-out** split is tracked but
218
+ **never selected on**, so the reported generalization is honest rather than a fit to the
219
+ evaluation set.
220
+
221
+ ```bash
222
+ py -3.11 baseline.py --problem denoise --workdir out/mine # honest floor first
223
+ py -3.11 evolve.py --problem denoise --workdir out/mine --gens 40 --pop 24
224
+ py -3.11 robust.py --problem denoise --workdir out/mine --seeds 5 # best-of-N, train-selected
225
+ ```
226
+
227
+ ## Performance (optional GPU batch backend)
228
+
229
+ The default per-image path uses scipy/OpenCV. A batched `torch` fast path (`accel.py`,
230
+ `--device cuda`) accelerates the compute-heavy vectorizable operators. Honest note: on
231
+ CPU the batch path speeds up heavy operators (≈1.6–2.2×) but *loses* on trivial
232
+ pointwise ops (tensor-conversion overhead); the real win is on GPU, where that overhead
233
+ amortizes over large parallelism.
234
+
235
+ ## Fullseye Studio (HDevelop-style IDE)
236
+
237
+ `fullseye-studio` (or `py -3.11 studio.py` from a checkout) opens the visual
238
+ workbench: operator browser with generated help
239
+ (2-D and 3-D), pipeline editor with per-stage timing, breakpoints, continue /
240
+ run-from-line execution control, a variable window with watch expressions and
241
+ right-click inspection, multi-window graphics scriptable from programs
242
+ (`dev_open_window` / `dev_set_window` / `dev_set_window_extents`), worked-example
243
+ galleries, and a tabbed **Python Editor** that opens any sample as editable, runnable
244
+ code (F5, subprocess). Combined with the RAG corpus this is aimed at being an
245
+ integrated environment for Physical-AI perception work: the AI writes and runs the
246
+ pipeline, and the human inspects what it "sees" in the same windows.
247
+
248
+ ## Academic use
249
+
250
+ Fullseye is designed to be citable and reproducible: per-operator notes carry real
251
+ literature references (no fabricated DOIs), versions are pinned to the code by a
252
+ registry fingerprint with a CI drift test, and evaluation follows the honest
253
+ held-out discipline above. If you use it in academic work, please cite via
254
+ `CITATION.cff`.
255
+
256
+ ## Documentation map
257
+
258
+ Everything below lives in the repo — start at the guide that matches what you want to do:
259
+
260
+ | You want to… | Read |
261
+ |---|---|
262
+ | See what the operators produce (result gallery) | `docs/GALLERY.md` |
263
+ | Look up any of the ~1000 operators | `docs/ops/INDEX.md` (full TOC) · `docs/OP_CATALOG.md` (one-page catalog) |
264
+ | Find real sample data (meshes / volumes / images, with licenses) | `docs/ops/SAMPLES.md` |
265
+ | Use Fullseye as an AI/RAG knowledge base | `docs/AI_RAG_GUIDE.md` (+ `fullseye-rag`) |
266
+ | Drive the Studio IDE | `docs/STUDIO_GUIDE.md` · `docs/HDEVELOP_DEV_OPS.md` (dev_* window ops) |
267
+ | Add an operator | `docs/ADDING_OPS.md` · `CONTRIBUTING.md` |
268
+ | Understand the language policy (en/ja) | `docs/I18N.md` |
269
+ | Update a checkout safely | `tools/update_fullseye.py --check` |
270
+ | Cite Fullseye | `CITATION.cff` |
271
+
272
+ ## Design principles
273
+
274
+ - **Reimplemented from public knowledge** — published algorithms and open-source
275
+ libraries, unified behind one typed interface; not derived from any proprietary product.
276
+ - **Honest by construction** — held-out data is never used for selection; coverage and
277
+ benchmark numbers are measured, not asserted; limitations are disclosed, not hidden.
278
+ - **Optional heavy dependencies** — a numpy+scipy core always works; richer backends and
279
+ GPU are opt-in.
280
+
281
+ ## License
282
+
283
+ Apache-2.0.