python-microscopy 25.11.20__cp313-cp313-win_amd64.whl
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.
- PYME/Acquire/ActionManager.py +450 -0
- PYME/Acquire/ExecTools.py +235 -0
- PYME/Acquire/Hardware/AAOptoelectronics/MDS.py +175 -0
- PYME/Acquire/Hardware/AAOptoelectronics/__init__.py +0 -0
- PYME/Acquire/Hardware/ARCoptix/__init__.py +0 -0
- PYME/Acquire/Hardware/ARCoptix/lcdriver.py +149 -0
- PYME/Acquire/Hardware/ARCoptix/lcserver32.py +123 -0
- PYME/Acquire/Hardware/AndorIXon/AndorCam.py +1095 -0
- PYME/Acquire/Hardware/AndorIXon/AndorControlFrame.py +312 -0
- PYME/Acquire/Hardware/AndorIXon/AndorIXon.py +737 -0
- PYME/Acquire/Hardware/AndorIXon/__init__.py +27 -0
- PYME/Acquire/Hardware/AndorNeo/AndorNeo.py +644 -0
- PYME/Acquire/Hardware/AndorNeo/AndorNeoControlFrame.py +161 -0
- PYME/Acquire/Hardware/AndorNeo/AndorZyla.py +761 -0
- PYME/Acquire/Hardware/AndorNeo/SDK3.py +307 -0
- PYME/Acquire/Hardware/AndorNeo/SDK3Cam.py +171 -0
- PYME/Acquire/Hardware/AndorNeo/ZylaControlPanel.py +105 -0
- PYME/Acquire/Hardware/AndorNeo/__init__.py +22 -0
- PYME/Acquire/Hardware/AndorNeo/parseAtdebug.py +46 -0
- PYME/Acquire/Hardware/AndorNeo/plotTimings.py +73 -0
- PYME/Acquire/Hardware/AndorNeo/testNeo.py +62 -0
- PYME/Acquire/Hardware/Camera.py +1199 -0
- PYME/Acquire/Hardware/CameraSkeleton.py +642 -0
- PYME/Acquire/Hardware/Coherent/OBIS.py +147 -0
- PYME/Acquire/Hardware/Coherent/Sapphire.py +162 -0
- PYME/Acquire/Hardware/Coherent/__init__.py +0 -0
- PYME/Acquire/Hardware/DMDGui.py +198 -0
- PYME/Acquire/Hardware/DigiData/DigiData.py +95 -0
- PYME/Acquire/Hardware/DigiData/DigiDataClient.py +30 -0
- PYME/Acquire/Hardware/DigiData/RemoteDigiData.py +51 -0
- PYME/Acquire/Hardware/DigiData/__init__.py +24 -0
- PYME/Acquire/Hardware/DigiData/axDD132x.py +348 -0
- PYME/Acquire/Hardware/EMCCDTheory.py +41 -0
- PYME/Acquire/Hardware/ExciterWheel.py +167 -0
- PYME/Acquire/Hardware/FilterWheel.py +184 -0
- PYME/Acquire/Hardware/FocCorr.py +106 -0
- PYME/Acquire/Hardware/FocCorrR.py +196 -0
- PYME/Acquire/Hardware/FrFilter.py +51 -0
- PYME/Acquire/Hardware/GCS/GCS_DLL.py +370 -0
- PYME/Acquire/Hardware/GCS/__init__.py +0 -0
- PYME/Acquire/Hardware/GCS/gcs.py +210 -0
- PYME/Acquire/Hardware/HamamatsuDCAM/HamamatsuDCAM.py +662 -0
- PYME/Acquire/Hardware/HamamatsuDCAM/HamamatsuORCA.py +602 -0
- PYME/Acquire/Hardware/HamamatsuDCAM/Hamamatsu_control_panel.py +54 -0
- PYME/Acquire/Hardware/HamamatsuDCAM/__init__.py +23 -0
- PYME/Acquire/Hardware/LaserControlFrame.py +160 -0
- PYME/Acquire/Hardware/MPBCommunications/MPBCW.py +132 -0
- PYME/Acquire/Hardware/MPBCommunications/__init__.py +0 -0
- PYME/Acquire/Hardware/Mercury/Mercury.py +269 -0
- PYME/Acquire/Hardware/Mercury/PI_Mercury_GCS_DLL.py +857 -0
- PYME/Acquire/Hardware/Mercury/__init__.py +22 -0
- PYME/Acquire/Hardware/Mercury/mercuryStepper.py +203 -0
- PYME/Acquire/Hardware/Mercury/mercuryStepperGCS.py +281 -0
- PYME/Acquire/Hardware/NikonTE2000.py +68 -0
- PYME/Acquire/Hardware/NikonTi.py +214 -0
- PYME/Acquire/Hardware/NikonTiGUI.py +81 -0
- PYME/Acquire/Hardware/OrielCornerstone.py +125 -0
- PYME/Acquire/Hardware/PM100USB.py +51 -0
- PYME/Acquire/Hardware/Piezos/__init__.py +22 -0
- PYME/Acquire/Hardware/Piezos/base_piezo.py +108 -0
- PYME/Acquire/Hardware/Piezos/offsetPiezo.py +162 -0
- PYME/Acquire/Hardware/Piezos/offsetPiezoREST.py +308 -0
- PYME/Acquire/Hardware/Piezos/piezo_c867.py +486 -0
- PYME/Acquire/Hardware/Piezos/piezo_e255.py +68 -0
- PYME/Acquire/Hardware/Piezos/piezo_e662.py +61 -0
- PYME/Acquire/Hardware/Piezos/piezo_e709.py +434 -0
- PYME/Acquire/Hardware/Piezos/piezo_e816.py +452 -0
- PYME/Acquire/Hardware/Piezos/piezo_e816_corr.py +70 -0
- PYME/Acquire/Hardware/Piezos/piezo_e816_dll.py +518 -0
- PYME/Acquire/Hardware/Piezos/piezo_e816b.py +70 -0
- PYME/Acquire/Hardware/Piezos/piezo_pipython_gcs.py +560 -0
- PYME/Acquire/Hardware/Piezos/piezo_test.py +55 -0
- PYME/Acquire/Hardware/Simulator/EmpiricalHist.py +273 -0
- PYME/Acquire/Hardware/Simulator/__init__.py +22 -0
- PYME/Acquire/Hardware/Simulator/dSimControl.py +961 -0
- PYME/Acquire/Hardware/Simulator/fakeCam.py +651 -0
- PYME/Acquire/Hardware/Simulator/fakePiezo.py +95 -0
- PYME/Acquire/Hardware/Simulator/fluor.py +336 -0
- PYME/Acquire/Hardware/Simulator/illuminate.cp313-win_amd64.dll.a +0 -0
- PYME/Acquire/Hardware/Simulator/illuminate.cp313-win_amd64.pyd +0 -0
- PYME/Acquire/Hardware/Simulator/illuminate.pyx +93 -0
- PYME/Acquire/Hardware/Simulator/lasersliders.py +90 -0
- PYME/Acquire/Hardware/Simulator/rend_im.py +446 -0
- PYME/Acquire/Hardware/Simulator/setup.py +69 -0
- PYME/Acquire/Hardware/Simulator/simcontrol.py +348 -0
- PYME/Acquire/Hardware/Simulator/simui_wx.py +794 -0
- PYME/Acquire/Hardware/Tango/__init__.py +0 -0
- PYME/Acquire/Hardware/Tango/marzhauser_tango.py +583 -0
- PYME/Acquire/Hardware/TiLightCrafter.py +388 -0
- PYME/Acquire/Hardware/__init__.py +22 -0
- PYME/Acquire/Hardware/aotf.py +271 -0
- PYME/Acquire/Hardware/arclampshutterpanel.py +71 -0
- PYME/Acquire/Hardware/cameraSoftwareBuffer.py +215 -0
- PYME/Acquire/Hardware/camera_noise.py +270 -0
- PYME/Acquire/Hardware/ccdAdjPanel.py +188 -0
- PYME/Acquire/Hardware/ccdCalibrator.py +161 -0
- PYME/Acquire/Hardware/cobaltLaser.py +108 -0
- PYME/Acquire/Hardware/cobaltLaser561.py +94 -0
- PYME/Acquire/Hardware/comports.py +26 -0
- PYME/Acquire/Hardware/driftTrackGUI.py +488 -0
- PYME/Acquire/Hardware/driftTracking.py +595 -0
- PYME/Acquire/Hardware/fakeShutters.py +52 -0
- PYME/Acquire/Hardware/focusKeys.py +204 -0
- PYME/Acquire/Hardware/focus_locks/__init__.py +0 -0
- PYME/Acquire/Hardware/focus_locks/reflection_focus_lock.py +684 -0
- PYME/Acquire/Hardware/frZStage.py +117 -0
- PYME/Acquire/Hardware/fw102.py +38 -0
- PYME/Acquire/Hardware/ids_peak_cam.py +561 -0
- PYME/Acquire/Hardware/ioslave.py +305 -0
- PYME/Acquire/Hardware/lasers.py +292 -0
- PYME/Acquire/Hardware/matchboxLaser.py +58 -0
- PYME/Acquire/Hardware/microscope_adapter.py +104 -0
- PYME/Acquire/Hardware/mpd_picosecond_delayer.py +395 -0
- PYME/Acquire/Hardware/multiview.py +287 -0
- PYME/Acquire/Hardware/olympusix81.py +59 -0
- PYME/Acquire/Hardware/pco/__init__.py +0 -0
- PYME/Acquire/Hardware/pco/pco_cam.py +348 -0
- PYME/Acquire/Hardware/pco/pco_edge_42_lt.py +34 -0
- PYME/Acquire/Hardware/pco/pco_sdk.py +1645 -0
- PYME/Acquire/Hardware/pco/pco_sdk_cam.py +518 -0
- PYME/Acquire/Hardware/pco/pco_sdk_cam_control_panel.py +54 -0
- PYME/Acquire/Hardware/phoxxLaser.py +199 -0
- PYME/Acquire/Hardware/phoxxLaserOLD.py +242 -0
- PYME/Acquire/Hardware/priorLumen.py +102 -0
- PYME/Acquire/Hardware/priorarclampshutter.py +52 -0
- PYME/Acquire/Hardware/setup.py +50 -0
- PYME/Acquire/Hardware/spacenav.py +148 -0
- PYME/Acquire/Hardware/splitter.py +394 -0
- PYME/Acquire/Hardware/thorlabsPiezo.py +98 -0
- PYME/Acquire/Hardware/thorlabs_cam.py +136 -0
- PYME/Acquire/Hardware/thorlabs_mff_flipper.py +400 -0
- PYME/Acquire/Hardware/toptica_ibeam.py +51 -0
- PYME/Acquire/Hardware/uc480/AndorControlFrame.py +308 -0
- PYME/Acquire/Hardware/uc480/__init__.py +27 -0
- PYME/Acquire/Hardware/uc480/uCam480.py +695 -0
- PYME/Acquire/Hardware/uc480/uc480.py +189 -0
- PYME/Acquire/Hardware/uc480/uc480Deprecated.py +87 -0
- PYME/Acquire/Hardware/uc480/uc480_h.py +767 -0
- PYME/Acquire/Hardware/uc480/uc480_h_gen.py +62 -0
- PYME/Acquire/Hardware/uc480/ucCamControlFrame.py +83 -0
- PYME/Acquire/Hardware/ueye.py +702 -0
- PYME/Acquire/PYMEAcquire.py +186 -0
- PYME/Acquire/Protocols/DMDMFM.py +74 -0
- PYME/Acquire/Protocols/__init__.py +22 -0
- PYME/Acquire/Protocols/darkCalibrate.py +56 -0
- PYME/Acquire/Protocols/dual671_470.py +45 -0
- PYME/Acquire/Protocols/dual671_488.py +46 -0
- PYME/Acquire/Protocols/gainCal.py +53 -0
- PYME/Acquire/Protocols/htsms-cal-psf.py +32 -0
- PYME/Acquire/Protocols/htsms-cal-registration.py +52 -0
- PYME/Acquire/Protocols/htsms-flow.py +29 -0
- PYME/Acquire/Protocols/htsms-staggered.py +31 -0
- PYME/Acquire/Protocols/htsms-tile.py +68 -0
- PYME/Acquire/Protocols/htsms-two-color.py +29 -0
- PYME/Acquire/Protocols/htsms-widefield.py +32 -0
- PYME/Acquire/Protocols/paint671.py +61 -0
- PYME/Acquire/Protocols/photoconversion.py +52 -0
- PYME/Acquire/Protocols/photoconversion2.py +55 -0
- PYME/Acquire/Protocols/prebleach488.py +70 -0
- PYME/Acquire/Protocols/prebleach490.py +69 -0
- PYME/Acquire/Protocols/prebleach561.py +72 -0
- PYME/Acquire/Protocols/prebleach561NeomEos2.py +70 -0
- PYME/Acquire/Protocols/prebleach561NeomEos2ND1.py +70 -0
- PYME/Acquire/Protocols/prebleach642.py +70 -0
- PYME/Acquire/Protocols/prebleach671.py +69 -0
- PYME/Acquire/Protocols/prebleach671ND1.py +58 -0
- PYME/Acquire/Protocols/prebleach671ND2.py +57 -0
- PYME/Acquire/Protocols/prebleach671Neo.py +69 -0
- PYME/Acquire/Protocols/recover671.py +62 -0
- PYME/Acquire/Protocols/sequence642_488.py +85 -0
- PYME/Acquire/Protocols/sequence642_561.py +87 -0
- PYME/Acquire/Protocols/shiftfield.py +198 -0
- PYME/Acquire/Protocols/simul488.py +59 -0
- PYME/Acquire/Protocols/simul642.py +63 -0
- PYME/Acquire/Protocols/simul642HTSMS.py +63 -0
- PYME/Acquire/Protocols/simulPA.py +37 -0
- PYME/Acquire/Protocols/simulSIM.py +76 -0
- PYME/Acquire/Protocols/simulStep.py +62 -0
- PYME/Acquire/Protocols/spdscan.py +178 -0
- PYME/Acquire/Protocols/standard470.py +45 -0
- PYME/Acquire/Protocols/standard488.py +47 -0
- PYME/Acquire/Protocols/standard671.py +48 -0
- PYME/Acquire/Protocols/standard671_no532.py +47 -0
- PYME/Acquire/Protocols/standardArclamp.py +46 -0
- PYME/Acquire/Protocols/strip_tile.py +204 -0
- PYME/Acquire/Protocols/tile.py +204 -0
- PYME/Acquire/Protocols/tile3D.py +192 -0
- PYME/Acquire/Protocols/tile671.py +190 -0
- PYME/Acquire/Protocols/tile_triggered.py +189 -0
- PYME/Acquire/Scripts/init.py +232 -0
- PYME/Acquire/Scripts/init_N1_Ti_Exeter_ZIx.py +374 -0
- PYME/Acquire/Scripts/init_N2_Ti_Zyla_lasers.py +290 -0
- PYME/Acquire/Scripts/init_Neo.py +266 -0
- PYME/Acquire/Scripts/init_NeoSim.py +159 -0
- PYME/Acquire/Scripts/init_TIRF.py +232 -0
- PYME/Acquire/Scripts/init_TIRF_Neo.py +242 -0
- PYME/Acquire/Scripts/init_TIRF_NeoO.py +241 -0
- PYME/Acquire/Scripts/init_TIRF_onecam.py +233 -0
- PYME/Acquire/Scripts/init_Ti.py +257 -0
- PYME/Acquire/Scripts/init_UOA_n.py +256 -0
- PYME/Acquire/Scripts/init_UOA_n2.py +246 -0
- PYME/Acquire/Scripts/init_Y1.py +249 -0
- PYME/Acquire/Scripts/init_Zyla.py +260 -0
- PYME/Acquire/Scripts/init_drift_tracking.py +80 -0
- PYME/Acquire/Scripts/init_emccd_basic.py +277 -0
- PYME/Acquire/Scripts/init_htsms.py +277 -0
- PYME/Acquire/Scripts/init_htsms_focus_lock.py +132 -0
- PYME/Acquire/Scripts/init_micrpi.py +45 -0
- PYME/Acquire/Scripts/init_orca.py +70 -0
- PYME/Acquire/Scripts/init_pco.py +49 -0
- PYME/Acquire/Scripts/init_rev.py +74 -0
- PYME/Acquire/Scripts/init_sim100.py +169 -0
- PYME/Acquire/Scripts/init_sim103.py +169 -0
- PYME/Acquire/Scripts/init_sim2.py +211 -0
- PYME/Acquire/Scripts/init_sim50.py +169 -0
- PYME/Acquire/Scripts/init_sim75.py +169 -0
- PYME/Acquire/Scripts/init_sim_drift_tracking.py +166 -0
- PYME/Acquire/Scripts/init_sim_htsms.py +224 -0
- PYME/Acquire/Scripts/init_sim_htsms_n.py +233 -0
- PYME/Acquire/Scripts/init_sim_main.py +229 -0
- PYME/Acquire/Scripts/init_sim_min.py +197 -0
- PYME/Acquire/Scripts/init_sim_rem.py +176 -0
- PYME/Acquire/Scripts/init_smi1.py +110 -0
- PYME/Acquire/Scripts/init_spectro.py +78 -0
- PYME/Acquire/Scripts/init_spim.py +116 -0
- PYME/Acquire/Scripts/init_thorcam.py +62 -0
- PYME/Acquire/Scripts/init_twophoton.py +112 -0
- PYME/Acquire/Scripts/init_uc480.py +262 -0
- PYME/Acquire/Scripts/init_ueye.py +261 -0
- PYME/Acquire/SpoolController.py +958 -0
- PYME/Acquire/Utils/MultiPointScanner.py +80 -0
- PYME/Acquire/Utils/__init__.py +13 -0
- PYME/Acquire/Utils/failsafe.py +157 -0
- PYME/Acquire/Utils/fastTiler.py +153 -0
- PYME/Acquire/Utils/pointScanner.py +496 -0
- PYME/Acquire/Utils/sarcSpacing.py +86 -0
- PYME/Acquire/Utils/strip_tiler.py +93 -0
- PYME/Acquire/Utils/tiler.py +464 -0
- PYME/Acquire/Utils/vibrationAnalysis.py +65 -0
- PYME/Acquire/__init__.py +44 -0
- PYME/Acquire/acquire_client.py +90 -0
- PYME/Acquire/acquire_server.py +316 -0
- PYME/Acquire/acquirebase.py +139 -0
- PYME/Acquire/acquiremainframe.py +716 -0
- PYME/Acquire/acquirewx.py +61 -0
- PYME/Acquire/acquisition_base.py +148 -0
- PYME/Acquire/actions.py +209 -0
- PYME/Acquire/autofocus.py +54 -0
- PYME/Acquire/eventLog.py +95 -0
- PYME/Acquire/event_loop.py +119 -0
- PYME/Acquire/frameWrangler.py +530 -0
- PYME/Acquire/htsms/__init__.py +8 -0
- PYME/Acquire/htsms/rule_ui.py +970 -0
- PYME/Acquire/htsms/rule_ui_v2.py +573 -0
- PYME/Acquire/htsms/tweeter.py +222 -0
- PYME/Acquire/microscope.py +1050 -0
- PYME/Acquire/positionTracker.py +181 -0
- PYME/Acquire/protocol.py +299 -0
- PYME/Acquire/protocol_acquisition.py +404 -0
- PYME/Acquire/sampleInformation.py +591 -0
- PYME/Acquire/sampleInformationDjangoDirect.py +446 -0
- PYME/Acquire/setup.py +52 -0
- PYME/Acquire/stackSettings.py +295 -0
- PYME/Acquire/stage_leveling.py +285 -0
- PYME/Acquire/ui/AnalysisSettingsUI.py +184 -0
- PYME/Acquire/ui/HDFSpoolFrame.py +584 -0
- PYME/Acquire/ui/__init__.py +0 -0
- PYME/Acquire/ui/actionUI.py +892 -0
- PYME/Acquire/ui/focus_lock_gui.py +149 -0
- PYME/Acquire/ui/intensity_trace.py +143 -0
- PYME/Acquire/ui/intsliders.py +222 -0
- PYME/Acquire/ui/lasersliders.py +329 -0
- PYME/Acquire/ui/mpd_picosecond_delay_panel.py +69 -0
- PYME/Acquire/ui/multiview_select.py +77 -0
- PYME/Acquire/ui/positionUI.py +519 -0
- PYME/Acquire/ui/preflight.py +58 -0
- PYME/Acquire/ui/scanner_panel.py +41 -0
- PYME/Acquire/ui/selectCameraPanel.py +46 -0
- PYME/Acquire/ui/seqdialog.py +501 -0
- PYME/Acquire/ui/splashScreen.py +175 -0
- PYME/Acquire/ui/spool_panel.py +830 -0
- PYME/Acquire/ui/tile_panel.py +556 -0
- PYME/Acquire/ui/tilesettingsui.py +91 -0
- PYME/Acquire/ui/voxelSizeDialog.py +149 -0
- PYME/Acquire/webui/__init__.py +36 -0
- PYME/Acquire/webui/ipy.py +361 -0
- PYME/Acquire/webui/static/css/pyme-bootstrap.css +9908 -0
- PYME/Acquire/webui/static/css/pymeacquire.css +85 -0
- PYME/Acquire/webui/static/js/pymeacquire.js +375 -0
- PYME/Acquire/webui/static/js/pzf.js +95 -0
- PYME/Acquire/webui/templates/PYMEAcquire.html +232 -0
- PYME/Acquire/webui/templates/login.html +84 -0
- PYME/Acquire/webui/templates/xtermpage.html +106 -0
- PYME/Acquire/xyztc.py +418 -0
- PYME/Acquire/zScanner.py +287 -0
- PYME/Analysis/BleachProfile/__init__.py +26 -0
- PYME/Analysis/BleachProfile/deMod.py +91 -0
- PYME/Analysis/BleachProfile/fitRecover.py +90 -0
- PYME/Analysis/BleachProfile/intensProf.py +519 -0
- PYME/Analysis/BleachProfile/kinModels.py +507 -0
- PYME/Analysis/BleachProfile/rawIntensity.py +227 -0
- PYME/Analysis/BleachProfile/rollins.py +555 -0
- PYME/Analysis/Colocalisation/__init__.py +27 -0
- PYME/Analysis/Colocalisation/colocScaleDep.py +126 -0
- PYME/Analysis/Colocalisation/correlationCoeffs.py +198 -0
- PYME/Analysis/Colocalisation/distColoc.py +110 -0
- PYME/Analysis/Colocalisation/edtColoc.py +191 -0
- PYME/Analysis/MetaData.py +278 -0
- PYME/Analysis/PSFEst/__init__.py +27 -0
- PYME/Analysis/PSFEst/dec.py +283 -0
- PYME/Analysis/PSFEst/extractImages.py +316 -0
- PYME/Analysis/PSFEst/fit_psf_zernikes.py +194 -0
- PYME/Analysis/PSFEst/psfQuality.py +225 -0
- PYME/Analysis/PSFGen/__init__.py +40 -0
- PYME/Analysis/PSFGen/fourier.py +138 -0
- PYME/Analysis/PSFGen/fourierHNA.py +1108 -0
- PYME/Analysis/PSFGen/fourierHNA2.py +979 -0
- PYME/Analysis/PSFGen/genCRBcurves.py +185 -0
- PYME/Analysis/PSFGen/nijboer_zernike.py +79 -0
- PYME/Analysis/PSFGen/ps_app.cp313-win_amd64.dll.a +0 -0
- PYME/Analysis/PSFGen/ps_app.cp313-win_amd64.pyd +0 -0
- PYME/Analysis/PSFGen/test_ps_app.py +24 -0
- PYME/Analysis/Tracking/__init__.py +3 -0
- PYME/Analysis/Tracking/msd.py +57 -0
- PYME/Analysis/Tracking/trackUtils.py +528 -0
- PYME/Analysis/Tracking/tracking.py +152 -0
- PYME/Analysis/__init__.py +30 -0
- PYME/Analysis/_fithelpers.py +161 -0
- PYME/Analysis/angleFilter.py +287 -0
- PYME/Analysis/annealThresh.py +157 -0
- PYME/Analysis/autoencoder_classifier.py +45 -0
- PYME/Analysis/binAvg.py +144 -0
- PYME/Analysis/composite.py +183 -0
- PYME/Analysis/cramerRao.py +259 -0
- PYME/Analysis/deTile.py +441 -0
- PYME/Analysis/density_filter.py +45 -0
- PYME/Analysis/distributed_pyramid.py +426 -0
- PYME/Analysis/fiducial_matching.py +220 -0
- PYME/Analysis/gen_sCMOS_maps.py +355 -0
- PYME/Analysis/graphing_filters.py +311 -0
- PYME/Analysis/implicitFilter.py +359 -0
- PYME/Analysis/keep_pairs.py +69 -0
- PYME/Analysis/optic_flow.py +108 -0
- PYME/Analysis/piecewise.py +36 -0
- PYME/Analysis/piecewiseMapping.py +304 -0
- PYME/Analysis/piezo_movement_correction.py +153 -0
- PYME/Analysis/points/DeClump/__init__.py +78 -0
- PYME/Analysis/points/DeClump/deClump.cp313-win_amd64.dll.a +0 -0
- PYME/Analysis/points/DeClump/deClump.cp313-win_amd64.pyd +0 -0
- PYME/Analysis/points/DeClump/deClumpGUI.py +87 -0
- PYME/Analysis/points/DeClump/pyDeClump.py +284 -0
- PYME/Analysis/points/DeClump/testClump.py +40 -0
- PYME/Analysis/points/DistHist/__init__.py +25 -0
- PYME/Analysis/points/DistHist/distHist.cp313-win_amd64.dll.a +0 -0
- PYME/Analysis/points/DistHist/distHist.cp313-win_amd64.pyd +0 -0
- PYME/Analysis/points/DistHist/distHistThreaded.py +71 -0
- PYME/Analysis/points/DistHist/setup.py +54 -0
- PYME/Analysis/points/EdgeDB/__init__.py +24 -0
- PYME/Analysis/points/EdgeDB/edgeDB.cp313-win_amd64.dll.a +0 -0
- PYME/Analysis/points/EdgeDB/edgeDB.cp313-win_amd64.pyd +0 -0
- PYME/Analysis/points/EdgeDB/edgeTest.py +66 -0
- PYME/Analysis/points/EdgeDB/edges.py +102 -0
- PYME/Analysis/points/EdgeDB/segment.py +75 -0
- PYME/Analysis/points/EdgeDB/setup.py +54 -0
- PYME/Analysis/points/QuadTree/QTrend.py +232 -0
- PYME/Analysis/points/QuadTree/__init__.py +25 -0
- PYME/Analysis/points/QuadTree/pointQT.py +227 -0
- PYME/Analysis/points/QuadTree/pointQTF.py +254 -0
- PYME/Analysis/points/QuadTree/qtUtils.py +36 -0
- PYME/Analysis/points/QuadTree/rendQT.py +118 -0
- PYME/Analysis/points/SoftRend/__init__.py +24 -0
- PYME/Analysis/points/SoftRend/setup.py +61 -0
- PYME/Analysis/points/SoftRend/testTetrahedra.py +41 -0
- PYME/Analysis/points/SoftRend/triRend.cp313-win_amd64.dll.a +0 -0
- PYME/Analysis/points/SoftRend/triRend.cp313-win_amd64.pyd +0 -0
- PYME/Analysis/points/__init__.py +3 -0
- PYME/Analysis/points/arcfit/__init__.py +1 -0
- PYME/Analysis/points/arcfit/arcmf.cp313-win_amd64.dll.a +0 -0
- PYME/Analysis/points/arcfit/arcmf.cp313-win_amd64.pyd +0 -0
- PYME/Analysis/points/arcfit/setup.py +51 -0
- PYME/Analysis/points/astigmatism/__init__.py +0 -0
- PYME/Analysis/points/astigmatism/astigTools.py +338 -0
- PYME/Analysis/points/astigmatism/astiglookup.cp313-win_amd64.dll.a +0 -0
- PYME/Analysis/points/astigmatism/astiglookup.cp313-win_amd64.pyd +0 -0
- PYME/Analysis/points/astigmatism/setup.py +54 -0
- PYME/Analysis/points/cluster_morphology.py +199 -0
- PYME/Analysis/points/coordinate_tools.py +278 -0
- PYME/Analysis/points/features/__init__.py +0 -0
- PYME/Analysis/points/features/metal.py +46 -0
- PYME/Analysis/points/features/shaders/vect_feat_3d.metal +49 -0
- PYME/Analysis/points/fiducials.py +142 -0
- PYME/Analysis/points/gen3DTriangs.py +796 -0
- PYME/Analysis/points/moments.py +143 -0
- PYME/Analysis/points/multiview.py +458 -0
- PYME/Analysis/points/objectMeasure.py +206 -0
- PYME/Analysis/points/qpaint.py +97 -0
- PYME/Analysis/points/rings.py +372 -0
- PYME/Analysis/points/ripleys.py +427 -0
- PYME/Analysis/points/segmentLL.py +134 -0
- PYME/Analysis/points/setup.py +56 -0
- PYME/Analysis/points/spherical_harmonics.py +909 -0
- PYME/Analysis/points/surfit.py +829 -0
- PYME/Analysis/points/tCluster.py +75 -0
- PYME/Analysis/points/traveling_salesperson/__init__.py +0 -0
- PYME/Analysis/points/traveling_salesperson/queue_opt.py +117 -0
- PYME/Analysis/points/traveling_salesperson/sectioned_two_opt.py +327 -0
- PYME/Analysis/points/traveling_salesperson/setup.py +40 -0
- PYME/Analysis/points/traveling_salesperson/sort.py +78 -0
- PYME/Analysis/points/traveling_salesperson/two_opt.py +189 -0
- PYME/Analysis/points/traveling_salesperson/two_opt_utils.cp313-win_amd64.dll.a +0 -0
- PYME/Analysis/points/traveling_salesperson/two_opt_utils.cp313-win_amd64.pyd +0 -0
- PYME/Analysis/points/traveling_salesperson/two_opt_utils.pyx +41 -0
- PYME/Analysis/points/twoColour.py +572 -0
- PYME/Analysis/points/twoColourPlot.py +107 -0
- PYME/Analysis/processLogger.py +129 -0
- PYME/Analysis/profile_extraction.py +72 -0
- PYME/Analysis/setup.py +60 -0
- PYME/Analysis/splitting.py +372 -0
- PYME/Analysis/svmSegment.py +214 -0
- PYME/Analysis/thresholding.py +192 -0
- PYME/Analysis/tile_pyramid.py +938 -0
- PYME/Analysis/widefieldify.py +54 -0
- PYME/DSView/DisplayOptionsPanel.py +503 -0
- PYME/DSView/LUT/__init__.py +33 -0
- PYME/DSView/LUT/lut.cp313-win_amd64.dll.a +0 -0
- PYME/DSView/LUT/lut.cp313-win_amd64.pyd +0 -0
- PYME/DSView/LUT/setup.py +54 -0
- PYME/DSView/OpenSequenceDialog.py +83 -0
- PYME/DSView/OverlaysPanel.py +111 -0
- PYME/DSView/__init__.py +32 -0
- PYME/DSView/arrayViewPanel.py +1035 -0
- PYME/DSView/displayOptions.py +453 -0
- PYME/DSView/displaySettingsPanel.py +271 -0
- PYME/DSView/dsviewer.py +542 -0
- PYME/DSView/eventLogViewer.py +805 -0
- PYME/DSView/fitInfo.py +486 -0
- PYME/DSView/htmlServe.py +72 -0
- PYME/DSView/logparser.py +100 -0
- PYME/DSView/modules/LMAnalysis.py +1053 -0
- PYME/DSView/modules/LMDisplay.py +194 -0
- PYME/DSView/modules/__init__.py +162 -0
- PYME/DSView/modules/_base.py +39 -0
- PYME/DSView/modules/annotation.py +725 -0
- PYME/DSView/modules/arrayView.py +71 -0
- PYME/DSView/modules/blobFinding.py +455 -0
- PYME/DSView/modules/blobMeasure.py +1093 -0
- PYME/DSView/modules/camera_maps.py +38 -0
- PYME/DSView/modules/coloc.py +414 -0
- PYME/DSView/modules/composite.py +715 -0
- PYME/DSView/modules/convnet.py +24 -0
- PYME/DSView/modules/cropping.py +133 -0
- PYME/DSView/modules/dark_and_flatfield.py +31 -0
- PYME/DSView/modules/deconvolution.py +499 -0
- PYME/DSView/modules/eventView.py +80 -0
- PYME/DSView/modules/extractBlobs.py +46 -0
- PYME/DSView/modules/fastGraphPanel.py +85 -0
- PYME/DSView/modules/filtering.py +335 -0
- PYME/DSView/modules/flowView.py +268 -0
- PYME/DSView/modules/fourierRingCorrelation.py +172 -0
- PYME/DSView/modules/gl_image_view.py +12 -0
- PYME/DSView/modules/graphViewPanel.py +272 -0
- PYME/DSView/modules/measure/__init__.py +1 -0
- PYME/DSView/modules/measure/filterPan.py +239 -0
- PYME/DSView/modules/metadataView.py +28 -0
- PYME/DSView/modules/multithreshold.py +98 -0
- PYME/DSView/modules/neuroglancer.py +129 -0
- PYME/DSView/modules/object_tagging.py +157 -0
- PYME/DSView/modules/particleTracking.py +463 -0
- PYME/DSView/modules/playback.py +256 -0
- PYME/DSView/modules/prebleachExtraction.py +75 -0
- PYME/DSView/modules/profileFitting.py +137 -0
- PYME/DSView/modules/profilePlotting.py +408 -0
- PYME/DSView/modules/projections.py +48 -0
- PYME/DSView/modules/psfExtraction.py +570 -0
- PYME/DSView/modules/psfGeneration.py +138 -0
- PYME/DSView/modules/psfTools.py +661 -0
- PYME/DSView/modules/pupilTools.py +204 -0
- PYME/DSView/modules/pupilView.py +139 -0
- PYME/DSView/modules/recipes.py +266 -0
- PYME/DSView/modules/redimension.py +75 -0
- PYME/DSView/modules/segmentation.py +192 -0
- PYME/DSView/modules/sheetView.py +24 -0
- PYME/DSView/modules/shell.py +39 -0
- PYME/DSView/modules/shiftfield_estimation.py +433 -0
- PYME/DSView/modules/sparkprepare.py +94 -0
- PYME/DSView/modules/splitter.py +148 -0
- PYME/DSView/modules/synchronise.py +64 -0
- PYME/DSView/modules/templates/astigCal.html +42 -0
- PYME/DSView/modules/templates/measureView.html +69 -0
- PYME/DSView/modules/templates/measureView2.html +48 -0
- PYME/DSView/modules/templates/measureView3.html +98 -0
- PYME/DSView/modules/templates/trackView.html +139 -0
- PYME/DSView/modules/templates/tracksOverview.html +21 -0
- PYME/DSView/modules/tiling.py +147 -0
- PYME/DSView/modules/unmixing.py +148 -0
- PYME/DSView/modules/vis3D.py +320 -0
- PYME/DSView/modules/visgui.py +163 -0
- PYME/DSView/modules/webview.py +14 -0
- PYME/DSView/overlays.py +295 -0
- PYME/DSView/scrolledImagePanel.py +188 -0
- PYME/DSView/setup.py +53 -0
- PYME/DSView/splashScreen.py +158 -0
- PYME/DSView/voxSizeDialog.py +84 -0
- PYME/Deconv/__init__.py +35 -0
- PYME/Deconv/beadGen.py +55 -0
- PYME/Deconv/dec.py +659 -0
- PYME/Deconv/decTask.py +65 -0
- PYME/Deconv/decThread.py +113 -0
- PYME/Deconv/dec_test.py +47 -0
- PYME/Deconv/deconvDialogs.py +417 -0
- PYME/Deconv/fftwWisdom.py +62 -0
- PYME/Deconv/richardsonLucy.py +141 -0
- PYME/Deconv/richardsonLucyMV.py +151 -0
- PYME/Deconv/richardsonLucyMVM.py +218 -0
- PYME/Deconv/test_block_dec.py +46 -0
- PYME/Deconv/tq_block_dec.py +331 -0
- PYME/Deconv/wiener.py +163 -0
- PYME/IO/DataSources/AlignDataSource.py +91 -0
- PYME/IO/DataSources/ArrayDataSource.py +260 -0
- PYME/IO/DataSources/BGSDataSource.py +353 -0
- PYME/IO/DataSources/BaseDataSource.py +457 -0
- PYME/IO/DataSources/BioformatsDataSource.py +178 -0
- PYME/IO/DataSources/BufferedDataSource.py +99 -0
- PYME/IO/DataSources/ClusterPZFDataSource.py +124 -0
- PYME/IO/DataSources/ConcatenatedDataSource.py +56 -0
- PYME/IO/DataSources/CropDataSource.py +243 -0
- PYME/IO/DataSources/DcimgDataSource.py +54 -0
- PYME/IO/DataSources/ElectronsPerSecondDataSource.py +61 -0
- PYME/IO/DataSources/FlatFieldDataSource.py +77 -0
- PYME/IO/DataSources/HDFDataSource.py +160 -0
- PYME/IO/DataSources/HTTPDataSource.py +80 -0
- PYME/IO/DataSources/ImageSeriesDataSource.py +123 -0
- PYME/IO/DataSources/MultiviewDataSource.py +99 -0
- PYME/IO/DataSources/OBFDataSource.py +67 -0
- PYME/IO/DataSources/RandomDataSource.py +23 -0
- PYME/IO/DataSources/SupertileDatasource.py +148 -0
- PYME/IO/DataSources/TQDataSource.py +41 -0
- PYME/IO/DataSources/TiffDataSource.py +193 -0
- PYME/IO/DataSources/TileDataSource.py +91 -0
- PYME/IO/DataSources/UnsplitDataSource.py +92 -0
- PYME/IO/DataSources/__init__.py +59 -0
- PYME/IO/FileUtils/IJLut.py +43 -0
- PYME/IO/FileUtils/RawToHdf5.py +105 -0
- PYME/IO/FileUtils/SPAD.py +54 -0
- PYME/IO/FileUtils/TiffSeqToHdf5.py +87 -0
- PYME/IO/FileUtils/__init__.py +24 -0
- PYME/IO/FileUtils/compHdf.py +39 -0
- PYME/IO/FileUtils/fileID.py +246 -0
- PYME/IO/FileUtils/fnlGen.py +40 -0
- PYME/IO/FileUtils/freeSpace.py +59 -0
- PYME/IO/FileUtils/h5-thumbnailer.py +85 -0
- PYME/IO/FileUtils/h5ExFrames.py +98 -0
- PYME/IO/FileUtils/h5ToTiffSeries.py +50 -0
- PYME/IO/FileUtils/h5r-thumbnailer.py +118 -0
- PYME/IO/FileUtils/h5rFormatDef.py +99 -0
- PYME/IO/FileUtils/h5rToTxt.py +77 -0
- PYME/IO/FileUtils/nameUtils.py +300 -0
- PYME/IO/FileUtils/obf_support.py +538 -0
- PYME/IO/FileUtils/ply.py +147 -0
- PYME/IO/FileUtils/readSpeckle.py +78 -0
- PYME/IO/FileUtils/readTiff.py +64 -0
- PYME/IO/FileUtils/saveTiffStack.py +137 -0
- PYME/IO/FileUtils/setup.py +36 -0
- PYME/IO/FileUtils/sf-thumbnailer.py +76 -0
- PYME/IO/FileUtils/stl.py +44 -0
- PYME/IO/FileUtils/thumbnailDatabase.py +104 -0
- PYME/IO/HTTPSpooler_v2.py +141 -0
- PYME/IO/MetaDataHandler.py +1072 -0
- PYME/IO/PZFFormat.py +375 -0
- PYME/IO/Spooler.py +279 -0
- PYME/IO/__init__.py +12 -0
- PYME/IO/acquisition_backends.py +353 -0
- PYME/IO/buffer_helpers.cp313-win_amd64.dll.a +0 -0
- PYME/IO/buffer_helpers.cp313-win_amd64.pyd +0 -0
- PYME/IO/buffer_helpers.pyx +190 -0
- PYME/IO/buffers.py +291 -0
- PYME/IO/clusterDuplication.py +204 -0
- PYME/IO/clusterExport.py +152 -0
- PYME/IO/clusterGlob.py +108 -0
- PYME/IO/clusterIO.py +1076 -0
- PYME/IO/clusterListing.py +232 -0
- PYME/IO/clusterResults.py +206 -0
- PYME/IO/clusterUpload.py +49 -0
- PYME/IO/cluster_directory.py +419 -0
- PYME/IO/cluster_streaming.py +216 -0
- PYME/IO/compatibility.py +12 -0
- PYME/IO/countdir/__init__.py +5 -0
- PYME/IO/countdir/setup.py +58 -0
- PYME/IO/csv_flavours.py +251 -0
- PYME/IO/dataExporter.py +470 -0
- PYME/IO/dataWrap.py +108 -0
- PYME/IO/dcimg.py +167 -0
- PYME/IO/events.py +161 -0
- PYME/IO/h5File.py +148 -0
- PYME/IO/h5rFile.py +323 -0
- PYME/IO/image.py +1447 -0
- PYME/IO/load_psf.py +26 -0
- PYME/IO/pyme_h5ls.py +58 -0
- PYME/IO/ragged.py +138 -0
- PYME/IO/rgb_image.py +94 -0
- PYME/IO/tabular.py +1338 -0
- PYME/IO/testClusterSpooling.py +199 -0
- PYME/IO/unifiedIO.py +301 -0
- PYME/LMVis/Extras/QPobjectSegment.py +220 -0
- PYME/LMVis/Extras/__init__.py +55 -0
- PYME/LMVis/Extras/animation.py +359 -0
- PYME/LMVis/Extras/annotation.py +78 -0
- PYME/LMVis/Extras/clusterAnalysis.py +460 -0
- PYME/LMVis/Extras/dockedPanel.py +69 -0
- PYME/LMVis/Extras/extra_layers.py +373 -0
- PYME/LMVis/Extras/fiducial.py +230 -0
- PYME/LMVis/Extras/flagZMotionArtifacts.py +60 -0
- PYME/LMVis/Extras/fusionUtils.py +9 -0
- PYME/LMVis/Extras/multiColourAnalysis.py +103 -0
- PYME/LMVis/Extras/multiviewMapping.py +489 -0
- PYME/LMVis/Extras/objectMeasurements.py +246 -0
- PYME/LMVis/Extras/particleTracking.py +272 -0
- PYME/LMVis/Extras/perFrameVariable.py +77 -0
- PYME/LMVis/Extras/photophysics.py +72 -0
- PYME/LMVis/Extras/pointSetGeneration.py +232 -0
- PYME/LMVis/Extras/pointwiseColoc.py +54 -0
- PYME/LMVis/Extras/saved_views.py +125 -0
- PYME/LMVis/Extras/scaleBox.py +115 -0
- PYME/LMVis/Extras/sequentialSpecies.py +125 -0
- PYME/LMVis/Extras/setBGImage.py +74 -0
- PYME/LMVis/Extras/shiftmapGenerator.py +138 -0
- PYME/LMVis/Extras/showShortcuts.py +69 -0
- PYME/LMVis/Extras/snapshot.py +135 -0
- PYME/LMVis/Extras/spherical_harmonics.py +98 -0
- PYME/LMVis/Extras/subsets.py +15 -0
- PYME/LMVis/Extras/surface_fitting.py +52 -0
- PYME/LMVis/Extras/temperaturePlot.py +53 -0
- PYME/LMVis/Extras/vibration.py +112 -0
- PYME/LMVis/VisGUI.py +506 -0
- PYME/LMVis/__init__.py +39 -0
- PYME/LMVis/colourFilterGUI.py +77 -0
- PYME/LMVis/colourPanel.py +491 -0
- PYME/LMVis/displayPane.py +462 -0
- PYME/LMVis/dyeRatios.py +116 -0
- PYME/LMVis/genImageDialog.py +298 -0
- PYME/LMVis/gl_offScreenHandler.py +134 -0
- PYME/LMVis/gl_render.py +1302 -0
- PYME/LMVis/gl_render3D.py +1453 -0
- PYME/LMVis/gl_render3D_shaders.py +1213 -0
- PYME/LMVis/glcanvas_core.py +1157 -0
- PYME/LMVis/imageView.py +752 -0
- PYME/LMVis/imageView2.py +372 -0
- PYME/LMVis/importTextDialog.py +342 -0
- PYME/LMVis/layer_panel.py +231 -0
- PYME/LMVis/layers/AxesOverlayLayer.py +126 -0
- PYME/LMVis/layers/LUTOverlayLayer.py +346 -0
- PYME/LMVis/layers/OverlayLayer.py +46 -0
- PYME/LMVis/layers/ScaleBarOverlayLayer.py +97 -0
- PYME/LMVis/layers/ScaleBoxOverlayLayer.py +181 -0
- PYME/LMVis/layers/SelectionOverlayLayer.py +124 -0
- PYME/LMVis/layers/__init__.py +53 -0
- PYME/LMVis/layers/base.py +319 -0
- PYME/LMVis/layers/image_layer.py +363 -0
- PYME/LMVis/layers/labels.py +186 -0
- PYME/LMVis/layers/layer_defaults.py +97 -0
- PYME/LMVis/layers/mesh.py +378 -0
- PYME/LMVis/layers/octree.py +194 -0
- PYME/LMVis/layers/pointcloud.py +372 -0
- PYME/LMVis/layers/quiver.py +271 -0
- PYME/LMVis/layers/text.py +250 -0
- PYME/LMVis/layers/tracks.py +309 -0
- PYME/LMVis/mv_math.py +78 -0
- PYME/LMVis/objectDarkMeasure.py +120 -0
- PYME/LMVis/pipeline.py +1227 -0
- PYME/LMVis/pipelineView.py +115 -0
- PYME/LMVis/pointSettingsPanel.py +135 -0
- PYME/LMVis/progGraph.py +59 -0
- PYME/LMVis/quadTreeSettings.py +90 -0
- PYME/LMVis/rendGauss.py +158 -0
- PYME/LMVis/renderers.py +576 -0
- PYME/LMVis/sessionpaths.py +136 -0
- PYME/LMVis/setup.py +39 -0
- PYME/LMVis/setup_exe.py +71 -0
- PYME/LMVis/shader_programs/DefaultShaderProgram.py +149 -0
- PYME/LMVis/shader_programs/GLProgram.py +119 -0
- PYME/LMVis/shader_programs/GouraudShaderProgram.py +157 -0
- PYME/LMVis/shader_programs/PointSpriteShaderProgram.py +163 -0
- PYME/LMVis/shader_programs/ShaderProgramFactory.py +54 -0
- PYME/LMVis/shader_programs/TesselShaderProgram.py +47 -0
- PYME/LMVis/shader_programs/WireFrameShaderProgram.py +50 -0
- PYME/LMVis/shader_programs/__init__.py +20 -0
- PYME/LMVis/shader_programs/oit_compositor.py +23 -0
- PYME/LMVis/shader_programs/shader_loader.py +84 -0
- PYME/LMVis/shader_programs/shader_program.py +168 -0
- PYME/LMVis/shader_programs/shaders/bigflatpoints_fs.glsl +16 -0
- PYME/LMVis/shader_programs/shaders/bigpoints_gs.glsl +40 -0
- PYME/LMVis/shader_programs/shaders/bigpointsprites_fs.glsl +20 -0
- PYME/LMVis/shader_programs/shaders/bigspheres_fs.glsl +53 -0
- PYME/LMVis/shader_programs/shaders/compose_fs.glsl +41 -0
- PYME/LMVis/shader_programs/shaders/compose_vs.glsl +25 -0
- PYME/LMVis/shader_programs/shaders/default_fs.glsl +27 -0
- PYME/LMVis/shader_programs/shaders/default_vs.glsl +88 -0
- PYME/LMVis/shader_programs/shaders/flatpoints_fs.glsl +27 -0
- PYME/LMVis/shader_programs/shaders/gouraud_flatpoints_fs.glsl +30 -0
- PYME/LMVis/shader_programs/shaders/gouraud_fs.glsl +26 -0
- PYME/LMVis/shader_programs/shaders/gouraud_oit_fs.glsl +68 -0
- PYME/LMVis/shader_programs/shaders/gouraud_vs.glsl +135 -0
- PYME/LMVis/shader_programs/shaders/image_fs.glsl +60 -0
- PYME/LMVis/shader_programs/shaders/image_vs.glsl +79 -0
- PYME/LMVis/shader_programs/shaders/phong_fs.glsl +43 -0
- PYME/LMVis/shader_programs/shaders/phong_vs.glsl +45 -0
- PYME/LMVis/shader_programs/shaders/pointsprites_fs.glsl +33 -0
- PYME/LMVis/shader_programs/shaders/pointsprites_vs.glsl +77 -0
- PYME/LMVis/shader_programs/shaders/spheres_fs.glsl +102 -0
- PYME/LMVis/shader_programs/shaders/tessel_fs.glsl +23 -0
- PYME/LMVis/shader_programs/shaders/tessel_vs.glsl +37 -0
- PYME/LMVis/shader_programs/shaders/text_fs.glsl +42 -0
- PYME/LMVis/shader_programs/shaders/text_vs.glsl +84 -0
- PYME/LMVis/shader_programs/shaders/widelines_fs.glsl +19 -0
- PYME/LMVis/shader_programs/shaders/widelines_gs.glsl +56 -0
- PYME/LMVis/shader_programs/shaders/widelines_vs.glsl +51 -0
- PYME/LMVis/statusLog.py +57 -0
- PYME/LMVis/triBlobs.py +142 -0
- PYME/LMVis/view_clipping_pane.py +429 -0
- PYME/LMVis/views.py +275 -0
- PYME/LMVis/visCore.py +1005 -0
- PYME/LMVis/visHelpers.py +880 -0
- PYME/LMVis/visHelpersMin.py +230 -0
- PYME/LMVis/workspaceTree.py +238 -0
- PYME/__init__.py +22 -0
- PYME/cluster/HTTPDataServer.py +1063 -0
- PYME/cluster/HTTPRulePusher.py +382 -0
- PYME/cluster/HTTPTaskPusher.py +377 -0
- PYME/cluster/PYMERuleNodeServer.py +192 -0
- PYME/cluster/PYMERuleServer.py +109 -0
- PYME/cluster/__init__.py +0 -0
- PYME/cluster/clusterUI/accounts/__init__.py +0 -0
- PYME/cluster/clusterUI/accounts/admin.py +85 -0
- PYME/cluster/clusterUI/accounts/forms.py +8 -0
- PYME/cluster/clusterUI/accounts/migrations/0001_initial.py +31 -0
- PYME/cluster/clusterUI/accounts/migrations/__init__.py +0 -0
- PYME/cluster/clusterUI/accounts/models.py +44 -0
- PYME/cluster/clusterUI/accounts/templates/accounts/user_form.html +13 -0
- PYME/cluster/clusterUI/accounts/templates/registration/initial_complete.html +6 -0
- PYME/cluster/clusterUI/accounts/templates/registration/initial_confirm.html +13 -0
- PYME/cluster/clusterUI/accounts/templates/registration/initial_done.html +7 -0
- PYME/cluster/clusterUI/accounts/templates/registration/verification.html +2 -0
- PYME/cluster/clusterUI/accounts/templates/registration/verification_subject.txt +1 -0
- PYME/cluster/clusterUI/accounts/urls.py +19 -0
- PYME/cluster/clusterUI/accounts/views.py +36 -0
- PYME/cluster/clusterUI/clusterUI/__init__.py +0 -0
- PYME/cluster/clusterUI/clusterUI/settings.py +147 -0
- PYME/cluster/clusterUI/clusterUI/urls.py +31 -0
- PYME/cluster/clusterUI/clusterUI/wsgi.py +16 -0
- PYME/cluster/clusterUI/clusterbrowser/__init__.py +0 -0
- PYME/cluster/clusterUI/clusterbrowser/admin.py +3 -0
- PYME/cluster/clusterUI/clusterbrowser/apps.py +7 -0
- PYME/cluster/clusterUI/clusterbrowser/migrations/__init__.py +0 -0
- PYME/cluster/clusterUI/clusterbrowser/models.py +5 -0
- PYME/cluster/clusterUI/clusterbrowser/templates/base.html +129 -0
- PYME/cluster/clusterUI/clusterbrowser/templates/clusterbrowser/dirlisting.html +231 -0
- PYME/cluster/clusterUI/clusterbrowser/templates/clusterbrowser/form_new_folder.html +18 -0
- PYME/cluster/clusterUI/clusterbrowser/templates/clusterbrowser/form_upload_file.html +17 -0
- PYME/cluster/clusterUI/clusterbrowser/templates/clusterbrowser/lightlisting.html +25 -0
- PYME/cluster/clusterUI/clusterbrowser/templates/registration/login.html +38 -0
- PYME/cluster/clusterUI/clusterbrowser/urls.py +10 -0
- PYME/cluster/clusterUI/clusterbrowser/views.py +148 -0
- PYME/cluster/clusterUI/clusterstatus/__init__.py +0 -0
- PYME/cluster/clusterUI/clusterstatus/admin.py +3 -0
- PYME/cluster/clusterUI/clusterstatus/apps.py +7 -0
- PYME/cluster/clusterUI/clusterstatus/migrations/__init__.py +0 -0
- PYME/cluster/clusterUI/clusterstatus/models.py +5 -0
- PYME/cluster/clusterUI/clusterstatus/templates/clusterstatus/load_content.html +29 -0
- PYME/cluster/clusterUI/clusterstatus/templates/clusterstatus/queue_info.html +28 -0
- PYME/cluster/clusterUI/clusterstatus/templates/clusterstatus/queue_info_content.html +50 -0
- PYME/cluster/clusterUI/clusterstatus/templates/clusterstatus/status_dash.html +29 -0
- PYME/cluster/clusterUI/clusterstatus/templates/clusterstatus/status_dash_content.html +90 -0
- PYME/cluster/clusterUI/clusterstatus/urls.py +9 -0
- PYME/cluster/clusterUI/clusterstatus/views.py +69 -0
- PYME/cluster/clusterUI/clusterui_tornado.py +117 -0
- PYME/cluster/clusterUI/deploy.py +62 -0
- PYME/cluster/clusterUI/localization/__init__.py +0 -0
- PYME/cluster/clusterUI/localization/admin.py +3 -0
- PYME/cluster/clusterUI/localization/apps.py +7 -0
- PYME/cluster/clusterUI/localization/migrations/__init__.py +0 -0
- PYME/cluster/clusterUI/localization/models.py +5 -0
- PYME/cluster/clusterUI/localization/templates/localization/settings_form.html +67 -0
- PYME/cluster/clusterUI/localization/urls.py +10 -0
- PYME/cluster/clusterUI/localization/views.py +170 -0
- PYME/cluster/clusterUI/manage.py +17 -0
- PYME/cluster/clusterUI/recipes/__init__.py +0 -0
- PYME/cluster/clusterUI/recipes/admin.py +3 -0
- PYME/cluster/clusterUI/recipes/migrations/__init__.py +0 -0
- PYME/cluster/clusterUI/recipes/models.py +3 -0
- PYME/cluster/clusterUI/recipes/templates/recipes/extra_inputs.html +35 -0
- PYME/cluster/clusterUI/recipes/templates/recipes/form_recipe.html +82 -0
- PYME/cluster/clusterUI/recipes/templates/recipes/input_list.html +7 -0
- PYME/cluster/clusterUI/recipes/templates/recipes/recipe_editor.html +28 -0
- PYME/cluster/clusterUI/recipes/templates/recipes/recipe_editor_common.html +46 -0
- PYME/cluster/clusterUI/recipes/templates/recipes/recipe_editrun.html +93 -0
- PYME/cluster/clusterUI/recipes/templates/recipes/recipe_standalone.html +100 -0
- PYME/cluster/clusterUI/recipes/templates/recipes/recipe_template.html +109 -0
- PYME/cluster/clusterUI/recipes/urls.py +17 -0
- PYME/cluster/clusterUI/recipes/views.py +109 -0
- PYME/cluster/cluster_of_one.py +204 -0
- PYME/cluster/dataserver_wsgi.py +615 -0
- PYME/cluster/distribution.py +71 -0
- PYME/cluster/rulenodeserver.py +487 -0
- PYME/cluster/rules.py +979 -0
- PYME/cluster/ruleserver.py +1106 -0
- PYME/cluster/status.py +101 -0
- PYME/cluster/taskWorkerHTTP.py +522 -0
- PYME/cluster/webdav.py +1102 -0
- PYME/config.py +659 -0
- PYME/contrib/TextCtrlAutoComplete.py +582 -0
- PYME/contrib/__init__.py +7 -0
- PYME/contrib/aniso/__init__.py +2 -0
- PYME/contrib/aniso/aniso.py +268 -0
- PYME/contrib/auiFloatBook.py +94 -0
- PYME/contrib/congrid.py +127 -0
- PYME/contrib/dispatch/__init__.py +19 -0
- PYME/contrib/dispatch/dispatcher.py +289 -0
- PYME/contrib/gohlke/__init__.py +1 -0
- PYME/contrib/gohlke/_tifffile.cp313-win_amd64.dll.a +0 -0
- PYME/contrib/gohlke/_tifffile.cp313-win_amd64.pyd +0 -0
- PYME/contrib/gohlke/czifile.py +1289 -0
- PYME/contrib/gohlke/fcsfiles.py +514 -0
- PYME/contrib/gohlke/setup.py +54 -0
- PYME/contrib/gohlke/tifffile.py +3095 -0
- PYME/contrib/listctrlMixins.py +896 -0
- PYME/contrib/lzw.py +838 -0
- PYME/contrib/pad/__init__.py +13 -0
- PYME/contrib/pad/info_pad.py +18 -0
- PYME/contrib/pad/pad.py +670 -0
- PYME/contrib/setup.py +38 -0
- PYME/contrib/wxPlotPanel.py +137 -0
- PYME/experimental/SimReconstruction.py +49 -0
- PYME/experimental/__init__.pxd +0 -0
- PYME/experimental/__init__.py +4 -0
- PYME/experimental/_octree.cp313-win_amd64.dll.a +0 -0
- PYME/experimental/_octree.cp313-win_amd64.pyd +0 -0
- PYME/experimental/_octree.pyx +477 -0
- PYME/experimental/_treap.cp313-win_amd64.dll.a +0 -0
- PYME/experimental/_treap.cp313-win_amd64.pyd +0 -0
- PYME/experimental/_treap.pyx +267 -0
- PYME/experimental/_triangle_mesh.cp313-win_amd64.dll.a +0 -0
- PYME/experimental/_triangle_mesh.cp313-win_amd64.pyd +0 -0
- PYME/experimental/_triangle_mesh.pxd +149 -0
- PYME/experimental/_triangle_mesh.pyx +2787 -0
- PYME/experimental/aqavg.py +40 -0
- PYME/experimental/dcimgFileChucker.py +375 -0
- PYME/experimental/dcimgSpoolShim.py +174 -0
- PYME/experimental/dcimg_chuck_test.py +78 -0
- PYME/experimental/dual_marching_cubes.py +801 -0
- PYME/experimental/dual_marching_cubes_v2.py +645 -0
- PYME/experimental/expectationMaximisation.py +298 -0
- PYME/experimental/func_octree.cp313-win_amd64.dll.a +0 -0
- PYME/experimental/func_octree.cp313-win_amd64.pyd +0 -0
- PYME/experimental/func_octree.pyx +381 -0
- PYME/experimental/fusionRadial.py +520 -0
- PYME/experimental/fusionUtils.py +522 -0
- PYME/experimental/isosurface.py +147 -0
- PYME/experimental/labview_spooling_hacks.py +48 -0
- PYME/experimental/marching_cubes.py +811 -0
- PYME/experimental/marching_tetrahedra.py +343 -0
- PYME/experimental/modified_marching_cubes.py +1245 -0
- PYME/experimental/music.py +25 -0
- PYME/experimental/octree.py +188 -0
- PYME/experimental/pSpaceMap.py +34 -0
- PYME/experimental/pointFitConfoc.py +112 -0
- PYME/experimental/scanner_control.py +107 -0
- PYME/experimental/setup.py +109 -0
- PYME/experimental/spark.py +31 -0
- PYME/experimental/tcHist.py +71 -0
- PYME/experimental/treap.py +262 -0
- PYME/experimental/triangle_mesh.py +2287 -0
- PYME/experimental/triangle_mesh_utils.cp313-win_amd64.dll.a +0 -0
- PYME/experimental/triangle_mesh_utils.cp313-win_amd64.pyd +0 -0
- PYME/experimental/triangle_utils.py +87 -0
- PYME/experimental/triangular_mesh.py +2255 -0
- PYME/experimental/zMotionArtifactUtils.py +55 -0
- PYME/localization/FitFactories/AstigGaussFitFR.py +175 -0
- PYME/localization/FitFactories/AstigGaussGPUFitFR.py +326 -0
- PYME/localization/FitFactories/BeadConvolvedAstigGaussFit.py +206 -0
- PYME/localization/FitFactories/ChecksumFR.py +82 -0
- PYME/localization/FitFactories/ChecksumGPUFR.py +213 -0
- PYME/localization/FitFactories/ChecksumMultifitSR.py +86 -0
- PYME/localization/FitFactories/ConfocCOIR.py +93 -0
- PYME/localization/FitFactories/Dumbell3DFitR.py +193 -0
- PYME/localization/FitFactories/DumbellFitR.py +163 -0
- PYME/localization/FitFactories/FFBase.py +403 -0
- PYME/localization/FitFactories/Gauss3DFitR.py +213 -0
- PYME/localization/FitFactories/GaussFitConstrR.py +177 -0
- PYME/localization/FitFactories/GaussMultifitLinesR.py +351 -0
- PYME/localization/FitFactories/GaussMultifitR.py +326 -0
- PYME/localization/FitFactories/GaussMultifitSR.py +373 -0
- PYME/localization/FitFactories/InterpFitR.py +236 -0
- PYME/localization/FitFactories/InterpFitWFR.py +111 -0
- PYME/localization/FitFactories/Interpolators/CSInterpolator.py +148 -0
- PYME/localization/FitFactories/Interpolators/CubeSInterpolatorP.py +121 -0
- PYME/localization/FitFactories/Interpolators/CubicSplineInterpolator.py +69 -0
- PYME/localization/FitFactories/Interpolators/LinearInterpolator.py +135 -0
- PYME/localization/FitFactories/Interpolators/LinearPInterpolatorP.py +95 -0
- PYME/localization/FitFactories/Interpolators/__init__.py +33 -0
- PYME/localization/FitFactories/Interpolators/baseInterpolator.py +202 -0
- PYME/localization/FitFactories/LatFitCOIR.py +82 -0
- PYME/localization/FitFactories/LatGaussFitFR.py +220 -0
- PYME/localization/FitFactories/LatObjFindFR.py +85 -0
- PYME/localization/FitFactories/LatPSFFitR.py +142 -0
- PYME/localization/FitFactories/MultiviewFitInterpNR.py +400 -0
- PYME/localization/FitFactories/PRInterpFitQR.py +192 -0
- PYME/localization/FitFactories/PRInterpFitR.py +223 -0
- PYME/localization/FitFactories/ROIExtractNR.py +93 -0
- PYME/localization/FitFactories/SpecGaussFitFR.py +174 -0
- PYME/localization/FitFactories/SplitterFitCOIR.py +142 -0
- PYME/localization/FitFactories/SplitterFitFNR.py +312 -0
- PYME/localization/FitFactories/SplitterFitFusionR.py +318 -0
- PYME/localization/FitFactories/SplitterFitInterpBNR.py +357 -0
- PYME/localization/FitFactories/SplitterFitInterpNR.py +343 -0
- PYME/localization/FitFactories/SplitterFitScavNR.py +352 -0
- PYME/localization/FitFactories/SplitterMultifitSR.py +410 -0
- PYME/localization/FitFactories/SplitterObjFindR.py +194 -0
- PYME/localization/FitFactories/SplitterROIExtractNR.py +91 -0
- PYME/localization/FitFactories/SplitterShiftEstFR.py +230 -0
- PYME/localization/FitFactories/__init__.py +103 -0
- PYME/localization/FitFactories/fitCommon.py +195 -0
- PYME/localization/FitFactories/zEstimators/__init__.py +29 -0
- PYME/localization/FitFactories/zEstimators/astigEstimator.py +173 -0
- PYME/localization/FitFactories/zEstimators/biplaneEstimator.py +209 -0
- PYME/localization/FitFactories/zEstimators/genericDualEstimator.py +232 -0
- PYME/localization/FitFactories/zEstimators/genericEstimator.py +224 -0
- PYME/localization/FitFactories/zEstimators/priEstimator.py +255 -0
- PYME/localization/MetaDataEdit.py +543 -0
- PYME/localization/Test/30_9_series_A_1.sf +0 -0
- PYME/localization/Test/PRI.md +45 -0
- PYME/localization/Test/PRI_qr.md +52 -0
- PYME/localization/Test/PRI_r.md +52 -0
- PYME/localization/Test/__init__.py +22 -0
- PYME/localization/Test/astig.md +50 -0
- PYME/localization/Test/astigCOI.md +50 -0
- PYME/localization/Test/astig_gauss.md +52 -0
- PYME/localization/Test/astig_pe.md +50 -0
- PYME/localization/Test/astig_splitter.md +66 -0
- PYME/localization/Test/astig_splitterCOI.md +67 -0
- PYME/localization/Test/astig_splitterQ.md +66 -0
- PYME/localization/Test/astig_theory.md +50 -0
- PYME/localization/Test/astig_theory.psf +0 -0
- PYME/localization/Test/astig_theory.tif +0 -0
- PYME/localization/Test/beads1.psf +0 -0
- PYME/localization/Test/beads1.tif +0 -0
- PYME/localization/Test/biplane_splitter.md +75 -0
- PYME/localization/Test/biplane_splitter2.md +103 -0
- PYME/localization/Test/biplane_splitter3.md +115 -0
- PYME/localization/Test/defoc.md +48 -0
- PYME/localization/Test/dumbell_3d.md +52 -0
- PYME/localization/Test/fitTestJig.py +172 -0
- PYME/localization/Test/fitTestJigSCMOS.py +487 -0
- PYME/localization/Test/fitTestJigWC.py +225 -0
- PYME/localization/Test/gauss.md +50 -0
- PYME/localization/Test/gaussCOI.md +50 -0
- PYME/localization/Test/pri_pe.md +50 -0
- PYME/localization/Test/pri_theory.md +51 -0
- PYME/localization/Test/pri_theory.psf +0 -0
- PYME/localization/Test/pri_theory.tif +0 -0
- PYME/localization/Test/psf_astig.psf +0 -0
- PYME/localization/Test/psf_astig.tif +0 -0
- PYME/localization/Test/psf_astig_bg_d.psf +0 -0
- PYME/localization/Test/psf_astig_bg_d.tif +0 -0
- PYME/localization/Test/psf_astig_pe.psf +0 -0
- PYME/localization/Test/psf_astig_pe.tif +0 -0
- PYME/localization/Test/psf_decon.psf +0 -0
- PYME/localization/Test/psf_decon.tif +0 -0
- PYME/localization/Test/psf_decon_pe.psf +0 -0
- PYME/localization/Test/psf_decon_pe.tif +0 -0
- PYME/localization/Test/psf_guess.psf +0 -0
- PYME/localization/Test/splitter.md +63 -0
- PYME/localization/Test/splitter_scav.md +63 -0
- PYME/localization/Test/test.psf +0 -0
- PYME/localization/Test/test.tif +0 -0
- PYME/localization/Test/test_decon.psf +0 -0
- PYME/localization/Test/test_decon.tif +0 -0
- PYME/localization/Test/test_pe.psf +0 -0
- PYME/localization/Test/test_pe.tif +0 -0
- PYME/localization/Test/wf_theory.psf +0 -0
- PYME/localization/Test/wf_theory2.psf +0 -0
- PYME/localization/__init__.py +17 -0
- PYME/localization/autopsf/__init__.py +1 -0
- PYME/localization/autopsf/autopsf.py +486 -0
- PYME/localization/autopsf/roifit.py +310 -0
- PYME/localization/cInterp/__init__.py +24 -0
- PYME/localization/cInterp/cInterp.cp313-win_amd64.dll.a +0 -0
- PYME/localization/cInterp/cInterp.cp313-win_amd64.pyd +0 -0
- PYME/localization/cInterp/setup.py +54 -0
- PYME/localization/cModels/__init__.py +24 -0
- PYME/localization/cModels/gauss_app.cp313-win_amd64.dll.a +0 -0
- PYME/localization/cModels/gauss_app.cp313-win_amd64.pyd +0 -0
- PYME/localization/ofind.py +444 -0
- PYME/localization/ofind3d.py +306 -0
- PYME/localization/ofind_nofilt.py +128 -0
- PYME/localization/ofind_pri.py +478 -0
- PYME/localization/ofind_split.py +399 -0
- PYME/localization/ofind_xcorr.py +351 -0
- PYME/localization/ofind_xcorr_fw.py +441 -0
- PYME/localization/remFitBuf.py +657 -0
- PYME/localization/setup.py +56 -0
- PYME/localization/splitting.py +240 -0
- PYME/localization/twist.py +60 -0
- PYME/misc/TiSettings.py +36 -0
- PYME/misc/TiffImagePlugin.py +838 -0
- PYME/misc/VolProj.py +144 -0
- PYME/misc/__init__.py +25 -0
- PYME/misc/aligned_array.py +10 -0
- PYME/misc/aniso.py +29 -0
- PYME/misc/big_sur_fix.py +20 -0
- PYME/misc/check_for_updates.py +139 -0
- PYME/misc/colormaps.py +199 -0
- PYME/misc/colorsys.py +201 -0
- PYME/misc/computerName.py +33 -0
- PYME/misc/coverslipGeometries.py +60 -0
- PYME/misc/cython_numpy_monkey.py +40 -0
- PYME/misc/depGraph.py +406 -0
- PYME/misc/dirSize.py +31 -0
- PYME/misc/diskCleanup.py +64 -0
- PYME/misc/djangoRecarray.py +57 -0
- PYME/misc/django_widgets.py +27 -0
- PYME/misc/editgrid.py +101 -0
- PYME/misc/eventSpy.py +122 -0
- PYME/misc/exceptions.py +30 -0
- PYME/misc/facsPlot.py +89 -0
- PYME/misc/fbpIcons.py +90 -0
- PYME/misc/fftw_compat.py +28 -0
- PYME/misc/findCycles.py +91 -0
- PYME/misc/fortran_interrupt_defeat.py +43 -0
- PYME/misc/glassModel.py +64 -0
- PYME/misc/hash32.py +41 -0
- PYME/misc/hillcurve.py +88 -0
- PYME/misc/hybrid_ns.py +84 -0
- PYME/misc/kdFit.py +72 -0
- PYME/misc/locate.py +10 -0
- PYME/misc/memUsage.py +65 -0
- PYME/misc/memmap.py +52 -0
- PYME/misc/mock_ctypes.py +28 -0
- PYME/misc/mock_traits.py +59 -0
- PYME/misc/mock_traitsui.py +29 -0
- PYME/misc/pyme_zeroconf.py +287 -0
- PYME/misc/pyro_tracebacks.py +32 -0
- PYME/misc/read_agf.py +605 -0
- PYME/misc/sffake.py +16 -0
- PYME/misc/snells.py +71 -0
- PYME/misc/sqlite_ns.py +132 -0
- PYME/misc/sqlitendarray.py +56 -0
- PYME/misc/taskDef.py +44 -0
- PYME/misc/tempDB.py +56 -0
- PYME/misc/wxThread.py +33 -0
- PYME/misc/zemax.py +259 -0
- PYME/misc/zernike.py +151 -0
- PYME/pyme_warnings.py +70 -0
- PYME/recipes/Recipes/STEDDeconvolution.yaml +14 -0
- PYME/recipes/Recipes/STEDMinistacks.yaml +15 -0
- PYME/recipes/Recipes/STED_COP3.yaml +25 -0
- PYME/recipes/Recipes/blobMeas.yaml +19 -0
- PYME/recipes/Recipes/blobMeas2.yaml +37 -0
- PYME/recipes/Recipes/blobMeasSR.yaml +66 -0
- PYME/recipes/Recipes/coloc.yaml +43 -0
- PYME/recipes/Recipes/coloc_roi_masked.yaml +46 -0
- PYME/recipes/Recipes/multiblob.yaml +38 -0
- PYME/recipes/Recipes/pre_particleTracking.yaml +30 -0
- PYME/recipes/Recipes/segmentAndMeasureLoci.yaml +41 -0
- PYME/recipes/__init__.py +6 -0
- PYME/recipes/acquisition.py +158 -0
- PYME/recipes/bakeshop.py +32 -0
- PYME/recipes/base.py +1393 -0
- PYME/recipes/batchProcess.py +147 -0
- PYME/recipes/filters.py +394 -0
- PYME/recipes/fudges.py +41 -0
- PYME/recipes/graphing.py +108 -0
- PYME/recipes/html_recipe_editor.py +90 -0
- PYME/recipes/localisations.py +1386 -0
- PYME/recipes/machine_learning.py +286 -0
- PYME/recipes/measurement.py +1062 -0
- PYME/recipes/modules.py +50 -0
- PYME/recipes/multiview.py +435 -0
- PYME/recipes/output.py +667 -0
- PYME/recipes/pointcloud.py +510 -0
- PYME/recipes/processing.py +2954 -0
- PYME/recipes/pyramid.py +206 -0
- PYME/recipes/recipe.py +965 -0
- PYME/recipes/recipeGui.py +1029 -0
- PYME/recipes/recipeLayout.py +499 -0
- PYME/recipes/runRecipe.py +140 -0
- PYME/recipes/setup.py +37 -0
- PYME/recipes/simulation.py +91 -0
- PYME/recipes/skfilters.py +143 -0
- PYME/recipes/surface_fitting.py +776 -0
- PYME/recipes/tablefilters.py +275 -0
- PYME/recipes/tracking.py +343 -0
- PYME/recipes/traits.py +157 -0
- PYME/recipes/vertical_recipe_display.py +373 -0
- PYME/resources/__init__.py +23 -0
- PYME/resources/config_template/distributor.yaml +14 -0
- PYME/resources/config_template/nodeserver.yaml +15 -0
- PYME/resources/icons/LUT.png +0 -0
- PYME/resources/icons/YSM_Shield.png +0 -0
- PYME/resources/icons/YSM_logo.png +0 -0
- PYME/resources/icons/arrow.png +0 -0
- PYME/resources/icons/crosshairs.png +0 -0
- PYME/resources/icons/line_select.png +0 -0
- PYME/resources/icons/logo_fmhs.png +0 -0
- PYME/resources/icons/media-playback-pause.png +0 -0
- PYME/resources/icons/media-playback-start.png +0 -0
- PYME/resources/icons/media-skip-backward.png +0 -0
- PYME/resources/icons/media-skip-forward.png +0 -0
- PYME/resources/icons/mesh.png +0 -0
- PYME/resources/icons/mesh.svg +28 -0
- PYME/resources/icons/pmacquire.icns +0 -0
- PYME/resources/icons/pmacquire.ico +0 -0
- PYME/resources/icons/pmanal.icns +0 -0
- PYME/resources/icons/pmanal.ico +0 -0
- PYME/resources/icons/pmvis.icns +0 -0
- PYME/resources/icons/pmvis.ico +0 -0
- PYME/resources/icons/points.png +0 -0
- PYME/resources/icons/points.svg +16 -0
- PYME/resources/icons/pymeLogo.png +0 -0
- PYME/resources/icons/rect_select.png +0 -0
- PYME/resources/icons/squiggle_select.png +0 -0
- PYME/resources/icons/text3800.icns +0 -0
- PYME/resources/icons/text3800.ico +0 -0
- PYME/resources/icons/text3800.png +0 -0
- PYME/resources/icons/text3800.tif +0 -0
- PYME/resources/icons/text5377.icns +0 -0
- PYME/resources/icons/text5377.ico +0 -0
- PYME/resources/icons/text5377.png +0 -0
- PYME/resources/icons/tracks.png +0 -0
- PYME/resources/icons/tracks.svg +19 -0
- PYME/resources/icons/view-front.png +0 -0
- PYME/resources/icons/view-home.png +0 -0
- PYME/resources/icons/view-right.png +0 -0
- PYME/resources/icons/view-top.png +0 -0
- PYME/resources/test_datasets/README.md +8 -0
- PYME/resources/test_datasets/t_im.tif +0 -0
- PYME/resources/test_datasets/test_csv.csv +4282 -0
- PYME/resources/test_datasets/test_hdf.hdf +0 -0
- PYME/resources/web/rule_inline.html +21 -0
- PYME/resources/web/ruleserver.html +75 -0
- PYME/resources/web/static/bootstrap.min.js +7 -0
- PYME/resources/web/static/cluster.css +137 -0
- PYME/resources/web/static/css/bootstrap-theme.css +587 -0
- PYME/resources/web/static/css/bootstrap-theme.min.css +6 -0
- PYME/resources/web/static/css/bootstrap.css +6757 -0
- PYME/resources/web/static/css/bootstrap.min.css +6 -0
- PYME/resources/web/static/css/flat_design_colors_full.css +306 -0
- PYME/resources/web/static/css/recipe_editor.css +106 -0
- PYME/resources/web/static/dashboard.css +106 -0
- PYME/resources/web/static/fileselector.js +77 -0
- PYME/resources/web/static/fonts/glyphicons-halflings-regular.eot +0 -0
- PYME/resources/web/static/fonts/glyphicons-halflings-regular.svg +288 -0
- PYME/resources/web/static/fonts/glyphicons-halflings-regular.ttf +0 -0
- PYME/resources/web/static/fonts/glyphicons-halflings-regular.woff +0 -0
- PYME/resources/web/static/fonts/glyphicons-halflings-regular.woff2 +0 -0
- PYME/resources/web/static/images/osd_flat/LICENSE.txt +116 -0
- PYME/resources/web/static/images/osd_flat/README.md +9 -0
- PYME/resources/web/static/images/osd_flat/fullpage_grouphover.png +0 -0
- PYME/resources/web/static/images/osd_flat/fullpage_hover.png +0 -0
- PYME/resources/web/static/images/osd_flat/fullpage_pressed.png +0 -0
- PYME/resources/web/static/images/osd_flat/fullpage_rest.png +0 -0
- PYME/resources/web/static/images/osd_flat/home_grouphover.png +0 -0
- PYME/resources/web/static/images/osd_flat/home_hover.png +0 -0
- PYME/resources/web/static/images/osd_flat/home_pressed.png +0 -0
- PYME/resources/web/static/images/osd_flat/home_rest.png +0 -0
- PYME/resources/web/static/images/osd_flat/next_grouphover.png +0 -0
- PYME/resources/web/static/images/osd_flat/next_hover.png +0 -0
- PYME/resources/web/static/images/osd_flat/next_pressed.png +0 -0
- PYME/resources/web/static/images/osd_flat/next_rest.png +0 -0
- PYME/resources/web/static/images/osd_flat/previous_grouphover.png +0 -0
- PYME/resources/web/static/images/osd_flat/previous_hover.png +0 -0
- PYME/resources/web/static/images/osd_flat/previous_pressed.png +0 -0
- PYME/resources/web/static/images/osd_flat/previous_rest.png +0 -0
- PYME/resources/web/static/images/osd_flat/rotateleft_grouphover.png +0 -0
- PYME/resources/web/static/images/osd_flat/rotateleft_hover.png +0 -0
- PYME/resources/web/static/images/osd_flat/rotateleft_pressed.png +0 -0
- PYME/resources/web/static/images/osd_flat/rotateleft_rest.png +0 -0
- PYME/resources/web/static/images/osd_flat/rotateright_grouphover.png +0 -0
- PYME/resources/web/static/images/osd_flat/rotateright_hover.png +0 -0
- PYME/resources/web/static/images/osd_flat/rotateright_pressed.png +0 -0
- PYME/resources/web/static/images/osd_flat/rotateright_rest.png +0 -0
- PYME/resources/web/static/images/osd_flat/zoomin_grouphover.png +0 -0
- PYME/resources/web/static/images/osd_flat/zoomin_hover.png +0 -0
- PYME/resources/web/static/images/osd_flat/zoomin_pressed.png +0 -0
- PYME/resources/web/static/images/osd_flat/zoomin_rest.png +0 -0
- PYME/resources/web/static/images/osd_flat/zoomout_grouphover.png +0 -0
- PYME/resources/web/static/images/osd_flat/zoomout_hover.png +0 -0
- PYME/resources/web/static/images/osd_flat/zoomout_pressed.png +0 -0
- PYME/resources/web/static/images/osd_flat/zoomout_rest.png +0 -0
- PYME/resources/web/static/jigna-vue-bare.js +1395 -0
- PYME/resources/web/static/jquery.min.js +2 -0
- PYME/resources/web/static/jstree.min.js +6 -0
- PYME/resources/web/static/openSeadragonGL.js +102 -0
- PYME/resources/web/static/openseadragon-svg-overlay.js +103 -0
- PYME/resources/web/static/openseadragon-viewerinputhook.min.js +6 -0
- PYME/resources/web/static/openseadragon.min.js +9 -0
- PYME/resources/web/static/recipe_editor.js +119 -0
- PYME/resources/web/static/shaders/fragment/lut.glsl +20 -0
- PYME/resources/web/static/shaders/fragment/none.glsl +17 -0
- PYME/resources/web/static/shaders/fragment/outline.glsl +43 -0
- PYME/resources/web/static/shaders/fragment/rect.glsl +7 -0
- PYME/resources/web/static/shaders/fragment/sobel3.glsl +71 -0
- PYME/resources/web/static/shaders/fragment/white.glsl +4 -0
- PYME/resources/web/static/shaders/vertex/rect.glsl +22 -0
- PYME/resources/web/static/shaders/vertex/square.glsl +9 -0
- PYME/resources/web/static/utils.js +3 -0
- PYME/resources/web/static/viaWebGL.js +217 -0
- PYME/setup.py +109 -0
- PYME/setup_exe.py +57 -0
- PYME/simulation/__init__.py +0 -0
- PYME/simulation/locify.py +319 -0
- PYME/simulation/pointsets.py +279 -0
- PYME/simulation/wormlike.py +99 -0
- PYME/simulation/wormlike2.py +198 -0
- PYME/simulation/wormlike3.py +197 -0
- PYME/simulation/wormlike_curled.py +104 -0
- PYME/tileviewer/__init__.py +0 -0
- PYME/tileviewer/templates/roi_list.html +12 -0
- PYME/tileviewer/templates/tileviewer.html +247 -0
- PYME/tileviewer/tileviewer.py +207 -0
- PYME/ui/AUIFrame.py +279 -0
- PYME/ui/MetadataTree.py +469 -0
- PYME/ui/__init__.py +4 -0
- PYME/ui/about_dlg.py +29 -0
- PYME/ui/autoFoldPanel.py +643 -0
- PYME/ui/cascading_layout.py +45 -0
- PYME/ui/crop_dialog.py +145 -0
- PYME/ui/custom_traits_editors.py +508 -0
- PYME/ui/editFilterDialog.py +80 -0
- PYME/ui/editList.py +40 -0
- PYME/ui/fastGraph.py +240 -0
- PYME/ui/filterPane.py +348 -0
- PYME/ui/histLimits.py +543 -0
- PYME/ui/layerFoldPanel.py +232 -0
- PYME/ui/manualFoldPanel.py +870 -0
- PYME/ui/mytimer.py +116 -0
- PYME/ui/patch_traitsui.py +151 -0
- PYME/ui/progress.py +160 -0
- PYME/ui/recArrayView.py +145 -0
- PYME/ui/selection.py +71 -0
- PYME/ui/shell.py +37 -0
- PYME/ui/traitsui_constants.py +91 -0
- PYME/ui/wx_compat.py +43 -0
- PYME/update_version.py +159 -0
- PYME/util/__init__.py +3 -0
- PYME/util/authenticate.py +164 -0
- PYME/util/execfile.py +21 -0
- PYME/util/fProfile/__init__.py +1 -0
- PYME/util/fProfile/convertProfile.py +117 -0
- PYME/util/fProfile/fProfile.py +162 -0
- PYME/util/fProfile/html/404.html +60 -0
- PYME/util/fProfile/html/css/main.css +258 -0
- PYME/util/fProfile/html/css/normalize.css +427 -0
- PYME/util/fProfile/html/css/normalize.min.css +1 -0
- PYME/util/fProfile/html/index.html +64 -0
- PYME/util/fProfile/html/js/main.js +492 -0
- PYME/util/fProfile/html/js/plugins.js +24 -0
- PYME/util/fProfile/html/js/vendor/crossfilter.min.js +1 -0
- PYME/util/fProfile/html/js/vendor/jquery-1.11.2.min.js +4 -0
- PYME/util/fProfile/html/js/vendor/modernizr-2.8.3.min.js +4 -0
- PYME/util/fProfile/html/js/vendor/tinycolor-min.js +4 -0
- PYME/util/fProfile/viewProfile.py +30 -0
- PYME/util/install_dependencies.py +95 -0
- PYME/util/log_verbosity.py +11 -0
- PYME/util/mProfile/__init__.py +1 -0
- PYME/util/mProfile/colorize_db_t.py +297 -0
- PYME/util/mProfile/mProfile.py +164 -0
- PYME/util/mProfile/p.py +101 -0
- PYME/util/mProfile/tProfile.py +165 -0
- PYME/util/pymelauncher.py +47 -0
- PYME/util/shmarray/__init__.py +0 -0
- PYME/util/shmarray/shmTest.py +74 -0
- PYME/util/shmarray/shmarray.py +165 -0
- PYME/util/webframework.py +365 -0
- PYME/version.py +62 -0
- python_microscopy-25.11.20.dist-info/METADATA +68 -0
- python_microscopy-25.11.20.dist-info/RECORD +1278 -0
- python_microscopy-25.11.20.dist-info/WHEEL +4 -0
- python_microscopy-25.11.20.dist-info/entry_points.txt +18 -0
|
@@ -0,0 +1,767 @@
|
|
|
1
|
+
# This file is auto-generated. Do not edit!
|
|
2
|
+
DRIVER_DLL_NAME = "uc480.dll"
|
|
3
|
+
IS_COLORMODE_INVALID = 0
|
|
4
|
+
IS_COLORMODE_MONOCHROME = 1
|
|
5
|
+
IS_COLORMODE_BAYER = 2
|
|
6
|
+
KODAK_KAI1020M_NAME = u"D1024G23M\0"
|
|
7
|
+
KODAK_KAI1020C_NAME = u"D1024G23C\0"
|
|
8
|
+
IS_SENSOR_INVALID = 0x0000
|
|
9
|
+
IS_SENSOR_C0640R13M = 0x0001
|
|
10
|
+
IS_SENSOR_C0640R13C = 0x0002
|
|
11
|
+
IS_SENSOR_C1280R23M = 0x0003
|
|
12
|
+
IS_SENSOR_C1280R23C = 0x0004
|
|
13
|
+
IS_SENSOR_C1600R12C = 0x0008
|
|
14
|
+
IS_SENSOR_C2048R12C = 0x000a
|
|
15
|
+
IS_SENSOR_C2592R12C = 0x000c
|
|
16
|
+
IS_SENSOR_C0640G12M = 0x0010
|
|
17
|
+
IS_SENSOR_C0640G12C = 0x0011
|
|
18
|
+
IS_SENSOR_C0752G13M = 0x0012
|
|
19
|
+
IS_SENSOR_C0752G13C = 0x0013
|
|
20
|
+
IS_SENSOR_C1282R13C = 0x0015
|
|
21
|
+
IS_SENSOR_C1601R13C = 0x0017
|
|
22
|
+
IS_SENSOR_C0753G13M = 0x0018
|
|
23
|
+
IS_SENSOR_C0753G13C = 0x0019
|
|
24
|
+
IS_SENSOR_C0754G13M = 0x0022
|
|
25
|
+
IS_SENSOR_C0754G13C = 0x0023
|
|
26
|
+
IS_SENSOR_C1284R13C = 0x0025
|
|
27
|
+
IS_SENSOR_C1604R13C = 0x0027
|
|
28
|
+
IS_SENSOR_C1285R12M = 0x0028
|
|
29
|
+
IS_SENSOR_C1285R12C = 0x0029
|
|
30
|
+
IS_SENSOR_C1605R12C = 0x002B
|
|
31
|
+
IS_SENSOR_C2055R12C = 0x002D
|
|
32
|
+
IS_SENSOR_C2595R12C = 0x002F
|
|
33
|
+
IS_SENSOR_C1280R12M = 0x0030
|
|
34
|
+
IS_SENSOR_C1280R12C = 0x0031
|
|
35
|
+
IS_SENSOR_C1283R12M = 0x0032
|
|
36
|
+
IS_SENSOR_C1283R12C = 0x0033
|
|
37
|
+
IS_SENSOR_C1603R12C = 0x0035
|
|
38
|
+
IS_SENSOR_C2053R12C = 0x0037
|
|
39
|
+
IS_SENSOR_C2593R12C = 0x0039
|
|
40
|
+
IS_SENSOR_C1286R12C = 0x003B
|
|
41
|
+
IS_SENSOR_D1024G13M = 0x0080
|
|
42
|
+
IS_SENSOR_D1024G13C = 0x0081
|
|
43
|
+
IS_SENSOR_D0640G13M = 0x0082
|
|
44
|
+
IS_SENSOR_D0640G13C = 0x0083
|
|
45
|
+
IS_SENSOR_D1281G12M = 0x0084
|
|
46
|
+
IS_SENSOR_D1281G12C = 0x0085
|
|
47
|
+
IS_SENSOR_D1024G23M = 0x0086
|
|
48
|
+
IS_SENSOR_D1024G23C = 0x0087
|
|
49
|
+
IS_SENSOR_D0640G12M = 0x0088
|
|
50
|
+
IS_SENSOR_D0640G12C = 0x0089
|
|
51
|
+
IS_SENSOR_D0640G14M = 0x0090
|
|
52
|
+
IS_SENSOR_D0640G14C = 0x0091
|
|
53
|
+
IS_SENSOR_D0768G12M = 0x0092
|
|
54
|
+
IS_SENSOR_D0768G12C = 0x0093
|
|
55
|
+
IS_SENSOR_D1280G12M = 0x0096
|
|
56
|
+
IS_SENSOR_D1280G12C = 0x0097
|
|
57
|
+
IS_SENSOR_D1600G12M = 0x0098
|
|
58
|
+
IS_SENSOR_D1600G12C = 0x0099
|
|
59
|
+
IS_NO_SUCCESS = -1
|
|
60
|
+
IS_SUCCESS = 0
|
|
61
|
+
IS_INVALID_CAMERA_HANDLE = 1
|
|
62
|
+
IS_INVALID_HANDLE = 1
|
|
63
|
+
IS_IO_REQUEST_FAILED = 2
|
|
64
|
+
IS_CANT_OPEN_DEVICE = 3
|
|
65
|
+
IS_CANT_CLOSE_DEVICE = 4
|
|
66
|
+
IS_CANT_SETUP_MEMORY = 5
|
|
67
|
+
IS_NO_HWND_FOR_ERROR_REPORT = 6
|
|
68
|
+
IS_ERROR_MESSAGE_NOT_CREATED = 7
|
|
69
|
+
IS_ERROR_STRING_NOT_FOUND = 8
|
|
70
|
+
IS_HOOK_NOT_CREATED = 9
|
|
71
|
+
IS_TIMER_NOT_CREATED = 10
|
|
72
|
+
IS_CANT_OPEN_REGISTRY = 11
|
|
73
|
+
IS_CANT_READ_REGISTRY = 12
|
|
74
|
+
IS_CANT_VALIDATE_BOARD = 13
|
|
75
|
+
IS_CANT_GIVE_BOARD_ACCESS = 14
|
|
76
|
+
IS_NO_IMAGE_MEM_ALLOCATED = 15
|
|
77
|
+
IS_CANT_CLEANUP_MEMORY = 16
|
|
78
|
+
IS_CANT_COMMUNICATE_WITH_DRIVER = 17
|
|
79
|
+
IS_FUNCTION_NOT_SUPPORTED_YET = 18
|
|
80
|
+
IS_OPERATING_SYSTEM_NOT_SUPPORTED = 19
|
|
81
|
+
IS_INVALID_VIDEO_IN = 20
|
|
82
|
+
IS_INVALID_IMG_SIZE = 21
|
|
83
|
+
IS_INVALID_ADDRESS = 22
|
|
84
|
+
IS_INVALID_VIDEO_MODE = 23
|
|
85
|
+
IS_INVALID_AGC_MODE = 24
|
|
86
|
+
IS_INVALID_GAMMA_MODE = 25
|
|
87
|
+
IS_INVALID_SYNC_LEVEL = 26
|
|
88
|
+
IS_INVALID_CBARS_MODE = 27
|
|
89
|
+
IS_INVALID_COLOR_MODE = 28
|
|
90
|
+
IS_INVALID_SCALE_FACTOR = 29
|
|
91
|
+
IS_INVALID_IMAGE_SIZE = 30
|
|
92
|
+
IS_INVALID_IMAGE_POS = 31
|
|
93
|
+
IS_INVALID_CAPTURE_MODE = 32
|
|
94
|
+
IS_INVALID_RISC_PROGRAM = 33
|
|
95
|
+
IS_INVALID_BRIGHTNESS = 34
|
|
96
|
+
IS_INVALID_CONTRAST = 35
|
|
97
|
+
IS_INVALID_SATURATION_U = 36
|
|
98
|
+
IS_INVALID_SATURATION_V = 37
|
|
99
|
+
IS_INVALID_HUE = 38
|
|
100
|
+
IS_INVALID_HOR_FILTER_STEP = 39
|
|
101
|
+
IS_INVALID_VERT_FILTER_STEP = 40
|
|
102
|
+
IS_INVALID_EEPROM_READ_ADDRESS = 41
|
|
103
|
+
IS_INVALID_EEPROM_WRITE_ADDRESS = 42
|
|
104
|
+
IS_INVALID_EEPROM_READ_LENGTH = 43
|
|
105
|
+
IS_INVALID_EEPROM_WRITE_LENGTH = 44
|
|
106
|
+
IS_INVALID_BOARD_INFO_POINTER = 45
|
|
107
|
+
IS_INVALID_DISPLAY_MODE = 46
|
|
108
|
+
IS_INVALID_ERR_REP_MODE = 47
|
|
109
|
+
IS_INVALID_BITS_PIXEL = 48
|
|
110
|
+
IS_INVALID_MEMORY_POINTER = 49
|
|
111
|
+
IS_FILE_WRITE_OPEN_ERROR = 50
|
|
112
|
+
IS_FILE_READ_OPEN_ERROR = 51
|
|
113
|
+
IS_FILE_READ_INVALID_BMP_ID = 52
|
|
114
|
+
IS_FILE_READ_INVALID_BMP_SIZE = 53
|
|
115
|
+
IS_FILE_READ_INVALID_BIT_COUNT = 54
|
|
116
|
+
IS_WRONG_KERNEL_VERSION = 55
|
|
117
|
+
IS_RISC_INVALID_XLENGTH = 60
|
|
118
|
+
IS_RISC_INVALID_YLENGTH = 61
|
|
119
|
+
IS_RISC_EXCEED_IMG_SIZE = 62
|
|
120
|
+
IS_DD_MAIN_FAILED = 70
|
|
121
|
+
IS_DD_PRIMSURFACE_FAILED = 71
|
|
122
|
+
IS_DD_SCRN_SIZE_NOT_SUPPORTED = 72
|
|
123
|
+
IS_DD_CLIPPER_FAILED = 73
|
|
124
|
+
IS_DD_CLIPPER_HWND_FAILED = 74
|
|
125
|
+
IS_DD_CLIPPER_CONNECT_FAILED = 75
|
|
126
|
+
IS_DD_BACKSURFACE_FAILED = 76
|
|
127
|
+
IS_DD_BACKSURFACE_IN_SYSMEM = 77
|
|
128
|
+
IS_DD_MDL_MALLOC_ERR = 78
|
|
129
|
+
IS_DD_MDL_SIZE_ERR = 79
|
|
130
|
+
IS_DD_CLIP_NO_CHANGE = 80
|
|
131
|
+
IS_DD_PRIMMEM_NULL = 81
|
|
132
|
+
IS_DD_BACKMEM_NULL = 82
|
|
133
|
+
IS_DD_BACKOVLMEM_NULL = 83
|
|
134
|
+
IS_DD_OVERLAYSURFACE_FAILED = 84
|
|
135
|
+
IS_DD_OVERLAYSURFACE_IN_SYSMEM = 85
|
|
136
|
+
IS_DD_OVERLAY_NOT_ALLOWED = 86
|
|
137
|
+
IS_DD_OVERLAY_COLKEY_ERR = 87
|
|
138
|
+
IS_DD_OVERLAY_NOT_ENABLED = 88
|
|
139
|
+
IS_DD_GET_DC_ERROR = 89
|
|
140
|
+
IS_DD_DDRAW_DLL_NOT_LOADED = 90
|
|
141
|
+
IS_DD_THREAD_NOT_CREATED = 91
|
|
142
|
+
IS_DD_CANT_GET_CAPS = 92
|
|
143
|
+
IS_DD_NO_OVERLAYSURFACE = 93
|
|
144
|
+
IS_DD_NO_OVERLAYSTRETCH = 94
|
|
145
|
+
IS_DD_CANT_CREATE_OVERLAYSURFACE = 95
|
|
146
|
+
IS_DD_CANT_UPDATE_OVERLAYSURFACE = 96
|
|
147
|
+
IS_DD_INVALID_STRETCH = 97
|
|
148
|
+
IS_EV_INVALID_EVENT_NUMBER = 100
|
|
149
|
+
IS_INVALID_MODE = 101
|
|
150
|
+
IS_CANT_FIND_HOOK = 102
|
|
151
|
+
IS_CANT_GET_HOOK_PROC_ADDR = 103
|
|
152
|
+
IS_CANT_CHAIN_HOOK_PROC = 104
|
|
153
|
+
IS_CANT_SETUP_WND_PROC = 105
|
|
154
|
+
IS_HWND_NULL = 106
|
|
155
|
+
IS_INVALID_UPDATE_MODE = 107
|
|
156
|
+
IS_NO_ACTIVE_IMG_MEM = 108
|
|
157
|
+
IS_CANT_INIT_EVENT = 109
|
|
158
|
+
IS_FUNC_NOT_AVAIL_IN_OS = 110
|
|
159
|
+
IS_CAMERA_NOT_CONNECTED = 111
|
|
160
|
+
IS_SEQUENCE_LIST_EMPTY = 112
|
|
161
|
+
IS_CANT_ADD_TO_SEQUENCE = 113
|
|
162
|
+
IS_LOW_OF_SEQUENCE_RISC_MEM = 114
|
|
163
|
+
IS_IMGMEM2FREE_USED_IN_SEQ = 115
|
|
164
|
+
IS_IMGMEM_NOT_IN_SEQUENCE_LIST = 116
|
|
165
|
+
IS_SEQUENCE_BUF_ALREADY_LOCKED = 117
|
|
166
|
+
IS_INVALID_DEVICE_ID = 118
|
|
167
|
+
IS_INVALID_BOARD_ID = 119
|
|
168
|
+
IS_ALL_DEVICES_BUSY = 120
|
|
169
|
+
IS_HOOK_BUSY = 121
|
|
170
|
+
IS_TIMED_OUT = 122
|
|
171
|
+
IS_NULL_POINTER = 123
|
|
172
|
+
IS_WRONG_HOOK_VERSION = 124
|
|
173
|
+
IS_INVALID_PARAMETER = 125
|
|
174
|
+
IS_NOT_ALLOWED = 126
|
|
175
|
+
IS_OUT_OF_MEMORY = 127
|
|
176
|
+
IS_INVALID_WHILE_LIVE = 128
|
|
177
|
+
IS_ACCESS_VIOLATION = 129
|
|
178
|
+
IS_UNKNOWN_ROP_EFFECT = 130
|
|
179
|
+
IS_INVALID_RENDER_MODE = 131
|
|
180
|
+
IS_INVALID_THREAD_CONTEXT = 132
|
|
181
|
+
IS_NO_HARDWARE_INSTALLED = 133
|
|
182
|
+
IS_INVALID_WATCHDOG_TIME = 134
|
|
183
|
+
IS_INVALID_WATCHDOG_MODE = 135
|
|
184
|
+
IS_INVALID_PASSTHROUGH_IN = 136
|
|
185
|
+
IS_ERROR_SETTING_PASSTHROUGH_IN = 137
|
|
186
|
+
IS_FAILURE_ON_SETTING_WATCHDOG = 138
|
|
187
|
+
IS_NO_USB20 = 139
|
|
188
|
+
IS_CAPTURE_RUNNING = 140
|
|
189
|
+
IS_MEMORY_BOARD_ACTIVATED = 141
|
|
190
|
+
IS_MEMORY_BOARD_DEACTIVATED = 142
|
|
191
|
+
IS_NO_MEMORY_BOARD_CONNECTED = 143
|
|
192
|
+
IS_TOO_LESS_MEMORY = 144
|
|
193
|
+
IS_IMAGE_NOT_PRESENT = 145
|
|
194
|
+
IS_MEMORY_MODE_RUNNING = 146
|
|
195
|
+
IS_MEMORYBOARD_DISABLED = 147
|
|
196
|
+
IS_TRIGGER_ACTIVATED = 148
|
|
197
|
+
IS_WRONG_KEY = 150
|
|
198
|
+
IS_CRC_ERROR = 151
|
|
199
|
+
IS_NOT_YET_RELEASED = 152
|
|
200
|
+
IS_NOT_CALIBRATED = 153
|
|
201
|
+
IS_WAITING_FOR_KERNEL = 154
|
|
202
|
+
IS_NOT_SUPPORTED = 155
|
|
203
|
+
IS_TRIGGER_NOT_ACTIVATED = 156
|
|
204
|
+
IS_OPERATION_ABORTED = 157
|
|
205
|
+
IS_BAD_STRUCTURE_SIZE = 158
|
|
206
|
+
IS_INVALID_BUFFER_SIZE = 159
|
|
207
|
+
IS_INVALID_PIXEL_CLOCK = 160
|
|
208
|
+
IS_INVALID_EXPOSURE_TIME = 161
|
|
209
|
+
IS_AUTO_EXPOSURE_RUNNING = 162
|
|
210
|
+
IS_CANNOT_CREATE_BB_SURF = 163
|
|
211
|
+
IS_CANNOT_CREATE_BB_MIX = 164
|
|
212
|
+
IS_BB_OVLMEM_NULL = 165
|
|
213
|
+
IS_CANNOT_CREATE_BB_OVL = 166
|
|
214
|
+
IS_NOT_SUPP_IN_OVL_SURF_MODE = 167
|
|
215
|
+
IS_INVALID_SURFACE = 168
|
|
216
|
+
IS_SURFACE_LOST = 169
|
|
217
|
+
IS_RELEASE_BB_OVL_DC = 170
|
|
218
|
+
IS_BB_TIMER_NOT_CREATED = 171
|
|
219
|
+
IS_BB_OVL_NOT_EN = 172
|
|
220
|
+
IS_ONLY_IN_BB_MODE = 173
|
|
221
|
+
IS_INVALID_COLOR_FORMAT = 174
|
|
222
|
+
IS_INVALID_WB_BINNING_MODE = 175
|
|
223
|
+
IS_INVALID_I2C_DEVICE_ADDRESS = 176
|
|
224
|
+
IS_COULD_NOT_CONVERT = 177
|
|
225
|
+
IS_TRANSFER_ERROR = 178
|
|
226
|
+
IS_OFF = 0
|
|
227
|
+
IS_ON = 1
|
|
228
|
+
IS_IGNORE_PARAMETER = -1
|
|
229
|
+
IS_USE_DEVICE_ID = 0x8000
|
|
230
|
+
IS_GET_AUTO_EXIT_ENABLED = 0x8000
|
|
231
|
+
IS_DISABLE_AUTO_EXIT = 0
|
|
232
|
+
IS_ENABLE_AUTO_EXIT = 1
|
|
233
|
+
IS_GET_LIVE = 0x8000
|
|
234
|
+
IS_WAIT = 0x0001
|
|
235
|
+
IS_DONT_WAIT = 0x0000
|
|
236
|
+
IS_FORCE_VIDEO_STOP = 0x4000
|
|
237
|
+
IS_FORCE_VIDEO_START = 0x4000
|
|
238
|
+
IS_USE_NEXT_MEM = 0x8000
|
|
239
|
+
IS_VIDEO_NOT_FINISH = 0
|
|
240
|
+
IS_VIDEO_FINISH = 1
|
|
241
|
+
IS_GET_RENDER_MODE = 0x8000
|
|
242
|
+
IS_RENDER_DISABLED = 0
|
|
243
|
+
IS_RENDER_NORMAL = 1
|
|
244
|
+
IS_RENDER_FIT_TO_WINDOW = 2
|
|
245
|
+
IS_RENDER_DOWNSCALE_1_2 = 4
|
|
246
|
+
IS_RENDER_MIRROR_UPDOWN = 16
|
|
247
|
+
IS_RENDER_DOUBLE_HEIGHT = 32
|
|
248
|
+
IS_RENDER_HALF_HEIGHT = 64
|
|
249
|
+
IS_GET_EXTERNALTRIGGER = 0x8000
|
|
250
|
+
IS_GET_TRIGGER_STATUS = 0x8001
|
|
251
|
+
IS_GET_TRIGGER_MASK = 0x8002
|
|
252
|
+
IS_GET_TRIGGER_INPUTS = 0x8003
|
|
253
|
+
IS_GET_SUPPORTED_TRIGGER_MODE = 0x8004
|
|
254
|
+
IS_GET_TRIGGER_COUNTER = 0x8000
|
|
255
|
+
IS_SET_TRIG_OFF = 0x000
|
|
256
|
+
IS_SET_TRIG_HI_LO = 0x001
|
|
257
|
+
IS_SET_TRIG_LO_HI = 0x002
|
|
258
|
+
IS_SET_TRIG_SOFTWARE = 0x008
|
|
259
|
+
IS_SET_TRIG_MASK = 0x100
|
|
260
|
+
IS_GET_TRIGGER_DELAY = 0x8000
|
|
261
|
+
IS_GET_MIN_TRIGGER_DELAY = 0x8001
|
|
262
|
+
IS_GET_MAX_TRIGGER_DELAY = 0x8002
|
|
263
|
+
IS_GET_TRIGGER_DELAY_GRANULARITY = 0x8003
|
|
264
|
+
IS_GET_PIXEL_CLOCK = 0x8000
|
|
265
|
+
IS_GET_DEFAULT_PIXEL_CLK = 0x8001
|
|
266
|
+
IS_GET_FRAMERATE = 0x8000
|
|
267
|
+
IS_GET_DEFAULT_FRAMERATE = 0x8001
|
|
268
|
+
IS_GET_EXPOSURE_TIME = 0x8000
|
|
269
|
+
IS_GET_DEFAULT_EXPOSURE = 0x8001
|
|
270
|
+
IS_GET_MASTER_GAIN = 0x8000
|
|
271
|
+
IS_GET_RED_GAIN = 0x8001
|
|
272
|
+
IS_GET_GREEN_GAIN = 0x8002
|
|
273
|
+
IS_GET_BLUE_GAIN = 0x8003
|
|
274
|
+
IS_GET_DEFAULT_MASTER = 0x8004
|
|
275
|
+
IS_GET_DEFAULT_RED = 0x8005
|
|
276
|
+
IS_GET_DEFAULT_GREEN = 0x8006
|
|
277
|
+
IS_GET_DEFAULT_BLUE = 0x8007
|
|
278
|
+
IS_GET_GAINBOOST = 0x8008
|
|
279
|
+
IS_SET_GAINBOOST_ON = 0x0001
|
|
280
|
+
IS_SET_GAINBOOST_OFF = 0x0000
|
|
281
|
+
IS_GET_SUPPORTED_GAINBOOST = 0x0002
|
|
282
|
+
IS_GET_MASTER_GAIN_FACTOR = 0x8000
|
|
283
|
+
IS_GET_RED_GAIN_FACTOR = 0x8001
|
|
284
|
+
IS_GET_GREEN_GAIN_FACTOR = 0x8002
|
|
285
|
+
IS_GET_BLUE_GAIN_FACTOR = 0x8003
|
|
286
|
+
IS_SET_MASTER_GAIN_FACTOR = 0x8004
|
|
287
|
+
IS_SET_RED_GAIN_FACTOR = 0x8005
|
|
288
|
+
IS_SET_GREEN_GAIN_FACTOR = 0x8006
|
|
289
|
+
IS_SET_BLUE_GAIN_FACTOR = 0x8007
|
|
290
|
+
IS_GET_DEFAULT_MASTER_GAIN_FACTOR = 0x8008
|
|
291
|
+
IS_GET_DEFAULT_RED_GAIN_FACTOR = 0x8009
|
|
292
|
+
IS_GET_DEFAULT_GREEN_GAIN_FACTOR = 0x800a
|
|
293
|
+
IS_GET_DEFAULT_BLUE_GAIN_FACTOR = 0x800b
|
|
294
|
+
IS_INQUIRE_MASTER_GAIN_FACTOR = 0x800c
|
|
295
|
+
IS_INQUIRE_RED_GAIN_FACTOR = 0x800d
|
|
296
|
+
IS_INQUIRE_GREEN_GAIN_FACTOR = 0x800e
|
|
297
|
+
IS_INQUIRE_BLUE_GAIN_FACTOR = 0x800f
|
|
298
|
+
IS_SET_GLOBAL_SHUTTER_ON = 0x0001
|
|
299
|
+
IS_SET_GLOBAL_SHUTTER_OFF = 0x0000
|
|
300
|
+
IS_GET_GLOBAL_SHUTTER = 0x0010
|
|
301
|
+
IS_GET_SUPPORTED_GLOBAL_SHUTTER = 0x0020
|
|
302
|
+
IS_GET_BL_COMPENSATION = 0x8000
|
|
303
|
+
IS_GET_BL_OFFSET = 0x8001
|
|
304
|
+
IS_GET_BL_DEFAULT_MODE = 0x8002
|
|
305
|
+
IS_GET_BL_DEFAULT_OFFSET = 0x8003
|
|
306
|
+
IS_GET_BL_SUPPORTED_MODE = 0x8004
|
|
307
|
+
IS_BL_COMPENSATION_DISABLE = 0
|
|
308
|
+
IS_BL_COMPENSATION_ENABLE = 1
|
|
309
|
+
IS_BL_COMPENSATION_OFFSET = 32
|
|
310
|
+
IS_GET_HW_GAMMA = 0x8000
|
|
311
|
+
IS_GET_HW_SUPPORTED_GAMMA = 0x8001
|
|
312
|
+
IS_SET_HW_GAMMA_OFF = 0x0000
|
|
313
|
+
IS_SET_HW_GAMMA_ON = 0x0001
|
|
314
|
+
IS_GET_BRIGHTNESS = 0x8000
|
|
315
|
+
IS_MIN_BRIGHTNESS = 0
|
|
316
|
+
IS_MAX_BRIGHTNESS = 255
|
|
317
|
+
IS_DEFAULT_BRIGHTNESS = -1
|
|
318
|
+
IS_GET_CONTRAST = 0x8000
|
|
319
|
+
IS_MIN_CONTRAST = 0
|
|
320
|
+
IS_MAX_CONTRAST = 511
|
|
321
|
+
IS_DEFAULT_CONTRAST = -1
|
|
322
|
+
IS_GET_GAMMA = 0x8000
|
|
323
|
+
IS_MIN_GAMMA = 1
|
|
324
|
+
IS_MAX_GAMMA = 1000
|
|
325
|
+
IS_DEFAULT_GAMMA = -1
|
|
326
|
+
IS_GET_SATURATION_U = 0x8000
|
|
327
|
+
IS_MIN_SATURATION_U = 0
|
|
328
|
+
IS_MAX_SATURATION_U = 511
|
|
329
|
+
IS_DEFAULT_SATURATION_U = 254
|
|
330
|
+
IS_GET_SATURATION_V = 0x8001
|
|
331
|
+
IS_MIN_SATURATION_V = 0
|
|
332
|
+
IS_MAX_SATURATION_V = 511
|
|
333
|
+
IS_DEFAULT_SATURATION_V = 180
|
|
334
|
+
IS_GET_HUE = 0x8000
|
|
335
|
+
IS_MIN_HUE = 0
|
|
336
|
+
IS_MAX_HUE = 255
|
|
337
|
+
IS_DEFAULT_HUE = 128
|
|
338
|
+
IS_GET_IMAGE_SIZE_X = 0x8000
|
|
339
|
+
IS_GET_IMAGE_SIZE_Y = 0x8001
|
|
340
|
+
IS_GET_IMAGE_SIZE_X_INC = 0x8002
|
|
341
|
+
IS_GET_IMAGE_SIZE_Y_INC = 0x8003
|
|
342
|
+
IS_GET_IMAGE_SIZE_X_MIN = 0x8004
|
|
343
|
+
IS_GET_IMAGE_SIZE_Y_MIN = 0x8005
|
|
344
|
+
IS_GET_IMAGE_SIZE_X_MAX = 0x8006
|
|
345
|
+
IS_GET_IMAGE_SIZE_Y_MAX = 0x8007
|
|
346
|
+
IS_GET_IMAGE_POS_X = 0x8001
|
|
347
|
+
IS_GET_IMAGE_POS_Y = 0x8002
|
|
348
|
+
IS_GET_IMAGE_POS_X_ABS = 0xC001
|
|
349
|
+
IS_GET_IMAGE_POS_Y_ABS = 0xC002
|
|
350
|
+
IS_GET_IMAGE_POS_X_INC = 0xC003
|
|
351
|
+
IS_GET_IMAGE_POS_Y_INC = 0xC004
|
|
352
|
+
IS_GET_IMAGE_POS_X_MIN = 0xC005
|
|
353
|
+
IS_GET_IMAGE_POS_Y_MIN = 0xC006
|
|
354
|
+
IS_GET_IMAGE_POS_X_MAX = 0xC007
|
|
355
|
+
IS_GET_IMAGE_POS_Y_MAX = 0xC008
|
|
356
|
+
IS_SET_IMAGE_POS_X_ABS = 0x00010000
|
|
357
|
+
IS_SET_IMAGE_POS_Y_ABS = 0x00010000
|
|
358
|
+
IS_SET_IMAGEPOS_X_ABS = 0x8000
|
|
359
|
+
IS_SET_IMAGEPOS_Y_ABS = 0x8000
|
|
360
|
+
IS_GET_ROP_EFFECT = 0x8000
|
|
361
|
+
IS_SET_ROP_NONE = 0
|
|
362
|
+
IS_SET_ROP_MIRROR_UPDOWN = 8
|
|
363
|
+
IS_SET_ROP_MIRROR_UPDOWN_ODD = 16
|
|
364
|
+
IS_SET_ROP_MIRROR_UPDOWN_EVEN = 32
|
|
365
|
+
IS_SET_ROP_MIRROR_LEFTRIGHT = 64
|
|
366
|
+
IS_GET_SUBSAMPLING = 0x8000
|
|
367
|
+
IS_GET_SUPPORTED_SUBSAMPLING = 0x8001
|
|
368
|
+
IS_GET_SUBSAMPLING_TYPE = 0x8002
|
|
369
|
+
IS_SUBSAMPLING_DISABLE = 0x00
|
|
370
|
+
IS_SUBSAMPLING_2X_VERTICAL = 0x01
|
|
371
|
+
IS_SUBSAMPLING_2X_HORIZONTAL = 0x02
|
|
372
|
+
IS_SUBSAMPLING_4X_VERTICAL = 0x04
|
|
373
|
+
IS_SUBSAMPLING_4X_HORIZONTAL = 0x08
|
|
374
|
+
IS_SUBSAMPLING_COLOR = 0x01
|
|
375
|
+
IS_SUBSAMPLING_MONO = 0x02
|
|
376
|
+
IS_SUBSAMPLING_VERT = 1
|
|
377
|
+
IS_SUBSAMPLING_HOR = 2
|
|
378
|
+
IS_GET_BINNING = 0x8000
|
|
379
|
+
IS_GET_SUPPORTED_BINNING = 0x8001
|
|
380
|
+
IS_GET_BINNING_TYPE = 0x8002
|
|
381
|
+
IS_BINNING_DISABLE = 0x00
|
|
382
|
+
IS_BINNING_2X_VERTICAL = 0x01
|
|
383
|
+
IS_BINNING_2X_HORIZONTAL = 0x02
|
|
384
|
+
IS_BINNING_4X_VERTICAL = 0x04
|
|
385
|
+
IS_BINNING_4X_HORIZONTAL = 0x08
|
|
386
|
+
IS_BINNING_COLOR = 0x01
|
|
387
|
+
IS_BINNING_MONO = 0x02
|
|
388
|
+
IS_BINNING_VERT = 1
|
|
389
|
+
IS_BINNING_HOR = 2
|
|
390
|
+
IS_SET_ENABLE_AUTO_GAIN = 0x8800
|
|
391
|
+
IS_GET_ENABLE_AUTO_GAIN = 0x8801
|
|
392
|
+
IS_SET_ENABLE_AUTO_SHUTTER = 0x8802
|
|
393
|
+
IS_GET_ENABLE_AUTO_SHUTTER = 0x8803
|
|
394
|
+
IS_SET_ENABLE_AUTO_WHITEBALANCE = 0x8804
|
|
395
|
+
IS_GET_ENABLE_AUTO_WHITEBALANCE = 0x8805
|
|
396
|
+
IS_SET_ENABLE_AUTO_FRAMERATE = 0x8806
|
|
397
|
+
IS_GET_ENABLE_AUTO_FRAMERATE = 0x8807
|
|
398
|
+
IS_SET_AUTO_REFERENCE = 0x8000
|
|
399
|
+
IS_GET_AUTO_REFERENCE = 0x8001
|
|
400
|
+
IS_SET_AUTO_GAIN_MAX = 0x8002
|
|
401
|
+
IS_GET_AUTO_GAIN_MAX = 0x8003
|
|
402
|
+
IS_SET_AUTO_SHUTTER_MAX = 0x8004
|
|
403
|
+
IS_GET_AUTO_SHUTTER_MAX = 0x8005
|
|
404
|
+
IS_SET_AUTO_SPEED = 0x8006
|
|
405
|
+
IS_GET_AUTO_SPEED = 0x8007
|
|
406
|
+
IS_SET_AUTO_WB_OFFSET = 0x8008
|
|
407
|
+
IS_GET_AUTO_WB_OFFSET = 0x8009
|
|
408
|
+
IS_SET_AUTO_WB_GAIN_RANGE = 0x800A
|
|
409
|
+
IS_GET_AUTO_WB_GAIN_RANGE = 0x800B
|
|
410
|
+
IS_SET_AUTO_WB_SPEED = 0x800C
|
|
411
|
+
IS_GET_AUTO_WB_SPEED = 0x800D
|
|
412
|
+
IS_SET_AUTO_WB_ONCE = 0x800E
|
|
413
|
+
IS_GET_AUTO_WB_ONCE = 0x800F
|
|
414
|
+
IS_SET_AUTO_BRIGHTNESS_ONCE = 0x8010
|
|
415
|
+
IS_GET_AUTO_BRIGHTNESS_ONCE = 0x8011
|
|
416
|
+
IS_MIN_AUTO_BRIGHT_REFERENCE = 0
|
|
417
|
+
IS_MAX_AUTO_BRIGHT_REFERENCE = 255
|
|
418
|
+
IS_DEFAULT_AUTO_BRIGHT_REFERENCE = 128
|
|
419
|
+
IS_MIN_AUTO_SPEED = 0
|
|
420
|
+
IS_MAX_AUTO_SPEED = 100
|
|
421
|
+
IS_DEFAULT_AUTO_SPEED = 50
|
|
422
|
+
IS_DEFAULT_AUTO_WB_OFFSET = 0
|
|
423
|
+
IS_MIN_AUTO_WB_OFFSET = -50
|
|
424
|
+
IS_MAX_AUTO_WB_OFFSET = 50
|
|
425
|
+
IS_DEFAULT_AUTO_WB_SPEED = 50
|
|
426
|
+
IS_MIN_AUTO_WB_SPEED = 0
|
|
427
|
+
IS_MAX_AUTO_WB_SPEED = 100
|
|
428
|
+
IS_MIN_AUTO_WB_REFERENCE = 0
|
|
429
|
+
IS_MAX_AUTO_WB_REFERENCE = 255
|
|
430
|
+
IS_SET_AUTO_BRIGHT_AOI = 0x8000
|
|
431
|
+
IS_GET_AUTO_BRIGHT_AOI = 0x8001
|
|
432
|
+
IS_SET_IMAGE_AOI = 0x8002
|
|
433
|
+
IS_GET_IMAGE_AOI = 0x8003
|
|
434
|
+
IS_SET_AUTO_WB_AOI = 0x8004
|
|
435
|
+
IS_GET_AUTO_WB_AOI = 0x8005
|
|
436
|
+
IS_GET_COLOR_MODE = 0x8000
|
|
437
|
+
IS_SET_CM_RGB32 = 0
|
|
438
|
+
IS_SET_CM_RGB24 = 1
|
|
439
|
+
IS_SET_CM_RGB16 = 2
|
|
440
|
+
IS_SET_CM_RGB15 = 3
|
|
441
|
+
IS_SET_CM_Y8 = 6
|
|
442
|
+
IS_SET_CM_BAYER = 11
|
|
443
|
+
IS_SET_CM_UYVY = 12
|
|
444
|
+
IS_SET_CM_UYVY_MONO = 13
|
|
445
|
+
IS_SET_CM_UYVY_BAYER = 14
|
|
446
|
+
IS_GET_BPC_MODE = 0x8000
|
|
447
|
+
IS_GET_BPC_THRESHOLD = 0x8001
|
|
448
|
+
IS_GET_BPC_SUPPORTED_MODE = 0x8002
|
|
449
|
+
IS_BPC_DISABLE = 0
|
|
450
|
+
IS_BPC_ENABLE_LEVEL_1 = 1
|
|
451
|
+
IS_BPC_ENABLE_LEVEL_2 = 2
|
|
452
|
+
IS_BPC_ENABLE_USER = 4
|
|
453
|
+
IS_BPC_ENABLE_SOFTWARE = 2
|
|
454
|
+
IS_BPC_ENABLE_HARDWARE = 1
|
|
455
|
+
IS_SET_BADPIXEL_LIST = 0x01
|
|
456
|
+
IS_GET_BADPIXEL_LIST = 0x02
|
|
457
|
+
IS_GET_LIST_SIZE = 0x03
|
|
458
|
+
IS_GET_CCOR_MODE = 0x8000
|
|
459
|
+
IS_CCOR_DISABLE = 0x0000
|
|
460
|
+
IS_CCOR_ENABLE = 0x0001
|
|
461
|
+
IS_GET_BAYER_CV_MODE = 0x8000
|
|
462
|
+
IS_SET_BAYER_CV_NORMAL = 0x0000
|
|
463
|
+
IS_SET_BAYER_CV_BETTER = 0x0001
|
|
464
|
+
IS_SET_BAYER_CV_BEST = 0x0002
|
|
465
|
+
IS_GET_EDGE_ENHANCEMENT = 0x8000
|
|
466
|
+
IS_EDGE_EN_DISABLE = 0
|
|
467
|
+
IS_EDGE_EN_STRONG = 1
|
|
468
|
+
IS_EDGE_EN_WEAK = 2
|
|
469
|
+
IS_GET_WB_MODE = 0x8000
|
|
470
|
+
IS_SET_WB_DISABLE = 0x0000
|
|
471
|
+
IS_SET_WB_USER = 0x0001
|
|
472
|
+
IS_SET_WB_AUTO_ENABLE = 0x0002
|
|
473
|
+
IS_SET_WB_AUTO_ENABLE_ONCE = 0x0004
|
|
474
|
+
IS_SET_WB_DAYLIGHT_65 = 0x0101
|
|
475
|
+
IS_SET_WB_COOL_WHITE = 0x0102
|
|
476
|
+
IS_SET_WB_U30 = 0x0103
|
|
477
|
+
IS_SET_WB_ILLUMINANT_A = 0x0104
|
|
478
|
+
IS_SET_WB_HORIZON = 0x0105
|
|
479
|
+
IS_GET_FLASHSTROBE_MODE = 0x8000
|
|
480
|
+
IS_GET_FLASHSTROBE_LINE = 0x8001
|
|
481
|
+
IS_GET_SUPPORTED_FLASH_IO_PORTS = 0x8002
|
|
482
|
+
IS_SET_FLASH_OFF = 0
|
|
483
|
+
IS_SET_FLASH_ON = 1
|
|
484
|
+
IS_SET_FLASH_LO_ACTIVE = 1
|
|
485
|
+
IS_SET_FLASH_HI_ACTIVE = 2
|
|
486
|
+
IS_SET_FLASH_HIGH = 3
|
|
487
|
+
IS_SET_FLASH_LOW = 4
|
|
488
|
+
IS_SET_FLASH_LO_ACTIVE_FREERUN = 5
|
|
489
|
+
IS_SET_FLASH_HI_ACTIVE_FREERUN = 6
|
|
490
|
+
IS_SET_FLASH_IO_1 = 0x0010
|
|
491
|
+
IS_SET_FLASH_IO_2 = 0x0020
|
|
492
|
+
IS_SET_FLASH_IO_3 = 0x0040
|
|
493
|
+
IS_SET_FLASH_IO_4 = 0x0080
|
|
494
|
+
IS_GET_FLASH_DELAY = -1
|
|
495
|
+
IS_GET_FLASH_DURATION = -2
|
|
496
|
+
IS_GET_MAX_FLASH_DELAY = -3
|
|
497
|
+
IS_GET_MAX_FLASH_DURATION = -4
|
|
498
|
+
IS_GET_MIN_FLASH_DELAY = -5
|
|
499
|
+
IS_GET_MIN_FLASH_DURATION = -6
|
|
500
|
+
IS_GET_FLASH_DELAY_GRANULARITY = -7
|
|
501
|
+
IS_GET_FLASH_DURATION_GRANULARITY = -8
|
|
502
|
+
IS_GET_IO = 0x8000
|
|
503
|
+
IS_GET_IO_MASK = 0x8000
|
|
504
|
+
IS_EEPROM_MIN_USER_ADDRESS = 0
|
|
505
|
+
IS_EEPROM_MAX_USER_ADDRESS = 63
|
|
506
|
+
IS_EEPROM_MAX_USER_SPACE = 64
|
|
507
|
+
IS_GET_ERR_REP_MODE = 0x8000
|
|
508
|
+
IS_ENABLE_ERR_REP = 1
|
|
509
|
+
IS_DISABLE_ERR_REP = 0
|
|
510
|
+
IS_GET_DISPLAY_MODE = 0x8000
|
|
511
|
+
IS_GET_DISPLAY_SIZE_X = 0x8000
|
|
512
|
+
IS_GET_DISPLAY_SIZE_Y = 0x8001
|
|
513
|
+
IS_GET_DISPLAY_POS_X = 0x8000
|
|
514
|
+
IS_GET_DISPLAY_POS_Y = 0x8001
|
|
515
|
+
IS_SET_DM_DIB = 1
|
|
516
|
+
IS_SET_DM_DIRECTDRAW = 2
|
|
517
|
+
IS_GET_DD_OVERLAY_SCALE = 0x8000
|
|
518
|
+
IS_SET_DM_ALLOW_OVERLAY = 0x100
|
|
519
|
+
IS_SET_DM_ALLOW_SCALING = 0x200
|
|
520
|
+
IS_SET_DM_MONO = 0x800
|
|
521
|
+
IS_SET_DM_BAYER = 0x1000
|
|
522
|
+
IS_SET_DM_BACKBUFFER = 0x2000
|
|
523
|
+
IS_GET_KC_RED = 0x8000
|
|
524
|
+
IS_GET_KC_GREEN = 0x8001
|
|
525
|
+
IS_GET_KC_BLUE = 0x8002
|
|
526
|
+
IS_GET_KC_RGB = 0x8003
|
|
527
|
+
IS_GET_KC_INDEX = 0x8004
|
|
528
|
+
IS_GET_KEYOFFSET_X = 0x8000
|
|
529
|
+
IS_GET_KEYOFFSET_Y = 0x8001
|
|
530
|
+
IS_SET_KC_DEFAULT = 0xFF00FF
|
|
531
|
+
IS_SET_KC_DEFAULT_8 = 253
|
|
532
|
+
IS_MEMORY_GET_COUNT = 0x8000
|
|
533
|
+
IS_MEMORY_GET_DELAY = 0x8001
|
|
534
|
+
IS_MEMORY_MODE_DISABLE = 0x0000
|
|
535
|
+
IS_MEMORY_USE_TRIGGER = 0xFFFF
|
|
536
|
+
IS_GET_TEST_IMAGE = 0x8000
|
|
537
|
+
IS_SET_TEST_IMAGE_DISABLED = 0x0000
|
|
538
|
+
IS_SET_TEST_IMAGE_MEMORY_1 = 0x0001
|
|
539
|
+
IS_SET_TEST_IMAGE_MEMORY_2 = 0x0002
|
|
540
|
+
IS_SET_TEST_IMAGE_MEMORY_3 = 0x0003
|
|
541
|
+
IS_SET_LED_OFF = 0
|
|
542
|
+
IS_SET_LED_ON = 1
|
|
543
|
+
IS_SET_LED_TOGGLE = 2
|
|
544
|
+
IS_GET_LED = 0x8000
|
|
545
|
+
IS_SAVE_USE_ACTUAL_IMAGE_SIZE = 0x00010000
|
|
546
|
+
IS_SET_EVENT_FRAME = 2
|
|
547
|
+
IS_SET_EVENT_EXTTRIG = 3
|
|
548
|
+
IS_SET_EVENT_SEQ = 5
|
|
549
|
+
IS_SET_EVENT_STEAL = 6
|
|
550
|
+
IS_SET_EVENT_TRANSFER_FAILED = 8
|
|
551
|
+
IS_SET_EVENT_DEVICE_RECONNECTED = 9
|
|
552
|
+
IS_SET_EVENT_MEMORY_MODE_FINISH = 10
|
|
553
|
+
IS_SET_EVENT_FRAME_RECEIVED = 11
|
|
554
|
+
IS_SET_EVENT_WB_FINISHED = 12
|
|
555
|
+
IS_SET_EVENT_AUTOBRIGHTNESS_FINISHED = 13
|
|
556
|
+
IS_SET_EVENT_REMOVE = 128
|
|
557
|
+
IS_SET_EVENT_REMOVAL = 129
|
|
558
|
+
IS_SET_EVENT_NEW_DEVICE = 130
|
|
559
|
+
IS_GET_CAMERA_ID = 0x8000
|
|
560
|
+
IS_GET_STATUS = 0x8000
|
|
561
|
+
IS_EXT_TRIGGER_EVENT_CNT = 0
|
|
562
|
+
IS_FIFO_OVR_CNT = 1
|
|
563
|
+
IS_SEQUENCE_CNT = 2
|
|
564
|
+
IS_LAST_FRAME_FIFO_OVR = 3
|
|
565
|
+
IS_SEQUENCE_SIZE = 4
|
|
566
|
+
IS_STEAL_FINISHED = 6
|
|
567
|
+
IS_BOARD_REVISION = 9
|
|
568
|
+
IS_MIRROR_BITMAP_UPDOWN = 10
|
|
569
|
+
IS_BUS_OVR_CNT = 11
|
|
570
|
+
IS_STEAL_ERROR_CNT = 12
|
|
571
|
+
IS_LOW_COLOR_REMOVAL = 13
|
|
572
|
+
IS_WAIT_TIMEOUT = 19
|
|
573
|
+
IS_TRIGGER_MISSED = 20
|
|
574
|
+
IS_LAST_CAPTURE_ERROR = 21
|
|
575
|
+
IS_BOARD_TYPE_UC480_USB = 0x40
|
|
576
|
+
IS_OS_UNDETERMINED = 0
|
|
577
|
+
IS_OS_WIN95 = 1
|
|
578
|
+
IS_OS_WINNT40 = 2
|
|
579
|
+
IS_OS_WIN98 = 3
|
|
580
|
+
IS_OS_WIN2000 = 4
|
|
581
|
+
IS_OS_WINXP = 5
|
|
582
|
+
IS_OS_WINME = 6
|
|
583
|
+
IS_OS_WINNET = 7
|
|
584
|
+
IS_OS_WINSERVER2003 = 8
|
|
585
|
+
IS_OS_WINVISTA = 9
|
|
586
|
+
IS_USB_10 = 1
|
|
587
|
+
IS_USB_11 = 2
|
|
588
|
+
IS_USB_20 = 4
|
|
589
|
+
IS_LOCK_LAST_BUFFER = 0x8002
|
|
590
|
+
IS_IMG_BMP = 0
|
|
591
|
+
IS_IMG_JPG = 1
|
|
592
|
+
IS_IMG_PNG = 2
|
|
593
|
+
IS_IMG_RAW = 4
|
|
594
|
+
IS_INIT_STEAL_VIDEO = 1
|
|
595
|
+
IS_EXIT_STEAL_VIDEO = 2
|
|
596
|
+
IS_INIT_STEAL_VIDEO_MANUAL = 3
|
|
597
|
+
IS_INIT_STEAL_VIDEO_AUTO = 4
|
|
598
|
+
IS_SET_STEAL_RATIO = 64
|
|
599
|
+
IS_USE_MEM_IMAGE_SIZE = 128
|
|
600
|
+
IS_STEAL_MODES_MASK = 7
|
|
601
|
+
IS_SET_STEAL_COPY = 0x1000
|
|
602
|
+
IS_SET_STEAL_NORMAL = 0x2000
|
|
603
|
+
IS_GET_AGC_MODE = 0x8000
|
|
604
|
+
IS_SET_AGC_OFF = 0
|
|
605
|
+
IS_SET_AGC_ON = 1
|
|
606
|
+
IS_GET_GAMMA_MODE = 0x8000
|
|
607
|
+
IS_SET_GAMMA_OFF = 0
|
|
608
|
+
IS_SET_GAMMA_ON = 1
|
|
609
|
+
#BOARDINFO = CAMINFO
|
|
610
|
+
#PBOARDINFO = PCAMINFO
|
|
611
|
+
AC_SHUTTER = 0x00000001
|
|
612
|
+
AC_GAIN = 0x00000002
|
|
613
|
+
AC_WHITEBAL = 0x00000004
|
|
614
|
+
AC_WB_RED_CHANNEL = 0x00000008
|
|
615
|
+
AC_WB_GREEN_CHANNEL = 0x00000010
|
|
616
|
+
AC_WB_BLUE_CHANNEL = 0x00000020
|
|
617
|
+
AC_FRAMERATE = 0x00000040
|
|
618
|
+
ACS_ADJUSTING = 0x00000001
|
|
619
|
+
ACS_FINISHED = 0x00000002
|
|
620
|
+
ACS_DISABLED = 0x00000004
|
|
621
|
+
error_map = {}
|
|
622
|
+
|
|
623
|
+
|
|
624
|
+
IS_AOI_IMAGE_SET_AOI = 0x0001
|
|
625
|
+
IS_AOI_IMAGE_GET_AOI = 0x0002
|
|
626
|
+
IS_AOI_IMAGE_SET_POS = 0x0003
|
|
627
|
+
IS_AOI_IMAGE_GET_POS = 0x0004
|
|
628
|
+
IS_AOI_IMAGE_SET_SIZE = 0x0005
|
|
629
|
+
IS_AOI_IMAGE_GET_SIZE = 0x0006
|
|
630
|
+
IS_AOI_IMAGE_GET_POS_MIN = 0x0007
|
|
631
|
+
IS_AOI_IMAGE_GET_SIZE_MIN = 0x0008
|
|
632
|
+
IS_AOI_IMAGE_GET_POS_MAX = 0x0009
|
|
633
|
+
IS_AOI_IMAGE_GET_SIZE_MAX = 0x0010
|
|
634
|
+
IS_AOI_IMAGE_GET_POS_INC = 0x0011
|
|
635
|
+
IS_AOI_IMAGE_GET_SIZE_INC = 0x0012
|
|
636
|
+
IS_AOI_IMAGE_GET_POS_X_ABS = 0x0013
|
|
637
|
+
IS_AOI_IMAGE_GET_POS_Y_ABS = 0x0014
|
|
638
|
+
IS_AOI_IMAGE_GET_ORIGINAL_AOI = 0x0015
|
|
639
|
+
|
|
640
|
+
IS_AOI_IMAGE_POS_ABSOLUTE = 0x10000000
|
|
641
|
+
|
|
642
|
+
IS_AOI_IMAGE_SET_POS_FAST = 0x0020
|
|
643
|
+
IS_AOI_IMAGE_SET_POS_FAST_SUPPORTED = 0x0021
|
|
644
|
+
|
|
645
|
+
IS_AOI_AUTO_BRIGHTNESS_SET_AOI = 0x0030
|
|
646
|
+
IS_AOI_AUTO_BRIGHTNESS_GET_AOI = 0x0031
|
|
647
|
+
IS_AOI_AUTO_WHITEBALANCE_SET_AOI = 0x0032
|
|
648
|
+
IS_AOI_AUTO_WHITEBALANCE_GET_AOI = 0x0033
|
|
649
|
+
|
|
650
|
+
IS_AOI_MULTI_GET_SUPPORTED_MODES = 0x0100
|
|
651
|
+
IS_AOI_MULTI_SET_AOI = 0x0200
|
|
652
|
+
IS_AOI_MULTI_GET_AOI = 0x0400
|
|
653
|
+
IS_AOI_MULTI_DISABLE_AOI = 0x0800
|
|
654
|
+
IS_AOI_MULTI_MODE_AXES = 0x0001
|
|
655
|
+
|
|
656
|
+
|
|
657
|
+
IS_DEVICE_FEATURE_CMD_GET_SUPPORTED_FEATURES = 1
|
|
658
|
+
IS_DEVICE_FEATURE_CMD_SET_LINESCAN_MODE = 2
|
|
659
|
+
IS_DEVICE_FEATURE_CMD_GET_LINESCAN_MODE = 3
|
|
660
|
+
IS_DEVICE_FEATURE_CMD_SET_LINESCAN_NUMBER = 4
|
|
661
|
+
IS_DEVICE_FEATURE_CMD_GET_LINESCAN_NUMBER = 5
|
|
662
|
+
IS_DEVICE_FEATURE_CMD_SET_SHUTTER_MODE = 6
|
|
663
|
+
IS_DEVICE_FEATURE_CMD_GET_SHUTTER_MODE = 7
|
|
664
|
+
IS_DEVICE_FEATURE_CMD_SET_PREFER_XS_HS_MODE = 8
|
|
665
|
+
IS_DEVICE_FEATURE_CMD_GET_PREFER_XS_HS_MODE = 9
|
|
666
|
+
IS_DEVICE_FEATURE_CMD_GET_DEFAULT_PREFER_XS_HS_MODE = 10
|
|
667
|
+
IS_DEVICE_FEATURE_CMD_GET_LOG_MODE_DEFAULT = 11
|
|
668
|
+
IS_DEVICE_FEATURE_CMD_GET_LOG_MODE = 12
|
|
669
|
+
IS_DEVICE_FEATURE_CMD_SET_LOG_MODE = 13
|
|
670
|
+
IS_DEVICE_FEATURE_CMD_GET_LOG_MODE_MANUAL_VALUE_DEFAULT = 14
|
|
671
|
+
IS_DEVICE_FEATURE_CMD_GET_LOG_MODE_MANUAL_VALUE_RANGE = 15
|
|
672
|
+
IS_DEVICE_FEATURE_CMD_GET_LOG_MODE_MANUAL_VALUE = 16
|
|
673
|
+
IS_DEVICE_FEATURE_CMD_SET_LOG_MODE_MANUAL_VALUE = 17
|
|
674
|
+
IS_DEVICE_FEATURE_CMD_GET_LOG_MODE_MANUAL_GAIN_DEFAULT = 18
|
|
675
|
+
IS_DEVICE_FEATURE_CMD_GET_LOG_MODE_MANUAL_GAIN_RANGE = 19
|
|
676
|
+
IS_DEVICE_FEATURE_CMD_GET_LOG_MODE_MANUAL_GAIN = 20
|
|
677
|
+
IS_DEVICE_FEATURE_CMD_SET_LOG_MODE_MANUAL_GAIN = 21
|
|
678
|
+
IS_DEVICE_FEATURE_CMD_GET_VERTICAL_AOI_MERGE_MODE_DEFAULT = 22
|
|
679
|
+
IS_DEVICE_FEATURE_CMD_GET_VERTICAL_AOI_MERGE_MODE = 23
|
|
680
|
+
IS_DEVICE_FEATURE_CMD_SET_VERTICAL_AOI_MERGE_MODE = 24
|
|
681
|
+
IS_DEVICE_FEATURE_CMD_GET_VERTICAL_AOI_MERGE_POSITION_DEFAULT = 25
|
|
682
|
+
IS_DEVICE_FEATURE_CMD_GET_VERTICAL_AOI_MERGE_POSITION_RANGE = 26
|
|
683
|
+
IS_DEVICE_FEATURE_CMD_GET_VERTICAL_AOI_MERGE_POSITION = 27
|
|
684
|
+
IS_DEVICE_FEATURE_CMD_SET_VERTICAL_AOI_MERGE_POSITION = 28
|
|
685
|
+
IS_DEVICE_FEATURE_CMD_GET_FPN_CORRECTION_MODE_DEFAULT = 29
|
|
686
|
+
IS_DEVICE_FEATURE_CMD_GET_FPN_CORRECTION_MODE = 30
|
|
687
|
+
IS_DEVICE_FEATURE_CMD_SET_FPN_CORRECTION_MODE = 31
|
|
688
|
+
IS_DEVICE_FEATURE_CMD_GET_SENSOR_SOURCE_GAIN_RANGE = 32
|
|
689
|
+
IS_DEVICE_FEATURE_CMD_GET_SENSOR_SOURCE_GAIN_DEFAULT = 33
|
|
690
|
+
IS_DEVICE_FEATURE_CMD_GET_SENSOR_SOURCE_GAIN = 34
|
|
691
|
+
IS_DEVICE_FEATURE_CMD_SET_SENSOR_SOURCE_GAIN = 35
|
|
692
|
+
IS_DEVICE_FEATURE_CMD_GET_BLACK_REFERENCE_MODE_DEFAULT = 36
|
|
693
|
+
IS_DEVICE_FEATURE_CMD_GET_BLACK_REFERENCE_MODE = 37
|
|
694
|
+
IS_DEVICE_FEATURE_CMD_SET_BLACK_REFERENCE_MODE = 38
|
|
695
|
+
IS_DEVICE_FEATURE_CMD_GET_ALLOW_RAW_WITH_LUT = 39
|
|
696
|
+
IS_DEVICE_FEATURE_CMD_SET_ALLOW_RAW_WITH_LUT = 40
|
|
697
|
+
IS_DEVICE_FEATURE_CMD_GET_SUPPORTED_SENSOR_BIT_DEPTHS = 41
|
|
698
|
+
IS_DEVICE_FEATURE_CMD_GET_SENSOR_BIT_DEPTH_DEFAULT = 42
|
|
699
|
+
IS_DEVICE_FEATURE_CMD_GET_SENSOR_BIT_DEPTH = 43
|
|
700
|
+
IS_DEVICE_FEATURE_CMD_SET_SENSOR_BIT_DEPTH = 44
|
|
701
|
+
IS_DEVICE_FEATURE_CMD_GET_TEMPERATURE = 45
|
|
702
|
+
IS_DEVICE_FEATURE_CMD_GET_JPEG_COMPRESSION = 46
|
|
703
|
+
IS_DEVICE_FEATURE_CMD_SET_JPEG_COMPRESSION = 47
|
|
704
|
+
IS_DEVICE_FEATURE_CMD_GET_JPEG_COMPRESSION_DEFAULT = 48
|
|
705
|
+
IS_DEVICE_FEATURE_CMD_GET_JPEG_COMPRESSION_RANGE = 49
|
|
706
|
+
IS_DEVICE_FEATURE_CMD_GET_NOISE_REDUCTION_MODE = 50
|
|
707
|
+
IS_DEVICE_FEATURE_CMD_SET_NOISE_REDUCTION_MODE = 51
|
|
708
|
+
IS_DEVICE_FEATURE_CMD_GET_NOISE_REDUCTION_MODE_DEFAULT = 52
|
|
709
|
+
IS_DEVICE_FEATURE_CMD_GET_TIMESTAMP_CONFIGURATION = 53
|
|
710
|
+
IS_DEVICE_FEATURE_CMD_SET_TIMESTAMP_CONFIGURATION = 54
|
|
711
|
+
IS_DEVICE_FEATURE_CMD_GET_VERTICAL_AOI_MERGE_HEIGHT_DEFAULT = 55
|
|
712
|
+
IS_DEVICE_FEATURE_CMD_GET_VERTICAL_AOI_MERGE_HEIGHT_NUMBER = 56
|
|
713
|
+
IS_DEVICE_FEATURE_CMD_GET_VERTICAL_AOI_MERGE_HEIGHT_LIST = 57
|
|
714
|
+
IS_DEVICE_FEATURE_CMD_GET_VERTICAL_AOI_MERGE_HEIGHT = 58
|
|
715
|
+
IS_DEVICE_FEATURE_CMD_SET_VERTICAL_AOI_MERGE_HEIGHT = 59
|
|
716
|
+
IS_DEVICE_FEATURE_CMD_GET_VERTICAL_AOI_MERGE_ADDITIONAL_POSITION_DEFAULT = 60
|
|
717
|
+
IS_DEVICE_FEATURE_CMD_GET_VERTICAL_AOI_MERGE_ADDITIONAL_POSITION_RANGE = 61
|
|
718
|
+
IS_DEVICE_FEATURE_CMD_GET_VERTICAL_AOI_MERGE_ADDITIONAL_POSITION = 62
|
|
719
|
+
IS_DEVICE_FEATURE_CMD_SET_VERTICAL_AOI_MERGE_ADDITIONAL_POSITION = 63
|
|
720
|
+
IS_DEVICE_FEATURE_CMD_GET_SENSOR_TEMPERATURE_NUMERICAL_VALUE = 64
|
|
721
|
+
IS_DEVICE_FEATURE_CMD_SET_IMAGE_EFFECT = 65
|
|
722
|
+
IS_DEVICE_FEATURE_CMD_GET_IMAGE_EFFECT = 66
|
|
723
|
+
IS_DEVICE_FEATURE_CMD_GET_IMAGE_EFFECT_DEFAULT = 67
|
|
724
|
+
IS_DEVICE_FEATURE_CMD_GET_EXTENDED_PIXELCLOCK_RANGE_ENABLE_DEFAULT = 68
|
|
725
|
+
IS_DEVICE_FEATURE_CMD_GET_EXTENDED_PIXELCLOCK_RANGE_ENABLE = 69
|
|
726
|
+
IS_DEVICE_FEATURE_CMD_SET_EXTENDED_PIXELCLOCK_RANGE_ENABLE = 70
|
|
727
|
+
IS_DEVICE_FEATURE_CMD_MULTI_INTEGRATION_GET_SCOPE = 71
|
|
728
|
+
IS_DEVICE_FEATURE_CMD_MULTI_INTEGRATION_GET_PARAMS = 72
|
|
729
|
+
IS_DEVICE_FEATURE_CMD_MULTI_INTEGRATION_SET_PARAMS = 73
|
|
730
|
+
IS_DEVICE_FEATURE_CMD_MULTI_INTEGRATION_GET_MODE_DEFAULT = 74
|
|
731
|
+
IS_DEVICE_FEATURE_CMD_MULTI_INTEGRATION_GET_MODE = 75
|
|
732
|
+
IS_DEVICE_FEATURE_CMD_MULTI_INTEGRATION_SET_MODE = 76
|
|
733
|
+
IS_DEVICE_FEATURE_CMD_SET_I2C_TARGET = 77
|
|
734
|
+
IS_DEVICE_FEATURE_CMD_SET_WIDE_DYNAMIC_RANGE_MODE = 78
|
|
735
|
+
IS_DEVICE_FEATURE_CMD_GET_WIDE_DYNAMIC_RANGE_MODE = 79
|
|
736
|
+
IS_DEVICE_FEATURE_CMD_GET_WIDE_DYNAMIC_RANGE_MODE_DEFAULT = 80
|
|
737
|
+
IS_DEVICE_FEATURE_CMD_GET_SUPPORTED_BLACK_REFERENCE_MODES = 81
|
|
738
|
+
IS_DEVICE_FEATURE_CMD_SET_LEVEL_CONTROLLED_TRIGGER_INPUT_MODE = 82
|
|
739
|
+
IS_DEVICE_FEATURE_CMD_GET_LEVEL_CONTROLLED_TRIGGER_INPUT_MODE = 83
|
|
740
|
+
IS_DEVICE_FEATURE_CMD_GET_LEVEL_CONTROLLED_TRIGGER_INPUT_MODE_DEFAULT = 84
|
|
741
|
+
IS_DEVICE_FEATURE_CMD_GET_VERTICAL_AOI_MERGE_MODE_SUPPORTED_LINE_MODES = 85
|
|
742
|
+
IS_DEVICE_FEATURE_CMD_SET_REPEATED_START_CONDITION_I2C = 86
|
|
743
|
+
IS_DEVICE_FEATURE_CMD_GET_REPEATED_START_CONDITION_I2C = 87
|
|
744
|
+
IS_DEVICE_FEATURE_CMD_GET_REPEATED_START_CONDITION_I2C_DEFAULT = 88
|
|
745
|
+
IS_DEVICE_FEATURE_CMD_GET_TEMPERATURE_STATUS = 89
|
|
746
|
+
IS_DEVICE_FEATURE_CMD_GET_MEMORY_MODE_ENABLE = 90
|
|
747
|
+
IS_DEVICE_FEATURE_CMD_SET_MEMORY_MODE_ENABLE = 91
|
|
748
|
+
IS_DEVICE_FEATURE_CMD_GET_MEMORY_MODE_ENABLE_DEFAULT = 92
|
|
749
|
+
IS_DEVICE_FEATURE_CMD_93 = 93
|
|
750
|
+
IS_DEVICE_FEATURE_CMD_94 = 94
|
|
751
|
+
IS_DEVICE_FEATURE_CMD_95 = 95
|
|
752
|
+
IS_DEVICE_FEATURE_CMD_96 = 96
|
|
753
|
+
|
|
754
|
+
IS_SENSOR_BIT_DEPTH_AUTO = 0x00000000
|
|
755
|
+
IS_SENSOR_BIT_DEPTH_8_BIT = 0x00000001
|
|
756
|
+
IS_SENSOR_BIT_DEPTH_10_BIT = 0x00000002
|
|
757
|
+
IS_SENSOR_BIT_DEPTH_12_BIT = 0x00000004
|
|
758
|
+
|
|
759
|
+
# a subset of colormodes
|
|
760
|
+
IS_CM_SENSOR_RAW8 = 11
|
|
761
|
+
IS_CM_SENSOR_RAW10 = 33
|
|
762
|
+
IS_CM_SENSOR_RAW12 = 27
|
|
763
|
+
IS_CM_SENSOR_RAW16 = 29
|
|
764
|
+
IS_CM_MONO8 = 6
|
|
765
|
+
IS_CM_MONO10 = 34
|
|
766
|
+
IS_CM_MONO12 = 26
|
|
767
|
+
IS_CM_MONO16 = 28
|